blob: 0bb08fef7485052909580a12adc757bb628bbce4 [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
26#include "HNBAP-PDU.h"
27#include "hnbap_common.h"
Harald Weltec060b7b2015-09-07 22:40:41 +020028#include "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) {
129 LOGP(DMAIN, LOGL_ERROR, "Error encoding type: %s\n",
130 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{
144
145 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) {
155 LOGP(DMAIN, 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
Harald Welte8dacb072015-12-16 20:27:14 +0100159 return _hnbap_gen_msg(&pdu);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200160}
Harald Welte27f9c4a2015-08-30 22:47:18 +0200161
Harald Welte339b8e22015-08-30 23:08:32 +0200162struct msgb *hnbap_generate_successful_outcome(
Harald Welte27f9c4a2015-08-30 22:47:18 +0200163 e_ProcedureCode procedureCode,
164 Criticality_t criticality,
165 asn_TYPE_descriptor_t * td,
166 void *sptr)
167{
168
169 HNBAP_PDU_t pdu;
Harald Weltec060b7b2015-09-07 22:40:41 +0200170 int rc;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200171
172 memset(&pdu, 0, sizeof(HNBAP_PDU_t));
Harald Welte8dacb072015-12-16 20:27:14 +0100173
Harald Welte27f9c4a2015-08-30 22:47:18 +0200174 pdu.present = HNBAP_PDU_PR_successfulOutcome;
175 pdu.choice.successfulOutcome.procedureCode = procedureCode;
176 pdu.choice.successfulOutcome.criticality = criticality;
Harald Weltec060b7b2015-09-07 22:40:41 +0200177 rc = ANY_fromType_aper(&pdu.choice.successfulOutcome.value, td, sptr);
178 if (rc < 0) {
179 LOGP(DMAIN, LOGL_ERROR, "Error in ANY_fromType_aper\n");
Harald Weltec060b7b2015-09-07 22:40:41 +0200180 return NULL;
181 }
Harald Welte27f9c4a2015-08-30 22:47:18 +0200182
Harald Welte8dacb072015-12-16 20:27:14 +0100183 return _hnbap_gen_msg(&pdu);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200184}
185
Harald Weltecbaaeef2015-12-16 20:17:26 +0100186struct msgb *hnbap_generate_unsuccessful_outcome(
187 e_ProcedureCode procedureCode,
188 Criticality_t criticality,
189 asn_TYPE_descriptor_t * td,
190 void *sptr)
Harald Welte27f9c4a2015-08-30 22:47:18 +0200191{
192
193 HNBAP_PDU_t pdu;
Harald Weltecbaaeef2015-12-16 20:17:26 +0100194 int rc;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200195
196 memset(&pdu, 0, sizeof(HNBAP_PDU_t));
Harald Welte8dacb072015-12-16 20:27:14 +0100197
Harald Welte27f9c4a2015-08-30 22:47:18 +0200198 pdu.present = HNBAP_PDU_PR_unsuccessfulOutcome;
Harald Weltecbaaeef2015-12-16 20:17:26 +0100199 pdu.choice.unsuccessfulOutcome.procedureCode = procedureCode;
200 pdu.choice.unsuccessfulOutcome.criticality = criticality;
201 rc = ANY_fromType_aper(&pdu.choice.unsuccessfulOutcome.value, td, sptr);
202 if (rc < 0) {
203 LOGP(DMAIN, LOGL_ERROR, "Error in ANY_fromType_aper\n");
Harald Weltecbaaeef2015-12-16 20:17:26 +0100204 return NULL;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200205 }
206
Harald Welte8dacb072015-12-16 20:27:14 +0100207 return _hnbap_gen_msg(&pdu);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200208}
Harald Welte27f9c4a2015-08-30 22:47:18 +0200209
210IE_t *hnbap_new_ie(ProtocolIE_ID_t id,
211 Criticality_t criticality,
212 asn_TYPE_descriptor_t * type, void *sptr)
213{
214
215 IE_t *buff;
216
217 if ((buff = malloc(sizeof(IE_t))) == NULL) {
218 // Possible error on malloc
219 return NULL;
220 }
221 memset((void *)buff, 0, sizeof(IE_t));
222
223 buff->id = id;
224 buff->criticality = criticality;
225
226 ANY_fromType_aper(&buff->value, type, sptr);
227
228 if (asn1_xer_print)
229 if (xer_fprint(stdout, &asn_DEF_IE, buff) < 0) {
230 free(buff);
231 return NULL;
232 }
233
234 return buff;
235}