blob: 02860a7b567e46ee596117b95f1f1ccaf56d54bb [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
118#if 0
119ssize_t s1ap_generate_initiating_message(uint8_t ** buffer,
120 uint32_t * length,
121 e_ProcedureCode procedureCode,
122 Criticality_t criticality,
123 asn_TYPE_descriptor_t * td, void *sptr)
124{
125
126 HNBAP_PDU_t pdu;
127 ssize_t encoded;
128
129 memset(&pdu, 0, sizeof(HNBAP_PDU_t));
130
131 pdu.present = HNBAP_PDU_PR_initiatingMessage;
132 pdu.choice.initiatingMessage.procedureCode = procedureCode;
133 pdu.choice.initiatingMessage.criticality = criticality;
134 ANY_fromType_aper(&pdu.choice.initiatingMessage.value, td, sptr);
135
136 if (asn1_xer_print)
137 xer_fprint(stdout, &asn_DEF_HNBAP_PDU, (void *)&pdu);
138
139 if ((encoded =
140 aper_encode_to_new_buffer(&asn_DEF_HNBAP_PDU, 0, &pdu,
141 (void **)buffer)) < 0) {
142 return -1;
143 }
144
145 *length = encoded;
146 return encoded;
147}
148#endif
149
Harald Welte339b8e22015-08-30 23:08:32 +0200150struct msgb *hnbap_generate_successful_outcome(
Harald Welte27f9c4a2015-08-30 22:47:18 +0200151 e_ProcedureCode procedureCode,
152 Criticality_t criticality,
153 asn_TYPE_descriptor_t * td,
154 void *sptr)
155{
156
157 HNBAP_PDU_t pdu;
158 struct msgb *msg = hnbap_msgb_alloc();
159 asn_enc_rval_t rval;
Harald Weltec060b7b2015-09-07 22:40:41 +0200160 int rc;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200161
162 memset(&pdu, 0, sizeof(HNBAP_PDU_t));
163 pdu.present = HNBAP_PDU_PR_successfulOutcome;
164 pdu.choice.successfulOutcome.procedureCode = procedureCode;
165 pdu.choice.successfulOutcome.criticality = criticality;
Harald Weltec060b7b2015-09-07 22:40:41 +0200166 rc = ANY_fromType_aper(&pdu.choice.successfulOutcome.value, td, sptr);
167 if (rc < 0) {
168 LOGP(DMAIN, LOGL_ERROR, "Error in ANY_fromType_aper\n");
169 msgb_free(msg);
170 return NULL;
171 }
Harald Welte27f9c4a2015-08-30 22:47:18 +0200172
173 rval = aper_encode_to_buffer(&asn_DEF_HNBAP_PDU, &pdu,
Harald Welte1c1c53c2015-09-07 22:41:02 +0200174 msg->data, msgb_tailroom(msg));
Harald Welte27f9c4a2015-08-30 22:47:18 +0200175 if (rval.encoded < 0) {
Harald Weltec060b7b2015-09-07 22:40:41 +0200176 LOGP(DMAIN, LOGL_ERROR, "Error encoding type %s\n", rval.failed_type->name);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200177 msgb_free(msg);
178 return NULL;
179 }
180
Harald Weltee2e5d4d2015-09-10 23:49:45 +0200181 msgb_put(msg, rval.encoded/8);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200182
183 return msg;
184}
185
186#if 0
Harald Welte339b8e22015-08-30 23:08:32 +0200187ssize_t s1ap_generate_unsuccessful_outcome(uint8_t ** buffer,
Harald Welte27f9c4a2015-08-30 22:47:18 +0200188 uint32_t * length,
189 e_ProcedureCode procedureCode,
190 Criticality_t criticality,
191 asn_TYPE_descriptor_t * td,
192 void *sptr)
193{
194
195 HNBAP_PDU_t pdu;
196 ssize_t encoded;
197
198 memset(&pdu, 0, sizeof(HNBAP_PDU_t));
199
200 pdu.present = HNBAP_PDU_PR_unsuccessfulOutcome;
201 pdu.choice.successfulOutcome.procedureCode = procedureCode;
202 pdu.choice.successfulOutcome.criticality = criticality;
203 ANY_fromType_aper(&pdu.choice.successfulOutcome.value, td, sptr);
204
205 if ((encoded =
206 aper_encode_to_new_buffer(&asn_DEF_HNBAP_PDU, 0, &pdu,
207 (void **)buffer)) < 0) {
208 return -1;
209 }
210
211 *length = encoded;
212
213 return encoded;
214}
215#endif
216
217IE_t *hnbap_new_ie(ProtocolIE_ID_t id,
218 Criticality_t criticality,
219 asn_TYPE_descriptor_t * type, void *sptr)
220{
221
222 IE_t *buff;
223
224 if ((buff = malloc(sizeof(IE_t))) == NULL) {
225 // Possible error on malloc
226 return NULL;
227 }
228 memset((void *)buff, 0, sizeof(IE_t));
229
230 buff->id = id;
231 buff->criticality = criticality;
232
233 ANY_fromType_aper(&buff->value, type, sptr);
234
235 if (asn1_xer_print)
236 if (xer_fprint(stdout, &asn_DEF_IE, buff) < 0) {
237 free(buff);
238 return NULL;
239 }
240
241 return buff;
242}