blob: f8cfb13e03a8e2f081e8e11e8929c7fcbca98699 [file] [log] [blame]
Harald Welte77847ad2015-10-06 22:07:04 +02001/* HNBAP common code */
2
3/* (C) 2015 by Harald Welte <laforge@gnumonks.org>
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21
Harald Welte27f9c4a2015-08-30 22:47:18 +020022#include <stdint.h>
23
24#include <osmocom/core/msgb.h>
25
Harald Weltebea34f22016-01-05 14:24:08 +010026#include <osmocom/hnbap/HNBAP-PDU.h>
Neels Hofmeyr83457922016-08-26 23:56:44 +020027#include <osmocom/hnbap/hnbap_common.h>
Neels Hofmeyrdf63de22016-08-18 13:13:55 +020028#include <osmocom/iuh/hnbgw.h>
Harald Welte27f9c4a2015-08-30 22:47:18 +020029
Harald Welte3af1db82015-09-11 17:03:16 +020030static const struct value_string hnbap_cause_radio_vals[] = {
31 { CauseRadioNetwork_overload, "overload" },
32 { CauseRadioNetwork_unauthorised_Location, "unauthorized location" },
33 { CauseRadioNetwork_unauthorised_HNB, "unauthorized HNB" },
34 { CauseRadioNetwork_hNB_parameter_mismatch, "HNB parameter mismatch" },
35 { CauseRadioNetwork_invalid_UE_identity, "invalid UE identity" },
36 { CauseRadioNetwork_uE_not_allowed_on_this_HNB,
37 "UE not allowed on this HNB" },
38 { CauseRadioNetwork_uE_unauthorised, "unauthorised UE" },
39 { CauseRadioNetwork_connection_with_UE_lost, "connection with UE lost" },
40 { CauseRadioNetwork_ue_RRC_release, "UE RRC release" },
41 { CauseRadioNetwork_hNB_not_registered, "HNB not registered" },
42 { CauseRadioNetwork_unspecified, "unspecified" },
43 { CauseRadioNetwork_normal, "normal" },
44 { CauseRadioNetwork_uE_relocated, "UE relocated" },
45 { CauseRadioNetwork_ue_registered_in_another_HNB,
46 "UE registered in another HNB" },
47 { 0, NULL }
48};
49
50static const struct value_string hnbap_cause_transp_vals[] = {
51 { CauseTransport_transport_resource_unavailable,
52 "transport resource unavailable" },
53 { CauseTransport_unspecified, "unspecified" },
54 { 0, NULL }
55};
56
57static const struct value_string hnbap_cause_prot_vals[] = {
58 { CauseProtocol_transfer_syntax_error, "syntax error" },
59 { CauseProtocol_abstract_syntax_error_reject,
60 "abstract syntax error; reject" },
61 { CauseProtocol_abstract_syntax_error_ignore_and_notify,
62 "abstract syntax error; ignore and notify" },
63 { CauseProtocol_message_not_compatible_with_receiver_state,
64 "message not compatible with receiver state" },
65 { CauseProtocol_semantic_error, "semantic error" },
66 { CauseProtocol_unspecified, "unspecified" },
67 { CauseProtocol_abstract_syntax_error_falsely_constructed_message,
68 "falsely constructed message" },
69 { 0, NULL }
70};
71
72static const struct value_string hnbap_cause_misc_vals[] = {
73 { CauseMisc_processing_overload, "processing overload" },
74 { CauseMisc_hardware_failure, "hardware failure" },
75 { CauseMisc_o_and_m_intervention, "OAM intervention" },
76 { CauseMisc_unspecified, "unspecified" },
77 { 0, NULL }
78};
79
80char *hnbap_cause_str(Cause_t *cause)
81{
82 static char buf[32];
83
84 switch (cause->present) {
85 case Cause_PR_radioNetwork:
86 snprintf(buf, sizeof(buf), "radio(%s)",
87 get_value_string(hnbap_cause_radio_vals,
88 cause->choice.radioNetwork));
89 break;
90 case Cause_PR_transport:
91 snprintf(buf, sizeof(buf), "transport(%s)",
92 get_value_string(hnbap_cause_transp_vals,
93 cause->choice.transport));
94 break;
95 case Cause_PR_protocol:
96 snprintf(buf, sizeof(buf), "protocol(%s)",
97 get_value_string(hnbap_cause_prot_vals,
98 cause->choice.protocol));
99 break;
100 case Cause_PR_misc:
101 snprintf(buf, sizeof(buf), "misc(%s)",
102 get_value_string(hnbap_cause_misc_vals,
103 cause->choice.misc));
104 break;
105 }
106 return buf;
107}
108
109
Harald Welte27f9c4a2015-08-30 22:47:18 +0200110int asn_debug = 0;
111int asn1_xer_print = 0;
112
113static struct msgb *hnbap_msgb_alloc(void)
114{
115 return msgb_alloc(1024, "HNBAP Tx");
116}
117
Harald Welte8dacb072015-12-16 20:27:14 +0100118static struct msgb *_hnbap_gen_msg(HNBAP_PDU_t *pdu)
119{
Harald Welte462db352015-12-16 23:06:59 +0100120 struct msgb *msg = hnbap_msgb_alloc();
Harald Welte8dacb072015-12-16 20:27:14 +0100121 asn_enc_rval_t rval;
122
123 if (!msg)
124 return NULL;
125
126 rval = aper_encode_to_buffer(&asn_DEF_HNBAP_PDU, pdu,
127 msg->data, msgb_tailroom(msg));
128 if (rval.encoded < 0) {
Harald Weltef42317b2015-12-23 15:36:31 +0100129 LOGP(DHNBAP, LOGL_ERROR, "Error encoding type: %s\n",
Harald Welte8dacb072015-12-16 20:27:14 +0100130 rval.failed_type->name);
131
132 }
133
134 msgb_put(msg, rval.encoded/8);
135
136 return msg;
137}
138
Daniel Willmann0e8ef672015-12-07 17:19:40 +0100139struct msgb *hnbap_generate_initiating_message(
Harald Welte27f9c4a2015-08-30 22:47:18 +0200140 e_ProcedureCode procedureCode,
141 Criticality_t criticality,
142 asn_TYPE_descriptor_t * td, void *sptr)
143{
Daniel Willmann59d17d82015-12-17 17:56:56 +0100144 struct msgb *msg;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200145 HNBAP_PDU_t pdu;
Daniel Willmann0e8ef672015-12-07 17:19:40 +0100146 int rc;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200147
148 memset(&pdu, 0, sizeof(HNBAP_PDU_t));
149
150 pdu.present = HNBAP_PDU_PR_initiatingMessage;
151 pdu.choice.initiatingMessage.procedureCode = procedureCode;
152 pdu.choice.initiatingMessage.criticality = criticality;
Daniel Willmann0e8ef672015-12-07 17:19:40 +0100153 rc = ANY_fromType_aper(&pdu.choice.initiatingMessage.value, td, sptr);
154 if (rc < 0) {
Harald Weltef42317b2015-12-23 15:36:31 +0100155 LOGP(DHNBAP, LOGL_ERROR, "Error in ANY_fromType_aper\n");
Daniel Willmann0e8ef672015-12-07 17:19:40 +0100156 return NULL;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200157 }
158
Daniel Willmann59d17d82015-12-17 17:56:56 +0100159 msg = _hnbap_gen_msg(&pdu);
160 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_HNBAP_PDU, &pdu);
161
162 return msg;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200163}
Harald Welte27f9c4a2015-08-30 22:47:18 +0200164
Harald Welte339b8e22015-08-30 23:08:32 +0200165struct msgb *hnbap_generate_successful_outcome(
Harald Welte27f9c4a2015-08-30 22:47:18 +0200166 e_ProcedureCode procedureCode,
167 Criticality_t criticality,
168 asn_TYPE_descriptor_t * td,
169 void *sptr)
170{
Daniel Willmann59d17d82015-12-17 17:56:56 +0100171 struct msgb *msg;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200172 HNBAP_PDU_t pdu;
Harald Weltec060b7b2015-09-07 22:40:41 +0200173 int rc;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200174
175 memset(&pdu, 0, sizeof(HNBAP_PDU_t));
Harald Welte8dacb072015-12-16 20:27:14 +0100176
Harald Welte27f9c4a2015-08-30 22:47:18 +0200177 pdu.present = HNBAP_PDU_PR_successfulOutcome;
178 pdu.choice.successfulOutcome.procedureCode = procedureCode;
179 pdu.choice.successfulOutcome.criticality = criticality;
Harald Weltec060b7b2015-09-07 22:40:41 +0200180 rc = ANY_fromType_aper(&pdu.choice.successfulOutcome.value, td, sptr);
181 if (rc < 0) {
Harald Weltef42317b2015-12-23 15:36:31 +0100182 LOGP(DHNBAP, LOGL_ERROR, "Error in ANY_fromType_aper\n");
Harald Weltec060b7b2015-09-07 22:40:41 +0200183 return NULL;
184 }
Harald Welte27f9c4a2015-08-30 22:47:18 +0200185
Daniel Willmann59d17d82015-12-17 17:56:56 +0100186 msg = _hnbap_gen_msg(&pdu);
187 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_HNBAP_PDU, &pdu);
188
189 return msg;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200190}
191
Harald Weltecbaaeef2015-12-16 20:17:26 +0100192struct msgb *hnbap_generate_unsuccessful_outcome(
193 e_ProcedureCode procedureCode,
194 Criticality_t criticality,
195 asn_TYPE_descriptor_t * td,
196 void *sptr)
Harald Welte27f9c4a2015-08-30 22:47:18 +0200197{
Daniel Willmann59d17d82015-12-17 17:56:56 +0100198 struct msgb *msg;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200199 HNBAP_PDU_t pdu;
Harald Weltecbaaeef2015-12-16 20:17:26 +0100200 int rc;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200201
202 memset(&pdu, 0, sizeof(HNBAP_PDU_t));
Harald Welte8dacb072015-12-16 20:27:14 +0100203
Harald Welte27f9c4a2015-08-30 22:47:18 +0200204 pdu.present = HNBAP_PDU_PR_unsuccessfulOutcome;
Harald Weltecbaaeef2015-12-16 20:17:26 +0100205 pdu.choice.unsuccessfulOutcome.procedureCode = procedureCode;
206 pdu.choice.unsuccessfulOutcome.criticality = criticality;
207 rc = ANY_fromType_aper(&pdu.choice.unsuccessfulOutcome.value, td, sptr);
208 if (rc < 0) {
Harald Weltef42317b2015-12-23 15:36:31 +0100209 LOGP(DHNBAP, LOGL_ERROR, "Error in ANY_fromType_aper\n");
Harald Weltecbaaeef2015-12-16 20:17:26 +0100210 return NULL;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200211 }
212
Daniel Willmann59d17d82015-12-17 17:56:56 +0100213 msg = _hnbap_gen_msg(&pdu);
214 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_HNBAP_PDU, &pdu);
215
216 return msg;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200217}
Harald Welte27f9c4a2015-08-30 22:47:18 +0200218
219IE_t *hnbap_new_ie(ProtocolIE_ID_t id,
220 Criticality_t criticality,
221 asn_TYPE_descriptor_t * type, void *sptr)
222{
223
224 IE_t *buff;
Harald Welte04329dc2015-12-18 15:17:21 +0100225 int rc;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200226
Harald Welte8526d152015-12-18 13:41:39 +0100227 if ((buff = CALLOC(1, sizeof(IE_t))) == NULL) {
Harald Welte27f9c4a2015-08-30 22:47:18 +0200228 // Possible error on malloc
229 return NULL;
230 }
Harald Welte27f9c4a2015-08-30 22:47:18 +0200231
232 buff->id = id;
233 buff->criticality = criticality;
234
Harald Welte04329dc2015-12-18 15:17:21 +0100235 rc = ANY_fromType_aper(&buff->value, type, sptr);
236 if (rc < 0) {
Harald Weltef42317b2015-12-23 15:36:31 +0100237 LOGP(DHNBAP, LOGL_ERROR, "Error in ANY_fromType_aper\n");
Harald Welte04329dc2015-12-18 15:17:21 +0100238 FREEMEM(buff);
239 return NULL;
240 }
Harald Welte27f9c4a2015-08-30 22:47:18 +0200241
242 if (asn1_xer_print)
243 if (xer_fprint(stdout, &asn_DEF_IE, buff) < 0) {
Harald Welte62939132015-12-18 14:57:04 +0100244 FREEMEM(buff);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200245 return NULL;
246 }
247
248 return buff;
249}