blob: 71babdf7c48ce54ad0ff80cb0973da16437f02ef [file] [log] [blame]
Holger Hans Peter Freyther4f448c92010-07-05 16:02:04 +08001/* (C) 2009-2010 by Holger Hans Peter Freyther <zecke@selfish.org>
2 * (C) 2009-2010 by On-Waves
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#include <openbsc/osmo_bsc.h>
Holger Hans Peter Freyther7225fd12010-11-03 19:03:35 +010022#include <openbsc/debug.h>
23
Holger Hans Peter Freyther2d2c9102010-11-04 11:59:41 +010024#include <osmocore/gsm0808.h>
25
Holger Hans Peter Freyther7225fd12010-11-03 19:03:35 +010026#define return_when_not_connected(conn) \
27 if (!conn->sccp_con) {\
28 LOGP(DMSC, LOGL_ERROR, "MSC Connection not present.\n"); \
29 return; \
30 }
31
32#define return_when_not_connected_val(conn, ret) \
33 if (!conn->sccp_con) {\
34 LOGP(DMSC, LOGL_ERROR, "MSC Connection not present.\n"); \
35 return ret; \
36 }
Holger Hans Peter Freyther4f448c92010-07-05 16:02:04 +080037
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080038static void bsc_sapi_n_reject(struct gsm_subscriber_connection *conn, int dlci)
39{
Holger Hans Peter Freyther7225fd12010-11-03 19:03:35 +010040 return_when_not_connected(conn);
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080041}
42
43static void bsc_cipher_mode_compl(struct gsm_subscriber_connection *conn,
44 struct msgb *msg, uint8_t chosen_encr)
45{
Holger Hans Peter Freyther2d2c9102010-11-04 11:59:41 +010046 struct msgb *resp;
Holger Hans Peter Freyther7225fd12010-11-03 19:03:35 +010047 return_when_not_connected(conn);
Holger Hans Peter Freyther2d2c9102010-11-04 11:59:41 +010048
49 LOGP(DMSC, LOGL_DEBUG, "CIPHER MODE COMPLETE from MS, forwarding to MSC\n");
50 resp = gsm0808_create_cipher_complete(msg, chosen_encr);
51 if (!resp) {
52 LOGP(DMSC, LOGL_ERROR, "Creating the response failed.\n");
53 return;
54 }
55
56 bsc_queue_for_msc(conn, resp);
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080057}
58
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080059static int bsc_compl_l3(struct gsm_subscriber_connection *conn, struct msgb *msg,
60 uint16_t chosen_channel)
61{
62 return BSC_API_CONN_POL_REJECT;
63}
64
Holger Hans Peter Freyther46caa302010-11-04 12:18:00 +010065static void bsc_dtap(struct gsm_subscriber_connection *conn, uint8_t link_id, struct msgb *msg)
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080066{
Holger Hans Peter Freyther7225fd12010-11-03 19:03:35 +010067 return_when_not_connected(conn);
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080068}
69
Holger Hans Peter Freytherb0941712010-11-04 12:06:57 +010070static void bsc_assign_compl(struct gsm_subscriber_connection *conn, uint8_t rr_cause,
71 uint8_t chosen_channel, uint8_t encr_alg_id,
72 uint8_t speech_model)
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080073{
Holger Hans Peter Freytherda488ae2010-11-04 12:09:45 +010074 struct msgb *resp;
Holger Hans Peter Freyther7225fd12010-11-03 19:03:35 +010075 return_when_not_connected(conn);
Holger Hans Peter Freytherda488ae2010-11-04 12:09:45 +010076
77 resp = gsm0808_create_assignment_completed(rr_cause, chosen_channel,
78 encr_alg_id, speech_model);
79 if (!resp) {
80 LOGP(DMSC, LOGL_ERROR, "Failed to allocate response.\n");
81 return;
82 }
83
84 bsc_queue_for_msc(conn, resp);
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080085}
86
Holger Hans Peter Freyther45b575f2010-11-05 10:37:17 +010087static void bsc_assign_fail(struct gsm_subscriber_connection *conn,
88 uint8_t cause, uint8_t *rr_cause)
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080089{
Holger Hans Peter Freyther7225fd12010-11-03 19:03:35 +010090 return_when_not_connected(conn);
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080091}
92
Holger Hans Peter Freyther05c68842010-11-03 19:01:58 +010093static int bsc_clear_request(struct gsm_subscriber_connection *conn, uint32_t cause)
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080094{
Holger Hans Peter Freyther7225fd12010-11-03 19:03:35 +010095 return_when_not_connected_val(conn, 1);
Holger Hans Peter Freyther05c68842010-11-03 19:01:58 +010096 return 0;
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080097}
98
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +080099static struct bsc_api bsc_handler = {
100 .sapi_n_reject = bsc_sapi_n_reject,
101 .cipher_mode_compl = bsc_cipher_mode_compl,
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +0800102 .compl_l3 = bsc_compl_l3,
103 .dtap = bsc_dtap,
104 .assign_compl = bsc_assign_compl,
105 .assign_fail = bsc_assign_fail,
106 .clear_request = bsc_clear_request,
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +0800107};
108
Holger Hans Peter Freyther4f448c92010-07-05 16:02:04 +0800109struct bsc_api *osmo_bsc_api()
110{
Holger Hans Peter Freyther32aaef62010-09-16 17:26:35 +0800111 return &bsc_handler;
Holger Hans Peter Freyther4f448c92010-07-05 16:02:04 +0800112}