blob: 6eb49c2b5d7c756e0358105f773da489088aa165 [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));
1236 u_int8_t *r;
1237
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
1244 /* 16 bytes RAND parameters */
1245 r = msgb_put(msg, 16);
1246 if (rand)
1247 memcpy(r, rand, 16);
1248
1249 return gsm48_sendmsg(msg, NULL);
1250}
1251
1252/* Section 9.2.1 */
1253int gsm48_tx_mm_auth_rej(struct gsm_lchan *lchan)
1254{
1255 DEBUGP(DMM, "-> AUTH REJECT\n");
1256 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
1257}
1258
Harald Welte4b634542008-12-27 01:55:51 +00001259static int gsm48_tx_mm_serv_ack(struct gsm_lchan *lchan)
1260{
Harald Welte4b634542008-12-27 01:55:51 +00001261 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Harald Welte65e74cc2008-12-29 01:55:35 +00001262 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +00001263}
Harald Welteba4cf162009-01-10 01:49:35 +00001264
1265/* 9.2.6 CM service reject */
1266static int gsm48_tx_mm_serv_rej(struct gsm_lchan *lchan,
1267 enum gsm48_reject_value value)
1268{
1269 struct msgb *msg = gsm48_msgb_alloc();
1270 struct gsm48_hdr *gh;
1271
1272 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
1273
1274 msg->lchan = lchan;
1275 use_lchan(lchan);
1276
1277 gh->proto_discr = GSM48_PDISC_MM;
1278 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
1279 gh->data[0] = value;
1280 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
1281
Harald Welte39e2ead2009-07-23 21:13:03 +02001282 return gsm48_sendmsg(msg, NULL);
Harald Welteba4cf162009-01-10 01:49:35 +00001283}
1284
Harald Welte3ac7f102009-08-10 10:12:45 +02001285static int send_siemens_mrpci(struct gsm_lchan *lchan,
1286 u_int8_t *classmark2_lv)
1287{
1288 struct rsl_mrpci mrpci;
1289
1290 if (classmark2_lv[0] < 2)
1291 return -EINVAL;
1292
1293 mrpci.power_class = classmark2_lv[1] & 0x7;
1294 mrpci.vgcs_capable = classmark2_lv[2] & (1 << 1);
1295 mrpci.vbs_capable = classmark2_lv[2] & (1 <<2);
1296 mrpci.gsm_phase = (classmark2_lv[1]) >> 5 & 0x3;
1297
1298 return rsl_siemens_mrpci(lchan, &mrpci);
1299}
Harald Welte4ed0e922009-01-10 03:17:30 +00001300
1301/*
1302 * Handle CM Service Requests
1303 * a) Verify that the packet is long enough to contain the information
1304 * we require otherwsie reject with INCORRECT_MESSAGE
1305 * b) Try to parse the TMSI. If we do not have one reject
1306 * c) Check that we know the subscriber with the TMSI otherwise reject
1307 * with a HLR cause
1308 * d) Set the subscriber on the gsm_lchan and accept
1309 */
Harald Welte4b634542008-12-27 01:55:51 +00001310static int gsm48_rx_mm_serv_req(struct msgb *msg)
1311{
Harald Welteba4cf162009-01-10 01:49:35 +00001312 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001313 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +00001314
Harald Welte9176bd42009-07-23 18:46:00 +02001315 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welteba4cf162009-01-10 01:49:35 +00001316 struct gsm_subscriber *subscr;
1317 struct gsm48_hdr *gh = msgb_l3(msg);
1318 struct gsm48_service_request *req =
1319 (struct gsm48_service_request *)gh->data;
Harald Weltec9e02182009-05-01 19:07:53 +00001320 /* unfortunately in Phase1 the classmar2 length is variable */
1321 u_int8_t classmark2_len = gh->data[1];
1322 u_int8_t *classmark2 = gh->data+2;
1323 u_int8_t mi_len = *(classmark2 + classmark2_len);
1324 u_int8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welteba4cf162009-01-10 01:49:35 +00001325
Harald Weltec9e02182009-05-01 19:07:53 +00001326 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +00001327 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +00001328 DEBUGPC(DMM, "wrong sized message\n");
Harald Welteba4cf162009-01-10 01:49:35 +00001329 return gsm48_tx_mm_serv_rej(msg->lchan,
1330 GSM48_REJECT_INCORRECT_MESSAGE);
1331 }
1332
1333 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +00001334 DEBUGPC(DMM, "does not fit in packet\n");
Harald Welteba4cf162009-01-10 01:49:35 +00001335 return gsm48_tx_mm_serv_rej(msg->lchan,
1336 GSM48_REJECT_INCORRECT_MESSAGE);
1337 }
1338
Harald Weltec9e02182009-05-01 19:07:53 +00001339 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welteba4cf162009-01-10 01:49:35 +00001340 if (mi_type != GSM_MI_TYPE_TMSI) {
Harald Weltec9e02182009-05-01 19:07:53 +00001341 DEBUGPC(DMM, "mi_type is not TMSI: %d\n", mi_type);
Harald Welteba4cf162009-01-10 01:49:35 +00001342 return gsm48_tx_mm_serv_rej(msg->lchan,
1343 GSM48_REJECT_INCORRECT_MESSAGE);
1344 }
1345
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001346 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +00001347 DEBUGPC(DMM, "serv_type=0x%02x mi_type=0x%02x M(%s)\n",
Harald Welte4ed0e922009-01-10 03:17:30 +00001348 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +00001349
Harald Welte3ac7f102009-08-10 10:12:45 +02001350 if (is_siemens_bts(bts))
1351 send_siemens_mrpci(msg->lchan, classmark2-1);
1352
Harald Welte9176bd42009-07-23 18:46:00 +02001353 subscr = subscr_get_by_tmsi(bts->network, mi_string);
Holger Freythereb443982009-06-04 13:58:42 +00001354
Harald Welte2a139372009-02-22 21:14:55 +00001355 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +00001356 if (!subscr)
1357 return gsm48_tx_mm_serv_rej(msg->lchan,
1358 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
1359
1360 if (!msg->lchan->subscr)
1361 msg->lchan->subscr = subscr;
Harald Welte9bb7c702009-01-10 03:21:41 +00001362 else if (msg->lchan->subscr != subscr) {
1363 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
1364 subscr_put(subscr);
1365 }
1366
Harald Weltec2e302d2009-07-05 14:08:13 +02001367 subscr->equipment.classmark2_len = classmark2_len;
1368 memcpy(subscr->equipment.classmark2, classmark2, classmark2_len);
1369 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001370
Harald Welte4b634542008-12-27 01:55:51 +00001371 return gsm48_tx_mm_serv_ack(msg->lchan);
1372}
1373
Harald Welte2a139372009-02-22 21:14:55 +00001374static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
1375{
Harald Welte9176bd42009-07-23 18:46:00 +02001376 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2a139372009-02-22 21:14:55 +00001377 struct gsm48_hdr *gh = msgb_l3(msg);
1378 struct gsm48_imsi_detach_ind *idi =
1379 (struct gsm48_imsi_detach_ind *) gh->data;
1380 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001381 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001382 struct gsm_subscriber *subscr = NULL;
Harald Welte2a139372009-02-22 21:14:55 +00001383
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001384 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2a139372009-02-22 21:14:55 +00001385 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
1386 mi_type, mi_string);
1387
1388 switch (mi_type) {
1389 case GSM_MI_TYPE_TMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001390 subscr = subscr_get_by_tmsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +00001391 break;
1392 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001393 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +00001394 break;
1395 case GSM_MI_TYPE_IMEI:
1396 case GSM_MI_TYPE_IMEISV:
1397 /* no sim card... FIXME: what to do ? */
Holger Freyther79f4ae62009-06-02 03:25:04 +00001398 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001399 break;
1400 default:
Holger Freyther79f4ae62009-06-02 03:25:04 +00001401 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001402 break;
1403 }
1404
Holger Freyther4a49e772009-04-12 05:37:29 +00001405 if (subscr) {
1406 subscr_update(subscr, msg->trx->bts,
1407 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2a139372009-02-22 21:14:55 +00001408 DEBUGP(DMM, "Subscriber: %s\n",
1409 subscr->name ? subscr->name : subscr->imsi);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001410
1411 subscr->equipment.classmark1 = idi->classmark1;
1412 db_sync_equipment(&subscr->equipment);
1413
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001414 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +00001415 } else
Harald Welte2a139372009-02-22 21:14:55 +00001416 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
1417
Harald Welte2a139372009-02-22 21:14:55 +00001418 return 0;
1419}
1420
Harald Welted2a7f5a2009-06-05 20:08:20 +00001421static int gsm48_rx_mm_status(struct msgb *msg)
1422{
1423 struct gsm48_hdr *gh = msgb_l3(msg);
1424
1425 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
1426
1427 return 0;
1428}
1429
Harald Weltebf5e8df2009-02-03 12:59:45 +00001430/* Receive a GSM 04.08 Mobility Management (MM) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001431static int gsm0408_rcv_mm(struct msgb *msg)
1432{
1433 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001434 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001435
1436 switch (gh->msg_type & 0xbf) {
1437 case GSM48_MT_MM_LOC_UPD_REQUEST:
Harald Weltea0368542009-06-27 02:58:43 +02001438 DEBUGP(DMM, "LOCATION UPDATING REQUEST: ");
Harald Welte231ad4f2008-12-27 11:15:38 +00001439 rc = mm_rx_loc_upd_req(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001440 break;
1441 case GSM48_MT_MM_ID_RESP:
Harald Welte231ad4f2008-12-27 11:15:38 +00001442 rc = mm_rx_id_resp(msg);
1443 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001444 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte4b634542008-12-27 01:55:51 +00001445 rc = gsm48_rx_mm_serv_req(msg);
1446 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001447 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001448 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001449 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001450 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +00001451 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
1452 msg->lchan->subscr ?
1453 msg->lchan->subscr->imsi :
1454 "unknown subscriber");
1455 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001456 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +00001457 rc = gsm48_rx_mm_imsi_detach_ind(msg);
1458 break;
1459 case GSM48_MT_MM_CM_REEST_REQ:
1460 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
1461 break;
1462 case GSM48_MT_MM_AUTH_RESP:
1463 DEBUGP(DMM, "AUTHENTICATION RESPONSE: Not implemented\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001464 break;
1465 default:
1466 fprintf(stderr, "Unknown GSM 04.08 MM msg type 0x%02x\n",
1467 gh->msg_type);
1468 break;
1469 }
1470
1471 return rc;
1472}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001473
Harald Welte2d35ae62009-02-06 12:02:13 +00001474/* Receive a PAGING RESPONSE message from the MS */
1475static int gsm48_rr_rx_pag_resp(struct msgb *msg)
1476{
Harald Welte9176bd42009-07-23 18:46:00 +02001477 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2d35ae62009-02-06 12:02:13 +00001478 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte61548982009-02-22 21:26:29 +00001479 u_int8_t *classmark2_lv = gh->data + 1;
1480 u_int8_t *mi_lv = gh->data + 2 + *classmark2_lv;
1481 u_int8_t mi_type = mi_lv[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001482 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001483 struct gsm_subscriber *subscr = NULL;
Harald Welte595ad7b2009-02-16 22:05:44 +00001484 struct paging_signal_data sig_data;
Harald Welte2d35ae62009-02-06 12:02:13 +00001485 int rc = 0;
1486
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001487 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi_lv+1, *mi_lv);
Harald Welte2d35ae62009-02-06 12:02:13 +00001488 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
1489 mi_type, mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001490
1491 if (is_siemens_bts(bts))
1492 send_siemens_mrpci(msg->lchan, classmark2_lv);
1493
Harald Weltefe18d8f2009-02-22 21:14:24 +00001494 switch (mi_type) {
1495 case GSM_MI_TYPE_TMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001496 subscr = subscr_get_by_tmsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001497 break;
1498 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001499 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001500 break;
1501 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001502
1503 if (!subscr) {
1504 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001505 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +00001506 return -EINVAL;
1507 }
1508 DEBUGP(DRR, "<- Channel was requested by %s\n",
Harald Welte76042182009-08-08 16:03:15 +02001509 subscr->name && strlen(subscr->name) ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +00001510
Harald Weltec2e302d2009-07-05 14:08:13 +02001511 subscr->equipment.classmark2_len = *classmark2_lv;
1512 memcpy(subscr->equipment.classmark2, classmark2_lv+1, *classmark2_lv);
1513 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001514
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001515 if (!msg->lchan->subscr) {
Holger Freyther2fa4cb52009-02-14 23:53:15 +00001516 msg->lchan->subscr = subscr;
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001517 } else if (msg->lchan->subscr != subscr) {
Holger Freyther2fa4cb52009-02-14 23:53:15 +00001518 DEBUGP(DRR, "<- Channel already owned by someone else?\n");
1519 subscr_put(subscr);
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001520 return -EINVAL;
1521 } else {
1522 DEBUGP(DRR, "<- Channel already owned by us\n");
1523 subscr_put(subscr);
1524 subscr = msg->lchan->subscr;
Holger Freyther2fa4cb52009-02-14 23:53:15 +00001525 }
1526
Harald Welte595ad7b2009-02-16 22:05:44 +00001527 sig_data.subscr = subscr;
1528 sig_data.bts = msg->lchan->ts->trx->bts;
1529 sig_data.lchan = msg->lchan;
1530
1531 dispatch_signal(SS_PAGING, S_PAGING_COMPLETED, &sig_data);
Harald Weltebe143102009-06-10 11:21:55 +08001532
1533 /* Stop paging on the bts we received the paging response */
Harald Welte7ccf7782009-02-17 01:43:01 +00001534 paging_request_stop(msg->trx->bts, subscr, msg->lchan);
Harald Welte2d35ae62009-02-06 12:02:13 +00001535
Harald Welte7584aea2009-02-11 11:44:12 +00001536 /* FIXME: somehow signal the completion of the PAGING to
1537 * the entity that requested the paging */
1538
Harald Welte2d35ae62009-02-06 12:02:13 +00001539 return rc;
1540}
1541
Harald Weltef7c43522009-06-09 20:24:21 +00001542static int gsm48_rx_rr_classmark(struct msgb *msg)
1543{
1544 struct gsm48_hdr *gh = msgb_l3(msg);
1545 struct gsm_subscriber *subscr = msg->lchan->subscr;
1546 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1547 u_int8_t cm2_len, cm3_len = 0;
1548 u_int8_t *cm2, *cm3 = NULL;
1549
1550 DEBUGP(DRR, "CLASSMARK CHANGE ");
1551
1552 /* classmark 2 */
1553 cm2_len = gh->data[0];
1554 cm2 = &gh->data[1];
1555 DEBUGPC(DRR, "CM2(len=%u) ", cm2_len);
1556
1557 if (payload_len > cm2_len + 1) {
1558 /* we must have a classmark3 */
1559 if (gh->data[cm2_len+1] != 0x20) {
1560 DEBUGPC(DRR, "ERR CM3 TAG\n");
1561 return -EINVAL;
1562 }
1563 if (cm2_len > 3) {
1564 DEBUGPC(DRR, "CM2 too long!\n");
1565 return -EINVAL;
1566 }
1567
1568 cm3_len = gh->data[cm2_len+2];
1569 cm3 = &gh->data[cm2_len+3];
1570 if (cm3_len > 14) {
1571 DEBUGPC(DRR, "CM3 len %u too long!\n", cm3_len);
1572 return -EINVAL;
1573 }
1574 DEBUGPC(DRR, "CM3(len=%u)\n", cm3_len);
1575 }
1576 if (subscr) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001577 subscr->equipment.classmark2_len = cm2_len;
1578 memcpy(subscr->equipment.classmark2, cm2, cm2_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001579 if (cm3) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001580 subscr->equipment.classmark3_len = cm3_len;
1581 memcpy(subscr->equipment.classmark3, cm3, cm3_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001582 }
Harald Weltec2e302d2009-07-05 14:08:13 +02001583 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001584 }
1585
Harald Weltef7c43522009-06-09 20:24:21 +00001586 return 0;
1587}
1588
Harald Weltecf5b3592009-05-01 18:28:42 +00001589static int gsm48_rx_rr_status(struct msgb *msg)
1590{
1591 struct gsm48_hdr *gh = msgb_l3(msg);
1592
1593 DEBUGP(DRR, "STATUS rr_cause = %s\n",
1594 rr_cause_name(gh->data[0]));
1595
1596 return 0;
1597}
1598
Harald Weltef7c43522009-06-09 20:24:21 +00001599static int gsm48_rx_rr_meas_rep(struct msgb *msg)
1600{
1601 struct gsm48_hdr *gh = msgb_l3(msg);
1602 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1603 static struct gsm_meas_rep meas_rep;
1604
Harald Welte10d0e672009-06-27 02:53:10 +02001605 DEBUGP(DMEAS, "MEASUREMENT REPORT ");
Harald Weltef7c43522009-06-09 20:24:21 +00001606 parse_meas_rep(&meas_rep, gh->data, payload_len);
1607 if (meas_rep.flags & MEAS_REP_F_DTX)
Harald Welte10d0e672009-06-27 02:53:10 +02001608 DEBUGPC(DMEAS, "DTX ");
Harald Weltef7c43522009-06-09 20:24:21 +00001609 if (meas_rep.flags & MEAS_REP_F_BA1)
Harald Welte10d0e672009-06-27 02:53:10 +02001610 DEBUGPC(DMEAS, "BA1 ");
Harald Weltef7c43522009-06-09 20:24:21 +00001611 if (!(meas_rep.flags & MEAS_REP_F_VALID))
Harald Welte10d0e672009-06-27 02:53:10 +02001612 DEBUGPC(DMEAS, "NOT VALID ");
Harald Weltef7c43522009-06-09 20:24:21 +00001613 else
Harald Welte10d0e672009-06-27 02:53:10 +02001614 DEBUGPC(DMEAS, "FULL(lev=%u, qual=%u) SUB(lev=%u, qual=%u) ",
Harald Weltef7c43522009-06-09 20:24:21 +00001615 meas_rep.rxlev_full, meas_rep.rxqual_full, meas_rep.rxlev_sub,
1616 meas_rep.rxqual_sub);
1617
Harald Welte10d0e672009-06-27 02:53:10 +02001618 DEBUGPC(DMEAS, "NUM_NEIGH=%u\n", meas_rep.num_cell);
Harald Weltef7c43522009-06-09 20:24:21 +00001619
1620 /* FIXME: put the results somwhere */
1621
1622 return 0;
1623}
1624
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001625static int gsm48_rx_rr_app_info(struct msgb *msg)
1626{
1627 struct gsm48_hdr *gh = msgb_l3(msg);
1628 u_int8_t apdu_id_flags;
1629 u_int8_t apdu_len;
1630 u_int8_t *apdu_data;
1631
1632 apdu_id_flags = gh->data[0];
1633 apdu_len = gh->data[1];
1634 apdu_data = gh->data+2;
1635
1636 DEBUGP(DNM, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s",
1637 apdu_id_flags, apdu_len, hexdump(apdu_data, apdu_len));
1638
Harald Welte (local)026531e2009-08-16 10:40:10 +02001639 return db_apdu_blob_store(msg->lchan->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001640}
1641
1642
Harald Weltebf5e8df2009-02-03 12:59:45 +00001643/* Receive a GSM 04.08 Radio Resource (RR) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001644static int gsm0408_rcv_rr(struct msgb *msg)
1645{
1646 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001647 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001648
1649 switch (gh->msg_type) {
1650 case GSM48_MT_RR_CLSM_CHG:
Harald Weltef7c43522009-06-09 20:24:21 +00001651 rc = gsm48_rx_rr_classmark(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001652 break;
Harald Weltefc977a82008-12-27 10:19:37 +00001653 case GSM48_MT_RR_GPRS_SUSP_REQ:
1654 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
1655 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001656 case GSM48_MT_RR_PAG_RESP:
Harald Welte2d35ae62009-02-06 12:02:13 +00001657 rc = gsm48_rr_rx_pag_resp(msg);
1658 break;
Harald Welte7ccf7782009-02-17 01:43:01 +00001659 case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
1660 DEBUGP(DRR, "CHANNEL MODE MODIFY ACK\n");
Harald Welte13cac662009-07-29 12:10:35 +02001661 /* We've successfully modified the MS side of the channel,
1662 * now go on to modify the BTS side of the channel */
Harald Welte9943c5b2009-07-29 15:41:29 +02001663 msg->lchan->rsl_cmode = RSL_CMOD_SPD_SPEECH;
Harald Welte2c38aa82009-02-18 03:44:24 +00001664 rc = rsl_chan_mode_modify_req(msg->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001665 break;
Harald Weltecf5b3592009-05-01 18:28:42 +00001666 case GSM48_MT_RR_STATUS:
1667 rc = gsm48_rx_rr_status(msg);
1668 break;
Harald Weltef7c43522009-06-09 20:24:21 +00001669 case GSM48_MT_RR_MEAS_REP:
1670 rc = gsm48_rx_rr_meas_rep(msg);
1671 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001672 case GSM48_MT_RR_APP_INFO:
1673 rc = gsm48_rx_rr_app_info(msg);
1674 break;
Harald Welte08d91a52009-08-30 15:37:11 +09001675 case GSM48_MT_RR_CIPH_M_COMPL:
1676 DEBUGP(DRR, "CIPHERING MODE COMPLETE\n");
1677 /* FIXME: check for MI (if any) */
1678 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001679 default:
Harald Welte2d35ae62009-02-06 12:02:13 +00001680 fprintf(stderr, "Unimplemented GSM 04.08 RR msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001681 gh->msg_type);
1682 break;
1683 }
1684
Harald Welte2d35ae62009-02-06 12:02:13 +00001685 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001686}
1687
Harald Welte08d91a52009-08-30 15:37:11 +09001688/* Chapter 9.1.9: Ciphering Mode Command */
1689int gsm48_send_rr_ciph_mode(struct gsm_lchan *lchan)
1690{
1691 struct msgb *msg = gsm48_msgb_alloc();
1692 struct gsm48_hdr *gh;
1693 u_int8_t ciph_mod_set;
1694
1695 msg->lchan = lchan;
1696
1697 DEBUGP(DRR, "TX CIPHERING MODE CMD\n");
1698
1699 if (lchan->encr.alg_id <= RSL_ENC_ALG_A5(0))
1700 ciph_mod_set = 0;
1701 else
Sylvain Munaut1dcfc002009-09-27 11:11:41 +02001702 ciph_mod_set = (lchan->encr.alg_id-2)<<1 | 1;
Harald Welte08d91a52009-08-30 15:37:11 +09001703
1704 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
1705 gh->proto_discr = GSM48_PDISC_RR;
1706 gh->msg_type = GSM48_MT_RR_CIPH_M_CMD;
1707 gh->data[0] = 0x10 | (ciph_mod_set & 0xf);
1708
1709 return rsl_encryption_cmd(msg);
1710}
Holger Freythere64a7a32009-02-06 21:55:37 +00001711
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001712int gsm48_send_rr_app_info(struct gsm_lchan *lchan, u_int8_t apdu_id,
1713 u_int8_t apdu_len, u_int8_t *apdu)
1714{
1715 struct msgb *msg = gsm48_msgb_alloc();
1716 struct gsm48_hdr *gh;
1717
1718 msg->lchan = lchan;
1719
1720 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1721 apdu_id, apdu_len);
1722
1723 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1724 gh->proto_discr = GSM48_PDISC_RR;
1725 gh->msg_type = GSM48_MT_RR_APP_INFO;
1726 gh->data[0] = apdu_id;
1727 gh->data[1] = apdu_len;
1728 memcpy(gh->data+2, apdu, apdu_len);
1729
1730 return gsm48_sendmsg(msg, NULL);
1731}
1732
Harald Welte4bc90a12008-12-27 16:32:52 +00001733/* Call Control */
1734
Harald Welte7584aea2009-02-11 11:44:12 +00001735/* The entire call control code is written in accordance with Figure 7.10c
1736 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1737 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1738 * it for voice */
1739
Harald Welte4bfdfe72009-06-10 23:11:52 +08001740static void new_cc_state(struct gsm_trans *trans, int state)
1741{
1742 if (state > 31 || state < 0)
1743 return;
1744
1745 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltedcaf5652009-07-23 18:56:43 +02001746 cc_state_names[trans->cc.state], cc_state_names[state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001747
Harald Weltedcaf5652009-07-23 18:56:43 +02001748 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001749}
1750
1751static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001752{
1753 struct msgb *msg = gsm48_msgb_alloc();
1754 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1755 u_int8_t *cause, *call_state;
1756
Harald Welte4bc90a12008-12-27 16:32:52 +00001757 gh->msg_type = GSM48_MT_CC_STATUS;
1758
1759 cause = msgb_put(msg, 3);
1760 cause[0] = 2;
1761 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1762 cause[2] = 0x80 | 30; /* response to status inquiry */
1763
1764 call_state = msgb_put(msg, 1);
1765 call_state[0] = 0xc0 | 0x00;
1766
Harald Welte39e2ead2009-07-23 21:13:03 +02001767 return gsm48_sendmsg(msg, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001768}
1769
Harald Welte6f4b7532008-12-29 00:39:37 +00001770static int gsm48_tx_simple(struct gsm_lchan *lchan,
1771 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001772{
1773 struct msgb *msg = gsm48_msgb_alloc();
1774 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1775
1776 msg->lchan = lchan;
1777
Harald Welte6f4b7532008-12-29 00:39:37 +00001778 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001779 gh->msg_type = msg_type;
1780
Harald Welte39e2ead2009-07-23 21:13:03 +02001781 return gsm48_sendmsg(msg, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001782}
1783
Harald Welte4bfdfe72009-06-10 23:11:52 +08001784static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1785{
Harald Weltedcaf5652009-07-23 18:56:43 +02001786 if (bsc_timer_pending(&trans->cc.timer)) {
1787 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
1788 bsc_del_timer(&trans->cc.timer);
1789 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001790 }
1791}
1792
1793static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1794 int msg_type, struct gsm_mncc *mncc)
1795{
1796 struct msgb *msg;
1797
1798 if (trans)
1799 if (trans->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001800 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001801 "Sending '%s' to MNCC.\n",
1802 trans->lchan->ts->trx->bts->nr,
1803 trans->lchan->ts->trx->nr,
1804 trans->lchan->ts->nr, trans->transaction_id,
1805 (trans->subscr)?(trans->subscr->extension):"-",
1806 get_mncc_name(msg_type));
1807 else
1808 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1809 "Sending '%s' to MNCC.\n",
1810 (trans->subscr)?(trans->subscr->extension):"-",
1811 get_mncc_name(msg_type));
1812 else
1813 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1814 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1815
1816 mncc->msg_type = msg_type;
1817
Harald Welte966636f2009-06-26 19:39:35 +02001818 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001819 if (!msg)
1820 return -ENOMEM;
1821 memcpy(msg->data, mncc, sizeof(struct gsm_mncc));
1822 msgb_enqueue(&net->upqueue, msg);
1823
1824 return 0;
1825}
1826
1827int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
1828 u_int32_t callref, int location, int value)
1829{
1830 struct gsm_mncc rel;
1831
Harald Welte92f70c52009-06-12 01:54:08 +08001832 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001833 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001834 mncc_set_cause(&rel, location, value);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001835 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1836}
1837
Harald Weltedcaf5652009-07-23 18:56:43 +02001838/* Call Control Specific transaction release.
1839 * gets called by trans_free, DO NOT CALL YOURSELF! */
1840void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001841{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001842 gsm48_stop_cc_timer(trans);
1843
1844 /* send release to L4, if callref still exists */
1845 if (trans->callref) {
1846 /* Ressource unavailable */
Harald Welte596fed42009-07-23 19:06:52 +02001847 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001848 GSM48_CAUSE_LOC_PRN_S_LU,
1849 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001850 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001851 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001852 new_cc_state(trans, GSM_CSTATE_NULL);
Harald Weltedcaf5652009-07-23 18:56:43 +02001853 if (trans->lchan)
1854 trau_mux_unmap(&trans->lchan->ts->e1_link, trans->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001855}
1856
1857static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
1858
Harald Welte09e38af2009-02-16 22:52:23 +00001859/* call-back from paging the B-end of the connection */
1860static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Harald Welte7ccf7782009-02-17 01:43:01 +00001861 struct msgb *msg, void *_lchan, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001862{
Harald Welte7ccf7782009-02-17 01:43:01 +00001863 struct gsm_lchan *lchan = _lchan;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001864 struct gsm_subscriber *subscr = param;
1865 struct gsm_trans *transt, *tmp;
1866 struct gsm_network *net;
Harald Weltec05677b2009-06-26 20:17:06 +02001867
Harald Welte09e38af2009-02-16 22:52:23 +00001868 if (hooknum != GSM_HOOK_RR_PAGING)
1869 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001870
1871 if (!subscr)
1872 return -EINVAL;
1873 net = subscr->net;
1874 if (!net) {
1875 DEBUGP(DCC, "Error Network not set!\n");
1876 return -EINVAL;
Harald Welte5a065df2009-02-22 21:13:18 +00001877 }
Harald Welte7584aea2009-02-11 11:44:12 +00001878
Harald Welte4bfdfe72009-06-10 23:11:52 +08001879 /* check all tranactions (without lchan) for subscriber */
1880 llist_for_each_entry_safe(transt, tmp, &net->trans_list, entry) {
1881 if (transt->subscr != subscr || transt->lchan)
1882 continue;
1883 switch (event) {
1884 case GSM_PAGING_SUCCEEDED:
1885 if (!lchan) // paranoid
1886 break;
1887 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
1888 subscr->extension);
1889 /* Assign lchan */
1890 if (!transt->lchan) {
1891 transt->lchan = lchan;
1892 use_lchan(lchan);
1893 }
1894 /* send SETUP request to called party */
Harald Weltedcaf5652009-07-23 18:56:43 +02001895 gsm48_cc_tx_setup(transt, &transt->cc.msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001896 break;
1897 case GSM_PAGING_EXPIRED:
1898 DEBUGP(DCC, "Paging subscr %s expired!\n",
1899 subscr->extension);
1900 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02001901 mncc_release_ind(transt->subscr->net, transt,
1902 transt->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001903 GSM48_CAUSE_LOC_PRN_S_LU,
1904 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001905 transt->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001906 trans_free(transt);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001907 break;
1908 }
1909 }
Harald Welte09e38af2009-02-16 22:52:23 +00001910 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001911}
Harald Welte7584aea2009-02-11 11:44:12 +00001912
Harald Welte805f6442009-07-28 18:25:29 +02001913/* some other part of the code sends us a signal */
1914static int handle_abisip_signal(unsigned int subsys, unsigned int signal,
1915 void *handler_data, void *signal_data)
1916{
1917 struct gsm_lchan *lchan = signal_data;
1918 struct gsm_bts_trx_ts *ts;
1919 int rc;
1920
1921 if (subsys != SS_ABISIP)
1922 return 0;
1923
1924 /* in case we use direct BTS-to-BTS RTP */
1925 if (ipacc_rtp_direct)
1926 return 0;
1927
1928 ts = lchan->ts;
1929
1930 switch (signal) {
1931 case S_ABISIP_BIND_ACK:
1932 /* the BTS has successfully bound a TCH to a local ip/port,
1933 * which means we can connect our UDP socket to it */
1934 if (ts->abis_ip.rtp_socket) {
1935 rtp_socket_free(ts->abis_ip.rtp_socket);
1936 ts->abis_ip.rtp_socket = NULL;
1937 }
1938
1939 ts->abis_ip.rtp_socket = rtp_socket_create();
1940 if (!ts->abis_ip.rtp_socket)
1941 goto out_err;
1942
1943 rc = rtp_socket_connect(ts->abis_ip.rtp_socket,
1944 ts->abis_ip.bound_ip,
1945 ts->abis_ip.bound_port);
1946 if (rc < 0)
1947 goto out_err;
1948 break;
1949 case S_ABISIP_DISC_IND:
1950 /* the BTS tells us a RTP stream has been disconnected */
1951 if (ts->abis_ip.rtp_socket) {
1952 rtp_socket_free(ts->abis_ip.rtp_socket);
1953 ts->abis_ip.rtp_socket = NULL;
1954 }
1955 break;
1956 }
1957
1958 return 0;
1959out_err:
1960 /* FIXME: do something */
1961 return 0;
1962}
1963
1964/* bind rtp proxy to local IP/port and tell BTS to connect to it */
1965static int ipacc_connect_proxy_bind(struct gsm_lchan *lchan)
1966{
1967 struct gsm_bts_trx_ts *ts = lchan->ts;
1968 struct rtp_socket *rs = ts->abis_ip.rtp_socket;
1969 int rc;
1970
1971 rc = rsl_ipacc_connect(lchan, ntohl(rs->rtp.sin_local.sin_addr.s_addr),
1972 ntohs(rs->rtp.sin_local.sin_port),
1973 ts->abis_ip.conn_id,
1974 /* FIXME: use RTP payload of bound socket, not BTS*/
1975 ts->abis_ip.rtp_payload2);
1976
1977 return rc;
1978}
1979
Harald Welte49f48b82009-02-17 15:29:33 +00001980/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001981static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001982{
Harald Welte11fa29c2009-02-19 17:24:39 +00001983 struct gsm_bts *bts = lchan->ts->trx->bts;
1984 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte49f48b82009-02-17 15:29:33 +00001985 struct gsm_bts_trx_ts *ts;
Harald Welte805f6442009-07-28 18:25:29 +02001986 int rc;
Harald Welte49f48b82009-02-17 15:29:33 +00001987
Harald Welte11fa29c2009-02-19 17:24:39 +00001988 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1989 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1990 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1991
1992 if (bts->type != remote_bts->type) {
1993 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1994 return -EINVAL;
1995 }
Harald Welte49f48b82009-02-17 15:29:33 +00001996
Harald Welte11fa29c2009-02-19 17:24:39 +00001997 switch (bts->type) {
1998 case GSM_BTS_TYPE_NANOBTS_900:
1999 case GSM_BTS_TYPE_NANOBTS_1800:
Harald Welte805f6442009-07-28 18:25:29 +02002000 if (!ipacc_rtp_direct) {
2001 /* connect the TCH's to our RTP proxy */
2002 rc = ipacc_connect_proxy_bind(lchan);
2003 if (rc < 0)
2004 return rc;
2005 rc = ipacc_connect_proxy_bind(remote_lchan);
2006
2007 /* connect them with each other */
2008 rtp_socket_proxy(lchan->ts->abis_ip.rtp_socket,
2009 remote_lchan->ts->abis_ip.rtp_socket);
2010 } else {
2011 /* directly connect TCH RTP streams to each other */
2012 ts = remote_lchan->ts;
2013 rc = rsl_ipacc_connect(lchan, ts->abis_ip.bound_ip,
2014 ts->abis_ip.bound_port,
2015 lchan->ts->abis_ip.conn_id,
2016 ts->abis_ip.rtp_payload2);
2017 if (rc < 0)
2018 return rc;
2019 ts = lchan->ts;
2020 rc = rsl_ipacc_connect(remote_lchan, ts->abis_ip.bound_ip,
2021 ts->abis_ip.bound_port,
2022 remote_lchan->ts->abis_ip.conn_id,
2023 ts->abis_ip.rtp_payload2);
2024 }
Harald Welte11fa29c2009-02-19 17:24:39 +00002025 break;
2026 case GSM_BTS_TYPE_BS11:
2027 trau_mux_map_lchan(lchan, remote_lchan);
2028 break;
2029 default:
2030 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
Harald Welte805f6442009-07-28 18:25:29 +02002031 rc = -EINVAL;
Harald Welte11fa29c2009-02-19 17:24:39 +00002032 break;
2033 }
Harald Welte49f48b82009-02-17 15:29:33 +00002034
2035 return 0;
2036}
2037
Harald Welte4bfdfe72009-06-10 23:11:52 +08002038/* bridge channels of two transactions */
2039static int tch_bridge(struct gsm_network *net, u_int32_t *refs)
Harald Welte7ccf7782009-02-17 01:43:01 +00002040{
Harald Weltedcaf5652009-07-23 18:56:43 +02002041 struct gsm_trans *trans1 = trans_find_by_callref(net, refs[0]);
2042 struct gsm_trans *trans2 = trans_find_by_callref(net, refs[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00002043
Harald Welte4bfdfe72009-06-10 23:11:52 +08002044 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00002045 return -EIO;
2046
Harald Welte4bfdfe72009-06-10 23:11:52 +08002047 if (!trans1->lchan || !trans2->lchan)
2048 return -EIO;
2049
2050 /* through-connect channel */
2051 return tch_map(trans1->lchan, trans2->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00002052}
2053
Harald Welte4bfdfe72009-06-10 23:11:52 +08002054/* enable receive of channels to upqueue */
2055static int tch_recv(struct gsm_network *net, struct gsm_mncc *data, int enable)
2056{
2057 struct gsm_trans *trans;
Harald Welte7ccf7782009-02-17 01:43:01 +00002058
Harald Welte4bfdfe72009-06-10 23:11:52 +08002059 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002060 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002061 if (!trans)
2062 return -EIO;
2063 if (!trans->lchan)
2064 return 0;
2065
2066 // todo IPACCESS
2067 if (enable)
2068 return trau_recv_lchan(trans->lchan, data->callref);
2069 return trau_mux_unmap(NULL, data->callref);
2070}
2071
2072/* send a frame to channel */
2073static int tch_frame(struct gsm_network *net, struct gsm_trau_frame *frame)
2074{
2075 struct gsm_trans *trans;
2076
2077 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002078 trans = trans_find_by_callref(net, frame->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002079 if (!trans)
2080 return -EIO;
2081 if (!trans->lchan)
2082 return 0;
2083 if (trans->lchan->type != GSM_LCHAN_TCH_F &&
2084 trans->lchan->type != GSM_LCHAN_TCH_H)
2085 return 0;
2086
2087 // todo IPACCESS
2088 return trau_send_lchan(trans->lchan,
2089 (struct decoded_trau_frame *)frame->data);
2090}
2091
2092
2093static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
2094{
2095 DEBUGP(DCC, "-> STATUS ENQ\n");
2096 return gsm48_cc_tx_status(trans, msg);
2097}
2098
2099static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
2100static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
2101
2102static void gsm48_cc_timeout(void *arg)
2103{
2104 struct gsm_trans *trans = arg;
2105 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08002106 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
2107 int mo_location = GSM48_CAUSE_LOC_USER;
2108 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
2109 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002110 struct gsm_mncc mo_rel, l4_rel;
2111
2112 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
2113 mo_rel.callref = trans->callref;
2114 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
2115 l4_rel.callref = trans->callref;
2116
Harald Weltedcaf5652009-07-23 18:56:43 +02002117 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002118 case 0x303:
2119 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002120 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002121 break;
2122 case 0x310:
2123 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002124 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002125 break;
2126 case 0x313:
2127 disconnect = 1;
2128 /* unknown, did not find it in the specs */
2129 break;
2130 case 0x301:
2131 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002132 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002133 break;
2134 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02002135 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002136 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02002137 gsm48_cc_tx_release(trans, &trans->cc.msg);
2138 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002139 break; /* stay in release state */
2140 }
Harald Weltedcaf5652009-07-23 18:56:43 +02002141 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002142 return;
2143// release = 1;
2144// l4_cause = 14;
2145// break;
2146 case 0x306:
2147 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02002148 mo_cause = trans->cc.msg.cause.value;
2149 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002150 break;
2151 case 0x323:
2152 disconnect = 1;
2153 break;
2154 default:
2155 release = 1;
2156 }
2157
2158 if (release && trans->callref) {
2159 /* process release towards layer 4 */
Harald Welte596fed42009-07-23 19:06:52 +02002160 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002161 l4_location, l4_cause);
2162 trans->callref = 0;
2163 }
2164
2165 if (disconnect && trans->callref) {
2166 /* process disconnect towards layer 4 */
2167 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Harald Welte596fed42009-07-23 19:06:52 +02002168 mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002169 }
2170
2171 /* process disconnect towards mobile station */
2172 if (disconnect || release) {
2173 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02002174 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
2175 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
2176 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08002177 mo_rel.cause.diag_len = 3;
2178
2179 if (disconnect)
2180 gsm48_cc_tx_disconnect(trans, &mo_rel);
2181 if (release)
2182 gsm48_cc_tx_release(trans, &mo_rel);
2183 }
2184
2185}
2186
2187static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
2188 int sec, int micro)
2189{
2190 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Harald Weltedcaf5652009-07-23 18:56:43 +02002191 trans->cc.timer.cb = gsm48_cc_timeout;
2192 trans->cc.timer.data = trans;
2193 bsc_schedule_timer(&trans->cc.timer, sec, micro);
2194 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002195}
2196
2197static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
2198{
2199 struct gsm48_hdr *gh = msgb_l3(msg);
2200 u_int8_t msg_type = gh->msg_type & 0xbf;
2201 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2202 struct tlv_parsed tp;
2203 struct gsm_mncc setup;
2204
2205 memset(&setup, 0, sizeof(struct gsm_mncc));
2206 setup.callref = trans->callref;
2207 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2208 /* emergency setup is identified by msg_type */
2209 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
2210 setup.emergency = 1;
2211
2212 /* use subscriber as calling party number */
2213 if (trans->subscr) {
2214 setup.fields |= MNCC_F_CALLING;
2215 strncpy(setup.calling.number, trans->subscr->extension,
2216 sizeof(setup.calling.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002217 strncpy(setup.imsi, trans->subscr->imsi,
2218 sizeof(setup.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002219 }
2220 /* bearer capability */
2221 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2222 setup.fields |= MNCC_F_BEARER_CAP;
2223 decode_bearer_cap(&setup.bearer_cap,
2224 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2225 }
2226 /* facility */
2227 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2228 setup.fields |= MNCC_F_FACILITY;
2229 decode_facility(&setup.facility,
2230 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2231 }
2232 /* called party bcd number */
2233 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
2234 setup.fields |= MNCC_F_CALLED;
2235 decode_called(&setup.called,
2236 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
2237 }
2238 /* user-user */
2239 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2240 setup.fields |= MNCC_F_USERUSER;
2241 decode_useruser(&setup.useruser,
2242 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2243 }
2244 /* ss-version */
2245 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2246 setup.fields |= MNCC_F_SSVERSION;
2247 decode_ssversion(&setup.ssversion,
2248 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2249 }
2250 /* CLIR suppression */
2251 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
2252 setup.clir.sup = 1;
2253 /* CLIR invocation */
2254 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
2255 setup.clir.inv = 1;
2256 /* cc cap */
2257 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2258 setup.fields |= MNCC_F_CCCAP;
2259 decode_cccap(&setup.cccap,
2260 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2261 }
2262
Harald Welte4bfdfe72009-06-10 23:11:52 +08002263 new_cc_state(trans, GSM_CSTATE_INITIATED);
2264
2265 /* indicate setup to MNCC */
Harald Welte596fed42009-07-23 19:06:52 +02002266 mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002267
Harald Welte13cac662009-07-29 12:10:35 +02002268 /* MNCC code will modify the channel asynchronously, we should
2269 * ipaccess-bind only after the modification has been made to the
2270 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08002271 return 0;
2272}
2273
2274static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00002275{
2276 struct msgb *msg = gsm48_msgb_alloc();
2277 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002278 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02002279 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00002280
Harald Welte7ccf7782009-02-17 01:43:01 +00002281 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00002282
Harald Welte4bfdfe72009-06-10 23:11:52 +08002283 /* transaction id must not be assigned */
2284 if (trans->transaction_id != 0xff) { /* unasssigned */
2285 DEBUGP(DCC, "TX Setup with assigned transaction. "
2286 "This is not allowed!\n");
2287 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02002288 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002289 GSM48_CAUSE_LOC_PRN_S_LU,
2290 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002291 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002292 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002293 return rc;
2294 }
2295
2296 /* Get free transaction_id */
Harald Welte78283ef2009-07-23 21:36:44 +02002297 trans_id = trans_assign_trans_id(trans->subscr, GSM48_PDISC_CC, 0);
2298 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002299 /* no free transaction ID */
Harald Welte596fed42009-07-23 19:06:52 +02002300 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002301 GSM48_CAUSE_LOC_PRN_S_LU,
2302 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002303 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002304 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002305 return rc;
2306 }
Harald Welte78283ef2009-07-23 21:36:44 +02002307 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00002308
Harald Welte65e74cc2008-12-29 01:55:35 +00002309 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00002310
Harald Welte4bfdfe72009-06-10 23:11:52 +08002311 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00002312
Harald Welte4bfdfe72009-06-10 23:11:52 +08002313 /* bearer capability */
2314 if (setup->fields & MNCC_F_BEARER_CAP)
2315 encode_bearer_cap(msg, 0, &setup->bearer_cap);
2316 /* facility */
2317 if (setup->fields & MNCC_F_FACILITY)
2318 encode_facility(msg, 0, &setup->facility);
2319 /* progress */
2320 if (setup->fields & MNCC_F_PROGRESS)
2321 encode_progress(msg, 0, &setup->progress);
2322 /* calling party BCD number */
2323 if (setup->fields & MNCC_F_CALLING)
2324 encode_calling(msg, &setup->calling);
2325 /* called party BCD number */
2326 if (setup->fields & MNCC_F_CALLED)
2327 encode_called(msg, &setup->called);
2328 /* user-user */
2329 if (setup->fields & MNCC_F_USERUSER)
2330 encode_useruser(msg, 0, &setup->useruser);
2331 /* redirecting party BCD number */
2332 if (setup->fields & MNCC_F_REDIRECTING)
2333 encode_redirecting(msg, &setup->redirecting);
2334 /* signal */
2335 if (setup->fields & MNCC_F_SIGNAL)
2336 encode_signal(msg, setup->signal);
2337
2338 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00002339
Harald Welte39e2ead2009-07-23 21:13:03 +02002340 return gsm48_sendmsg(msg, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00002341}
2342
Harald Welte4bfdfe72009-06-10 23:11:52 +08002343static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
2344{
2345 struct gsm48_hdr *gh = msgb_l3(msg);
2346 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2347 struct tlv_parsed tp;
2348 struct gsm_mncc call_conf;
2349
2350 gsm48_stop_cc_timer(trans);
2351 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
2352
2353 memset(&call_conf, 0, sizeof(struct gsm_mncc));
2354 call_conf.callref = trans->callref;
2355 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2356#if 0
2357 /* repeat */
2358 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
2359 call_conf.repeat = 1;
2360 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
2361 call_conf.repeat = 2;
2362#endif
2363 /* bearer capability */
2364 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2365 call_conf.fields |= MNCC_F_BEARER_CAP;
2366 decode_bearer_cap(&call_conf.bearer_cap,
2367 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2368 }
2369 /* cause */
2370 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2371 call_conf.fields |= MNCC_F_CAUSE;
2372 decode_cause(&call_conf.cause,
2373 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2374 }
2375 /* cc cap */
2376 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2377 call_conf.fields |= MNCC_F_CCCAP;
2378 decode_cccap(&call_conf.cccap,
2379 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2380 }
2381
2382 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
2383
Harald Welte596fed42009-07-23 19:06:52 +02002384 return mncc_recvmsg(trans->subscr->net, trans, MNCC_CALL_CONF_IND,
2385 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002386}
2387
2388static int gsm48_cc_tx_call_proc(struct gsm_trans *trans, void *arg)
2389{
2390 struct gsm_mncc *proceeding = arg;
2391 struct msgb *msg = gsm48_msgb_alloc();
2392 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2393
Harald Welte4bfdfe72009-06-10 23:11:52 +08002394 gh->msg_type = GSM48_MT_CC_CALL_PROC;
2395
2396 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
2397
2398 /* bearer capability */
2399 if (proceeding->fields & MNCC_F_BEARER_CAP)
2400 encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
2401 /* facility */
2402 if (proceeding->fields & MNCC_F_FACILITY)
2403 encode_facility(msg, 0, &proceeding->facility);
2404 /* progress */
2405 if (proceeding->fields & MNCC_F_PROGRESS)
2406 encode_progress(msg, 0, &proceeding->progress);
2407
Harald Welte39e2ead2009-07-23 21:13:03 +02002408 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002409}
2410
2411static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
2412{
2413 struct gsm48_hdr *gh = msgb_l3(msg);
2414 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2415 struct tlv_parsed tp;
2416 struct gsm_mncc alerting;
2417
2418 gsm48_stop_cc_timer(trans);
2419 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
2420
2421 memset(&alerting, 0, sizeof(struct gsm_mncc));
2422 alerting.callref = trans->callref;
2423 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2424 /* facility */
2425 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2426 alerting.fields |= MNCC_F_FACILITY;
2427 decode_facility(&alerting.facility,
2428 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2429 }
2430
2431 /* progress */
2432 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
2433 alerting.fields |= MNCC_F_PROGRESS;
2434 decode_progress(&alerting.progress,
2435 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
2436 }
2437 /* ss-version */
2438 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2439 alerting.fields |= MNCC_F_SSVERSION;
2440 decode_ssversion(&alerting.ssversion,
2441 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2442 }
2443
2444 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
2445
Harald Welte596fed42009-07-23 19:06:52 +02002446 return mncc_recvmsg(trans->subscr->net, trans, MNCC_ALERT_IND,
2447 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002448}
2449
2450static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
2451{
2452 struct gsm_mncc *alerting = arg;
2453 struct msgb *msg = gsm48_msgb_alloc();
2454 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2455
Harald Welte4bfdfe72009-06-10 23:11:52 +08002456 gh->msg_type = GSM48_MT_CC_ALERTING;
2457
2458 /* facility */
2459 if (alerting->fields & MNCC_F_FACILITY)
2460 encode_facility(msg, 0, &alerting->facility);
2461 /* progress */
2462 if (alerting->fields & MNCC_F_PROGRESS)
2463 encode_progress(msg, 0, &alerting->progress);
2464 /* user-user */
2465 if (alerting->fields & MNCC_F_USERUSER)
2466 encode_useruser(msg, 0, &alerting->useruser);
2467
2468 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
2469
Harald Welte39e2ead2009-07-23 21:13:03 +02002470 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002471}
2472
2473static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
2474{
2475 struct gsm_mncc *progress = arg;
2476 struct msgb *msg = gsm48_msgb_alloc();
2477 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2478
Harald Welte4bfdfe72009-06-10 23:11:52 +08002479 gh->msg_type = GSM48_MT_CC_PROGRESS;
2480
2481 /* progress */
2482 encode_progress(msg, 1, &progress->progress);
2483 /* user-user */
2484 if (progress->fields & MNCC_F_USERUSER)
2485 encode_useruser(msg, 0, &progress->useruser);
2486
Harald Welte39e2ead2009-07-23 21:13:03 +02002487 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002488}
2489
2490static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
2491{
2492 struct gsm_mncc *connect = arg;
2493 struct msgb *msg = gsm48_msgb_alloc();
2494 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2495
Harald Welte4bfdfe72009-06-10 23:11:52 +08002496 gh->msg_type = GSM48_MT_CC_CONNECT;
2497
2498 gsm48_stop_cc_timer(trans);
2499 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2500
2501 /* facility */
2502 if (connect->fields & MNCC_F_FACILITY)
2503 encode_facility(msg, 0, &connect->facility);
2504 /* progress */
2505 if (connect->fields & MNCC_F_PROGRESS)
2506 encode_progress(msg, 0, &connect->progress);
2507 /* connected number */
2508 if (connect->fields & MNCC_F_CONNECTED)
2509 encode_connected(msg, &connect->connected);
2510 /* user-user */
2511 if (connect->fields & MNCC_F_USERUSER)
2512 encode_useruser(msg, 0, &connect->useruser);
2513
2514 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2515
Harald Welte39e2ead2009-07-23 21:13:03 +02002516 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002517}
2518
2519static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2520{
2521 struct gsm48_hdr *gh = msgb_l3(msg);
2522 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2523 struct tlv_parsed tp;
2524 struct gsm_mncc connect;
2525
2526 gsm48_stop_cc_timer(trans);
2527
2528 memset(&connect, 0, sizeof(struct gsm_mncc));
2529 connect.callref = trans->callref;
2530 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2531 /* use subscriber as connected party number */
2532 if (trans->subscr) {
2533 connect.fields |= MNCC_F_CONNECTED;
2534 strncpy(connect.connected.number, trans->subscr->extension,
2535 sizeof(connect.connected.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002536 strncpy(connect.imsi, trans->subscr->imsi,
2537 sizeof(connect.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002538 }
2539 /* facility */
2540 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2541 connect.fields |= MNCC_F_FACILITY;
2542 decode_facility(&connect.facility,
2543 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2544 }
2545 /* user-user */
2546 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2547 connect.fields |= MNCC_F_USERUSER;
2548 decode_useruser(&connect.useruser,
2549 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2550 }
2551 /* ss-version */
2552 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2553 connect.fields |= MNCC_F_SSVERSION;
2554 decode_ssversion(&connect.ssversion,
2555 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2556 }
2557
2558 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
2559
Harald Welte596fed42009-07-23 19:06:52 +02002560 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002561}
2562
2563
2564static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2565{
2566 struct gsm_mncc connect_ack;
2567
2568 gsm48_stop_cc_timer(trans);
2569
2570 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2571
2572 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2573 connect_ack.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002574 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002575 &connect_ack);
2576}
2577
2578static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2579{
2580 struct msgb *msg = gsm48_msgb_alloc();
2581 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2582
Harald Welte4bfdfe72009-06-10 23:11:52 +08002583 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2584
2585 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2586
Harald Welte39e2ead2009-07-23 21:13:03 +02002587 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002588}
2589
2590static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2591{
2592 struct gsm48_hdr *gh = msgb_l3(msg);
2593 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2594 struct tlv_parsed tp;
2595 struct gsm_mncc disc;
2596
2597 gsm48_stop_cc_timer(trans);
2598
2599 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2600
2601 memset(&disc, 0, sizeof(struct gsm_mncc));
2602 disc.callref = trans->callref;
2603 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
2604 /* cause */
2605 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2606 disc.fields |= MNCC_F_CAUSE;
2607 decode_cause(&disc.cause,
2608 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2609 }
2610 /* facility */
2611 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2612 disc.fields |= MNCC_F_FACILITY;
2613 decode_facility(&disc.facility,
2614 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2615 }
2616 /* user-user */
2617 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2618 disc.fields |= MNCC_F_USERUSER;
2619 decode_useruser(&disc.useruser,
2620 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2621 }
2622 /* ss-version */
2623 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2624 disc.fields |= MNCC_F_SSVERSION;
2625 decode_ssversion(&disc.ssversion,
2626 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2627 }
2628
Harald Welte596fed42009-07-23 19:06:52 +02002629 return mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002630
2631}
2632
Harald Weltec66b71c2009-06-11 14:23:20 +08002633static struct gsm_mncc_cause default_cause = {
2634 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2635 .coding = 0,
2636 .rec = 0,
2637 .rec_val = 0,
2638 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2639 .diag_len = 0,
2640 .diag = { 0 },
2641};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002642
2643static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2644{
2645 struct gsm_mncc *disc = arg;
2646 struct msgb *msg = gsm48_msgb_alloc();
2647 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2648
Harald Welte4bfdfe72009-06-10 23:11:52 +08002649 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2650
2651 gsm48_stop_cc_timer(trans);
2652 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2653
2654 /* cause */
2655 if (disc->fields & MNCC_F_CAUSE)
2656 encode_cause(msg, 1, &disc->cause);
2657 else
2658 encode_cause(msg, 1, &default_cause);
2659
2660 /* facility */
2661 if (disc->fields & MNCC_F_FACILITY)
2662 encode_facility(msg, 0, &disc->facility);
2663 /* progress */
2664 if (disc->fields & MNCC_F_PROGRESS)
2665 encode_progress(msg, 0, &disc->progress);
2666 /* user-user */
2667 if (disc->fields & MNCC_F_USERUSER)
2668 encode_useruser(msg, 0, &disc->useruser);
2669
2670 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002671 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002672
2673 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2674
Harald Welte39e2ead2009-07-23 21:13:03 +02002675 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002676}
2677
2678static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2679{
2680 struct gsm48_hdr *gh = msgb_l3(msg);
2681 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2682 struct tlv_parsed tp;
2683 struct gsm_mncc rel;
2684 int rc;
2685
2686 gsm48_stop_cc_timer(trans);
2687
2688 memset(&rel, 0, sizeof(struct gsm_mncc));
2689 rel.callref = trans->callref;
2690 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2691 /* cause */
2692 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2693 rel.fields |= MNCC_F_CAUSE;
2694 decode_cause(&rel.cause,
2695 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2696 }
2697 /* facility */
2698 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2699 rel.fields |= MNCC_F_FACILITY;
2700 decode_facility(&rel.facility,
2701 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2702 }
2703 /* user-user */
2704 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2705 rel.fields |= MNCC_F_USERUSER;
2706 decode_useruser(&rel.useruser,
2707 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2708 }
2709 /* ss-version */
2710 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2711 rel.fields |= MNCC_F_SSVERSION;
2712 decode_ssversion(&rel.ssversion,
2713 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2714 }
2715
Harald Weltedcaf5652009-07-23 18:56:43 +02002716 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002717 /* release collision 5.4.5 */
Harald Welte596fed42009-07-23 19:06:52 +02002718 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002719 } else {
Harald Welte596fed42009-07-23 19:06:52 +02002720 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02002721 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002722 GSM48_MT_CC_RELEASE_COMPL);
2723 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002724 }
2725
2726 new_cc_state(trans, GSM_CSTATE_NULL);
2727
2728 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002729 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002730
2731 return rc;
2732}
2733
2734static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2735{
2736 struct gsm_mncc *rel = arg;
2737 struct msgb *msg = gsm48_msgb_alloc();
2738 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2739
Harald Welte4bfdfe72009-06-10 23:11:52 +08002740 gh->msg_type = GSM48_MT_CC_RELEASE;
2741
2742 trans->callref = 0;
2743
2744 gsm48_stop_cc_timer(trans);
2745 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2746
2747 /* cause */
2748 if (rel->fields & MNCC_F_CAUSE)
2749 encode_cause(msg, 0, &rel->cause);
2750 /* facility */
2751 if (rel->fields & MNCC_F_FACILITY)
2752 encode_facility(msg, 0, &rel->facility);
2753 /* user-user */
2754 if (rel->fields & MNCC_F_USERUSER)
2755 encode_useruser(msg, 0, &rel->useruser);
2756
Harald Weltedcaf5652009-07-23 18:56:43 +02002757 trans->cc.T308_second = 0;
2758 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002759
Harald Weltedcaf5652009-07-23 18:56:43 +02002760 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002761 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2762
Harald Welte39e2ead2009-07-23 21:13:03 +02002763 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002764}
2765
2766static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2767{
2768 struct gsm48_hdr *gh = msgb_l3(msg);
2769 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2770 struct tlv_parsed tp;
2771 struct gsm_mncc rel;
2772 int rc = 0;
2773
2774 gsm48_stop_cc_timer(trans);
2775
2776 memset(&rel, 0, sizeof(struct gsm_mncc));
2777 rel.callref = trans->callref;
2778 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2779 /* cause */
2780 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2781 rel.fields |= MNCC_F_CAUSE;
2782 decode_cause(&rel.cause,
2783 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2784 }
2785 /* facility */
2786 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2787 rel.fields |= MNCC_F_FACILITY;
2788 decode_facility(&rel.facility,
2789 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2790 }
2791 /* user-user */
2792 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2793 rel.fields |= MNCC_F_USERUSER;
2794 decode_useruser(&rel.useruser,
2795 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2796 }
2797 /* ss-version */
2798 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2799 rel.fields |= MNCC_F_SSVERSION;
2800 decode_ssversion(&rel.ssversion,
2801 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2802 }
2803
2804 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002805 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002806 case GSM_CSTATE_CALL_PRESENT:
Harald Welte596fed42009-07-23 19:06:52 +02002807 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002808 MNCC_REJ_IND, &rel);
2809 break;
2810 case GSM_CSTATE_RELEASE_REQ:
Harald Welte596fed42009-07-23 19:06:52 +02002811 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002812 MNCC_REL_CNF, &rel);
2813 break;
2814 default:
Harald Welte596fed42009-07-23 19:06:52 +02002815 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002816 MNCC_REL_IND, &rel);
2817 }
2818 }
2819
2820 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002821 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002822
2823 return rc;
2824}
2825
2826static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2827{
2828 struct gsm_mncc *rel = arg;
2829 struct msgb *msg = gsm48_msgb_alloc();
2830 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2831
Harald Welte4bfdfe72009-06-10 23:11:52 +08002832 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2833
2834 trans->callref = 0;
2835
2836 gsm48_stop_cc_timer(trans);
2837
2838 /* cause */
2839 if (rel->fields & MNCC_F_CAUSE)
2840 encode_cause(msg, 0, &rel->cause);
2841 /* facility */
2842 if (rel->fields & MNCC_F_FACILITY)
2843 encode_facility(msg, 0, &rel->facility);
2844 /* user-user */
2845 if (rel->fields & MNCC_F_USERUSER)
2846 encode_useruser(msg, 0, &rel->useruser);
2847
Harald Weltedcaf5652009-07-23 18:56:43 +02002848 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002849
Harald Welte39e2ead2009-07-23 21:13:03 +02002850 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002851}
2852
2853static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2854{
2855 struct gsm48_hdr *gh = msgb_l3(msg);
2856 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2857 struct tlv_parsed tp;
2858 struct gsm_mncc fac;
2859
2860 memset(&fac, 0, sizeof(struct gsm_mncc));
2861 fac.callref = trans->callref;
2862 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
2863 /* facility */
2864 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2865 fac.fields |= MNCC_F_FACILITY;
2866 decode_facility(&fac.facility,
2867 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2868 }
2869 /* ss-version */
2870 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2871 fac.fields |= MNCC_F_SSVERSION;
2872 decode_ssversion(&fac.ssversion,
2873 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2874 }
2875
Harald Welte596fed42009-07-23 19:06:52 +02002876 return mncc_recvmsg(trans->subscr->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002877}
2878
2879static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2880{
2881 struct gsm_mncc *fac = arg;
2882 struct msgb *msg = gsm48_msgb_alloc();
2883 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2884
Harald Welte4bfdfe72009-06-10 23:11:52 +08002885 gh->msg_type = GSM48_MT_CC_FACILITY;
2886
2887 /* facility */
2888 encode_facility(msg, 1, &fac->facility);
2889
Harald Welte39e2ead2009-07-23 21:13:03 +02002890 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002891}
2892
2893static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2894{
2895 struct gsm_mncc hold;
2896
2897 memset(&hold, 0, sizeof(struct gsm_mncc));
2898 hold.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002899 return mncc_recvmsg(trans->subscr->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002900}
2901
2902static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2903{
2904 struct msgb *msg = gsm48_msgb_alloc();
2905 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2906
Harald Welte4bfdfe72009-06-10 23:11:52 +08002907 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2908
Harald Welte39e2ead2009-07-23 21:13:03 +02002909 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002910}
2911
2912static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2913{
2914 struct gsm_mncc *hold_rej = arg;
2915 struct msgb *msg = gsm48_msgb_alloc();
2916 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2917
Harald Welte4bfdfe72009-06-10 23:11:52 +08002918 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2919
2920 /* cause */
2921 if (hold_rej->fields & MNCC_F_CAUSE)
2922 encode_cause(msg, 1, &hold_rej->cause);
2923 else
2924 encode_cause(msg, 1, &default_cause);
2925
Harald Welte39e2ead2009-07-23 21:13:03 +02002926 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002927}
2928
2929static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2930{
2931 struct gsm_mncc retrieve;
2932
2933 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2934 retrieve.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002935 return mncc_recvmsg(trans->subscr->net, trans, MNCC_RETRIEVE_IND,
2936 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002937}
2938
2939static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2940{
2941 struct msgb *msg = gsm48_msgb_alloc();
2942 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2943
Harald Welte4bfdfe72009-06-10 23:11:52 +08002944 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2945
Harald Welte39e2ead2009-07-23 21:13:03 +02002946 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002947}
2948
2949static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2950{
2951 struct gsm_mncc *retrieve_rej = arg;
2952 struct msgb *msg = gsm48_msgb_alloc();
2953 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2954
Harald Welte4bfdfe72009-06-10 23:11:52 +08002955 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2956
2957 /* cause */
2958 if (retrieve_rej->fields & MNCC_F_CAUSE)
2959 encode_cause(msg, 1, &retrieve_rej->cause);
2960 else
2961 encode_cause(msg, 1, &default_cause);
2962
Harald Welte39e2ead2009-07-23 21:13:03 +02002963 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002964}
2965
2966static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2967{
2968 struct gsm48_hdr *gh = msgb_l3(msg);
2969 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2970 struct tlv_parsed tp;
2971 struct gsm_mncc dtmf;
2972
2973 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2974 dtmf.callref = trans->callref;
2975 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2976 /* keypad facility */
2977 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2978 dtmf.fields |= MNCC_F_KEYPAD;
2979 decode_keypad(&dtmf.keypad,
2980 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2981 }
2982
Harald Welte596fed42009-07-23 19:06:52 +02002983 return mncc_recvmsg(trans->subscr->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002984}
2985
2986static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2987{
2988 struct gsm_mncc *dtmf = arg;
2989 struct msgb *msg = gsm48_msgb_alloc();
2990 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2991
Harald Welte4bfdfe72009-06-10 23:11:52 +08002992 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2993
2994 /* keypad */
2995 if (dtmf->fields & MNCC_F_KEYPAD)
2996 encode_keypad(msg, dtmf->keypad);
2997
Harald Welte39e2ead2009-07-23 21:13:03 +02002998 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002999}
3000
3001static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
3002{
3003 struct gsm_mncc *dtmf = arg;
3004 struct msgb *msg = gsm48_msgb_alloc();
3005 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3006
Harald Welte4bfdfe72009-06-10 23:11:52 +08003007 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
3008
3009 /* cause */
3010 if (dtmf->fields & MNCC_F_CAUSE)
3011 encode_cause(msg, 1, &dtmf->cause);
3012 else
3013 encode_cause(msg, 1, &default_cause);
3014
Harald Welte39e2ead2009-07-23 21:13:03 +02003015 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003016}
3017
3018static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
3019{
3020 struct msgb *msg = gsm48_msgb_alloc();
3021 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3022
Harald Welte4bfdfe72009-06-10 23:11:52 +08003023 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
3024
Harald Welte39e2ead2009-07-23 21:13:03 +02003025 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003026}
3027
3028static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
3029{
3030 struct gsm_mncc dtmf;
3031
3032 memset(&dtmf, 0, sizeof(struct gsm_mncc));
3033 dtmf.callref = trans->callref;
3034
Harald Welte596fed42009-07-23 19:06:52 +02003035 return mncc_recvmsg(trans->subscr->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003036}
3037
3038static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
3039{
3040 struct gsm48_hdr *gh = msgb_l3(msg);
3041 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3042 struct tlv_parsed tp;
3043 struct gsm_mncc modify;
3044
3045 memset(&modify, 0, sizeof(struct gsm_mncc));
3046 modify.callref = trans->callref;
3047 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
3048 /* bearer capability */
3049 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3050 modify.fields |= MNCC_F_BEARER_CAP;
3051 decode_bearer_cap(&modify.bearer_cap,
3052 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3053 }
3054
3055 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
3056
Harald Welte596fed42009-07-23 19:06:52 +02003057 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003058}
3059
3060static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
3061{
3062 struct gsm_mncc *modify = arg;
3063 struct msgb *msg = gsm48_msgb_alloc();
3064 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3065
Harald Welte4bfdfe72009-06-10 23:11:52 +08003066 gh->msg_type = GSM48_MT_CC_MODIFY;
3067
3068 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
3069
3070 /* bearer capability */
3071 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3072
3073 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
3074
Harald Welte39e2ead2009-07-23 21:13:03 +02003075 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003076}
3077
3078static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
3079{
3080 struct gsm48_hdr *gh = msgb_l3(msg);
3081 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3082 struct tlv_parsed tp;
3083 struct gsm_mncc modify;
3084
3085 gsm48_stop_cc_timer(trans);
3086
3087 memset(&modify, 0, sizeof(struct gsm_mncc));
3088 modify.callref = trans->callref;
3089 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
3090 /* bearer capability */
3091 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3092 modify.fields |= MNCC_F_BEARER_CAP;
3093 decode_bearer_cap(&modify.bearer_cap,
3094 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3095 }
3096
3097 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3098
Harald Welte596fed42009-07-23 19:06:52 +02003099 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003100}
3101
3102static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
3103{
3104 struct gsm_mncc *modify = arg;
3105 struct msgb *msg = gsm48_msgb_alloc();
3106 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3107
Harald Welte4bfdfe72009-06-10 23:11:52 +08003108 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
3109
3110 /* bearer capability */
3111 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3112
3113 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3114
Harald Welte39e2ead2009-07-23 21:13:03 +02003115 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003116}
3117
3118static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
3119{
3120 struct gsm48_hdr *gh = msgb_l3(msg);
3121 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3122 struct tlv_parsed tp;
3123 struct gsm_mncc modify;
3124
3125 gsm48_stop_cc_timer(trans);
3126
3127 memset(&modify, 0, sizeof(struct gsm_mncc));
3128 modify.callref = trans->callref;
3129 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
3130 /* bearer capability */
3131 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3132 modify.fields |= GSM48_IE_BEARER_CAP;
3133 decode_bearer_cap(&modify.bearer_cap,
3134 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3135 }
3136 /* cause */
3137 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
3138 modify.fields |= MNCC_F_CAUSE;
3139 decode_cause(&modify.cause,
3140 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
3141 }
3142
3143 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3144
Harald Welte596fed42009-07-23 19:06:52 +02003145 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003146}
3147
3148static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
3149{
3150 struct gsm_mncc *modify = arg;
3151 struct msgb *msg = gsm48_msgb_alloc();
3152 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3153
Harald Welte4bfdfe72009-06-10 23:11:52 +08003154 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
3155
3156 /* bearer capability */
3157 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3158 /* cause */
3159 encode_cause(msg, 1, &modify->cause);
3160
3161 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3162
Harald Welte39e2ead2009-07-23 21:13:03 +02003163 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003164}
3165
3166static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
3167{
3168 struct gsm_mncc *notify = arg;
3169 struct msgb *msg = gsm48_msgb_alloc();
3170 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3171
Harald Welte4bfdfe72009-06-10 23:11:52 +08003172 gh->msg_type = GSM48_MT_CC_NOTIFY;
3173
3174 /* notify */
3175 encode_notify(msg, notify->notify);
3176
Harald Welte39e2ead2009-07-23 21:13:03 +02003177 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003178}
3179
3180static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
3181{
3182 struct gsm48_hdr *gh = msgb_l3(msg);
3183 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3184// struct tlv_parsed tp;
3185 struct gsm_mncc notify;
3186
3187 memset(&notify, 0, sizeof(struct gsm_mncc));
3188 notify.callref = trans->callref;
3189// tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len);
3190 if (payload_len >= 1)
3191 decode_notify(&notify.notify, gh->data);
3192
Harald Welte596fed42009-07-23 19:06:52 +02003193 return mncc_recvmsg(trans->subscr->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003194}
3195
3196static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
3197{
3198 struct gsm_mncc *user = arg;
3199 struct msgb *msg = gsm48_msgb_alloc();
3200 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3201
Harald Welte4bfdfe72009-06-10 23:11:52 +08003202 gh->msg_type = GSM48_MT_CC_USER_INFO;
3203
3204 /* user-user */
3205 if (user->fields & MNCC_F_USERUSER)
3206 encode_useruser(msg, 1, &user->useruser);
3207 /* more data */
3208 if (user->more)
3209 encode_more(msg);
3210
Harald Welte39e2ead2009-07-23 21:13:03 +02003211 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003212}
3213
3214static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
3215{
3216 struct gsm48_hdr *gh = msgb_l3(msg);
3217 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3218 struct tlv_parsed tp;
3219 struct gsm_mncc user;
3220
3221 memset(&user, 0, sizeof(struct gsm_mncc));
3222 user.callref = trans->callref;
3223 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
3224 /* user-user */
3225 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
3226 user.fields |= MNCC_F_USERUSER;
3227 decode_useruser(&user.useruser,
3228 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
3229 }
3230 /* more data */
3231 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
3232 user.more = 1;
3233
Harald Welte596fed42009-07-23 19:06:52 +02003234 return mncc_recvmsg(trans->subscr->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003235}
3236
3237static int gsm48_lchan_modify(struct gsm_trans *trans, void *arg)
3238{
3239 struct gsm_mncc *mode = arg;
Harald Welte13cac662009-07-29 12:10:35 +02003240 int rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003241
Harald Welte13cac662009-07-29 12:10:35 +02003242 rc = gsm48_tx_chan_mode_modify(trans->lchan, mode->lchan_mode);
3243 if (rc < 0)
3244 return rc;
3245
3246 /* FIXME: we not only need to do this after mode modify, but
3247 * also after channel activation */
3248 if (is_ipaccess_bts(trans->lchan->ts->trx->bts) &&
3249 mode->lchan_mode != GSM48_CMODE_SIGN)
3250 rc = rsl_ipacc_bind(trans->lchan);
3251
3252 return rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003253}
3254
3255static struct downstate {
3256 u_int32_t states;
3257 int type;
3258 int (*rout) (struct gsm_trans *trans, void *arg);
3259} downstatelist[] = {
3260 /* mobile originating call establishment */
3261 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
3262 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc},
3263 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
3264 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
3265 {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 */
3266 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
3267 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
3268 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
3269 /* mobile terminating call establishment */
3270 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
3271 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
3272 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
3273 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
3274 /* signalling during call */
3275 {SBIT(GSM_CSTATE_ACTIVE),
3276 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
3277 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
3278 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
3279 {ALL_STATES,
3280 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
3281 {ALL_STATES,
3282 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
3283 {ALL_STATES,
3284 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
3285 {SBIT(GSM_CSTATE_ACTIVE),
3286 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
3287 {SBIT(GSM_CSTATE_ACTIVE),
3288 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
3289 {SBIT(GSM_CSTATE_ACTIVE),
3290 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
3291 {SBIT(GSM_CSTATE_ACTIVE),
3292 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
3293 {SBIT(GSM_CSTATE_ACTIVE),
3294 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
3295 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3296 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
3297 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3298 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
3299 {SBIT(GSM_CSTATE_ACTIVE),
3300 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
3301 /* clearing */
3302 {SBIT(GSM_CSTATE_INITIATED),
3303 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
3304 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
3305 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
3306 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3307 MNCC_REL_REQ, gsm48_cc_tx_release},
3308 /* special */
3309 {ALL_STATES,
3310 MNCC_LCHAN_MODIFY, gsm48_lchan_modify},
3311};
3312
3313#define DOWNSLLEN \
3314 (sizeof(downstatelist) / sizeof(struct downstate))
3315
3316
3317int mncc_send(struct gsm_network *net, int msg_type, void *arg)
3318{
Harald Welte1a6f7982009-08-09 18:52:33 +02003319 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003320 struct gsm_trans *trans = NULL, *transt;
3321 struct gsm_subscriber *subscr;
Harald Welte1a6f7982009-08-09 18:52:33 +02003322 struct gsm_lchan *lchan = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003323 struct gsm_bts *bts = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003324 struct gsm_mncc *data = arg, rel;
3325
3326 /* handle special messages */
3327 switch(msg_type) {
3328 case MNCC_BRIDGE:
3329 return tch_bridge(net, arg);
3330 case MNCC_FRAME_DROP:
3331 return tch_recv(net, arg, 0);
3332 case MNCC_FRAME_RECV:
3333 return tch_recv(net, arg, 1);
3334 case GSM_TRAU_FRAME:
3335 return tch_frame(net, arg);
3336 }
3337
3338 memset(&rel, 0, sizeof(struct gsm_mncc));
3339 rel.callref = data->callref;
3340
3341 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02003342 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003343
3344 /* Callref unknown */
3345 if (!trans) {
Harald Welte4a3464c2009-07-04 10:11:24 +02003346 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003347 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3348 "Received '%s' from MNCC with "
3349 "unknown callref %d\n", data->called.number,
3350 get_mncc_name(msg_type), data->callref);
3351 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003352 return mncc_release_ind(net, NULL, data->callref,
3353 GSM48_CAUSE_LOC_PRN_S_LU,
3354 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003355 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02003356 if (!data->called.number[0] && !data->imsi[0]) {
3357 DEBUGP(DCC, "(bts - trx - ts - ti) "
3358 "Received '%s' from MNCC with "
3359 "no number or IMSI\n", get_mncc_name(msg_type));
3360 /* Invalid number */
3361 return mncc_release_ind(net, NULL, data->callref,
3362 GSM48_CAUSE_LOC_PRN_S_LU,
3363 GSM48_CC_CAUSE_INV_NR_FORMAT);
3364 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003365 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02003366 if (data->called.number[0])
Harald Welte9176bd42009-07-23 18:46:00 +02003367 subscr = subscr_get_by_extension(net,
3368 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02003369 else
Harald Welte9176bd42009-07-23 18:46:00 +02003370 subscr = subscr_get_by_imsi(net, data->imsi);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003371 /* If subscriber is not found */
3372 if (!subscr) {
3373 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3374 "Received '%s' from MNCC with "
3375 "unknown subscriber %s\n", data->called.number,
3376 get_mncc_name(msg_type), data->called.number);
3377 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003378 return mncc_release_ind(net, NULL, data->callref,
3379 GSM48_CAUSE_LOC_PRN_S_LU,
3380 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003381 }
3382 /* If subscriber is not "attached" */
3383 if (!subscr->lac) {
3384 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3385 "Received '%s' from MNCC with "
3386 "detached subscriber %s\n", data->called.number,
3387 get_mncc_name(msg_type), data->called.number);
3388 subscr_put(subscr);
3389 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003390 return mncc_release_ind(net, NULL, data->callref,
3391 GSM48_CAUSE_LOC_PRN_S_LU,
3392 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003393 }
3394 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003395 trans = trans_alloc(subscr, GSM48_PDISC_CC, 0xff, data->callref);
3396 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003397 DEBUGP(DCC, "No memory for trans.\n");
3398 subscr_put(subscr);
3399 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003400 mncc_release_ind(net, NULL, data->callref,
3401 GSM48_CAUSE_LOC_PRN_S_LU,
3402 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003403 return -ENOMEM;
3404 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003405 /* Find lchan */
Harald Welte1a6f7982009-08-09 18:52:33 +02003406 lchan = lchan_for_subscr(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003407 /* If subscriber has no lchan */
3408 if (!lchan) {
3409 /* find transaction with this subscriber already paging */
3410 llist_for_each_entry(transt, &net->trans_list, entry) {
3411 /* Transaction of our lchan? */
3412 if (transt == trans ||
3413 transt->subscr != subscr)
3414 continue;
3415 DEBUGP(DCC, "(bts %d trx - ts - ti -- sub %s) "
3416 "Received '%s' from MNCC with "
3417 "unallocated channel, paging already "
3418 "started.\n", bts->nr,
3419 data->called.number,
3420 get_mncc_name(msg_type));
3421 return 0;
3422 }
3423 /* store setup informations until paging was successfull */
Harald Weltedcaf5652009-07-23 18:56:43 +02003424 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Harald Weltea1b28582009-08-01 19:31:47 +02003425 /* Trigger paging */
3426 paging_request(net, subscr, RSL_CHANNEED_TCH_F,
3427 setup_trig_pag_evt, subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003428 return 0;
3429 }
3430 /* Assign lchan */
3431 trans->lchan = lchan;
3432 use_lchan(lchan);
3433 }
3434 lchan = trans->lchan;
3435
3436 /* if paging did not respond yet */
3437 if (!lchan) {
3438 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3439 "Received '%s' from MNCC in paging state\n",
3440 (trans->subscr)?(trans->subscr->extension):"-",
3441 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003442 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3443 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003444 if (msg_type == MNCC_REL_REQ)
3445 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3446 else
3447 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3448 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003449 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003450 return rc;
3451 }
3452
3453 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x sub %s) "
3454 "Received '%s' from MNCC in state %d (%s)\n",
3455 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3456 trans->transaction_id,
3457 (lchan->subscr)?(lchan->subscr->extension):"-",
Harald Weltedcaf5652009-07-23 18:56:43 +02003458 get_mncc_name(msg_type), trans->cc.state,
3459 cc_state_names[trans->cc.state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003460
3461 /* Find function for current state and message */
3462 for (i = 0; i < DOWNSLLEN; i++)
3463 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003464 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003465 break;
3466 if (i == DOWNSLLEN) {
3467 DEBUGP(DCC, "Message unhandled at this state.\n");
3468 return 0;
3469 }
3470
3471 rc = downstatelist[i].rout(trans, arg);
3472
3473 return rc;
3474}
3475
3476
3477static struct datastate {
3478 u_int32_t states;
3479 int type;
3480 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3481} datastatelist[] = {
3482 /* mobile originating call establishment */
3483 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3484 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3485 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3486 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3487 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3488 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3489 /* mobile terminating call establishment */
3490 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3491 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3492 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3493 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
3494 {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 */
3495 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3496 /* signalling during call */
3497 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3498 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3499 {SBIT(GSM_CSTATE_ACTIVE),
3500 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3501 {ALL_STATES,
3502 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3503 {ALL_STATES,
3504 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3505 {ALL_STATES,
3506 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3507 {SBIT(GSM_CSTATE_ACTIVE),
3508 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3509 {SBIT(GSM_CSTATE_ACTIVE),
3510 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3511 {SBIT(GSM_CSTATE_ACTIVE),
3512 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3513 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3514 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3515 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3516 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3517 {SBIT(GSM_CSTATE_ACTIVE),
3518 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3519 /* clearing */
3520 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3521 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3522 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3523 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3524 {ALL_STATES, /* 5.4.3.4 */
3525 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3526};
3527
3528#define DATASLLEN \
3529 (sizeof(datastatelist) / sizeof(struct datastate))
3530
Harald Welte4bc90a12008-12-27 16:32:52 +00003531static int gsm0408_rcv_cc(struct msgb *msg)
3532{
3533 struct gsm48_hdr *gh = msgb_l3(msg);
3534 u_int8_t msg_type = gh->msg_type & 0xbf;
Harald Welte6f5aee02009-07-23 21:21:14 +02003535 u_int8_t transaction_id = ((gh->proto_discr & 0xf0) ^ 0x80) >> 4; /* flip */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003536 struct gsm_lchan *lchan = msg->lchan;
Harald Weltedcaf5652009-07-23 18:56:43 +02003537 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003538 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003539
Harald Welte4bfdfe72009-06-10 23:11:52 +08003540 if (msg_type & 0x80) {
3541 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3542 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003543 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003544
3545 /* Find transaction */
Harald Welteb8b40732009-07-23 21:58:40 +02003546 trans = trans_find_by_id(lchan->subscr, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003547
Harald Welte6f5aee02009-07-23 21:21:14 +02003548 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003549 "Received '%s' from MS in state %d (%s)\n",
3550 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3551 transaction_id, (lchan->subscr)?(lchan->subscr->extension):"-",
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +02003552 gsm0408_cc_msg_names[msg_type], trans?(trans->cc.state):0,
Harald Weltedcaf5652009-07-23 18:56:43 +02003553 cc_state_names[trans?(trans->cc.state):0]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003554
3555 /* Create transaction */
3556 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003557 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003558 "creating new trans.\n", transaction_id);
3559 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003560 trans = trans_alloc(lchan->subscr, GSM48_PDISC_CC,
3561 transaction_id, new_callref++);
3562 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003563 DEBUGP(DCC, "No memory for trans.\n");
3564 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02003565 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003566 GSM48_MT_CC_RELEASE_COMPL);
3567 return -ENOMEM;
3568 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003569 /* Assign transaction */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003570 trans->lchan = lchan;
3571 use_lchan(lchan);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003572 }
3573
3574 /* find function for current state and message */
3575 for (i = 0; i < DATASLLEN; i++)
3576 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003577 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003578 break;
3579 if (i == DATASLLEN) {
3580 DEBUGP(DCC, "Message unhandled at this state.\n");
3581 return 0;
3582 }
3583
3584 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003585
3586 return rc;
3587}
3588
Harald Welte52b1f982008-12-23 20:25:15 +00003589/* 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 +02003590int gsm0408_rcvmsg(struct msgb *msg, u_int8_t link_id)
Harald Welte52b1f982008-12-23 20:25:15 +00003591{
3592 struct gsm48_hdr *gh = msgb_l3(msg);
3593 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00003594 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00003595
3596 switch (pdisc) {
3597 case GSM48_PDISC_CC:
3598 rc = gsm0408_rcv_cc(msg);
3599 break;
3600 case GSM48_PDISC_MM:
3601 rc = gsm0408_rcv_mm(msg);
3602 break;
3603 case GSM48_PDISC_RR:
3604 rc = gsm0408_rcv_rr(msg);
3605 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003606 case GSM48_PDISC_SMS:
Harald Welte (local)daef6062009-08-14 11:41:12 +02003607 rc = gsm0411_rcv_sms(msg, link_id);
Harald Weltebcae43f2008-12-27 21:45:37 +00003608 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003609 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003610 case GSM48_PDISC_SM_GPRS:
Harald Welte52b1f982008-12-23 20:25:15 +00003611 fprintf(stderr, "Unimplemented GSM 04.08 discriminator 0x%02d\n",
3612 pdisc);
3613 break;
3614 default:
3615 fprintf(stderr, "Unknown GSM 04.08 discriminator 0x%02d\n",
3616 pdisc);
3617 break;
3618 }
3619
3620 return rc;
3621}
Harald Welte8470bf22008-12-25 23:28:35 +00003622
Harald Welte4bfdfe72009-06-10 23:11:52 +08003623/* dequeue messages to layer 4 */
3624int bsc_upqueue(struct gsm_network *net)
3625{
3626 struct gsm_mncc *mncc;
3627 struct msgb *msg;
3628 int work = 0;
3629
3630 if (net)
3631 while ((msg = msgb_dequeue(&net->upqueue))) {
3632 mncc = (struct gsm_mncc *)msg->data;
3633 if (net->mncc_recv)
3634 net->mncc_recv(net, mncc->msg_type, mncc);
3635 work = 1; /* work done */
Harald Welte316c8252009-06-26 19:40:48 +02003636 talloc_free(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003637 }
3638
3639 return work;
3640}
Harald Weltedcaf5652009-07-23 18:56:43 +02003641
Harald Welte805f6442009-07-28 18:25:29 +02003642/*
3643 * This will be ran by the linker when loading the DSO. We use it to
3644 * do system initialization, e.g. registration of signal handlers.
3645 */
3646static __attribute__((constructor)) void on_dso_load_0408(void)
3647{
Harald Welte805f6442009-07-28 18:25:29 +02003648 register_signal_handler(SS_LCHAN, gsm0408_handle_lchan_signal, NULL);
3649 register_signal_handler(SS_ABISIP, handle_abisip_signal, NULL);
3650}