blob: cd551217fd4e6a8b5ec4cae58da85a2001a01fe3 [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001/* GSM Network Management (OML) messages on the A-bis interface
2 * 3GPP TS 12.21 version 8.0.0 Release 1999 / ETSI TS 100 623 V8.0.0 */
3
Harald Welte4724f992009-01-18 18:01:49 +00004/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
Harald Welte8470bf22008-12-25 23:28:35 +00005 *
Harald Welte52b1f982008-12-23 20:25:15 +00006 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
24
25#include <errno.h>
Harald Welte4724f992009-01-18 18:01:49 +000026#include <unistd.h>
Harald Welte52b1f982008-12-23 20:25:15 +000027#include <stdio.h>
Harald Welte4724f992009-01-18 18:01:49 +000028#include <fcntl.h>
Harald Welte12247c62009-05-21 07:23:02 +000029#include <stdlib.h>
Harald Welte5e4d1b32009-02-01 13:36:56 +000030#include <libgen.h>
Harald Welte268bb402009-02-01 19:11:56 +000031#include <time.h>
Harald Welte5f6f1492009-02-02 14:50:29 +000032#include <limits.h>
Harald Welte4724f992009-01-18 18:01:49 +000033
Harald Welte52b1f982008-12-23 20:25:15 +000034#include <sys/types.h>
Harald Welte4724f992009-01-18 18:01:49 +000035#include <sys/stat.h>
Harald Welte8470bf22008-12-25 23:28:35 +000036#include <netinet/in.h>
Harald Welte677c21f2009-02-17 13:22:23 +000037#include <arpa/inet.h>
Harald Welte52b1f982008-12-23 20:25:15 +000038
Harald Welte8470bf22008-12-25 23:28:35 +000039#include <openbsc/gsm_data.h>
40#include <openbsc/debug.h>
41#include <openbsc/msgb.h>
42#include <openbsc/tlv.h>
43#include <openbsc/abis_nm.h>
Holger Freytherca362a62009-01-04 21:05:01 +000044#include <openbsc/misdn.h>
Harald Weltef9a8cc32009-05-01 15:39:49 +000045#include <openbsc/signal.h>
Harald Welte2cf161b2009-06-20 22:36:41 +020046#include <openbsc/talloc.h>
Harald Welte52b1f982008-12-23 20:25:15 +000047
Harald Welte8470bf22008-12-25 23:28:35 +000048#define OM_ALLOC_SIZE 1024
49#define OM_HEADROOM_SIZE 128
Harald Welte52b1f982008-12-23 20:25:15 +000050
51/* unidirectional messages from BTS to BSC */
52static const enum abis_nm_msgtype reports[] = {
53 NM_MT_SW_ACTIVATED_REP,
54 NM_MT_TEST_REP,
55 NM_MT_STATECHG_EVENT_REP,
56 NM_MT_FAILURE_EVENT_REP,
57};
58
59/* messages without ACK/NACK */
60static const enum abis_nm_msgtype no_ack_nack[] = {
61 NM_MT_MEAS_RES_REQ,
62 NM_MT_STOP_MEAS,
63 NM_MT_START_MEAS,
64};
65
Harald Welte4724f992009-01-18 18:01:49 +000066/* Messages related to software load */
67static const enum abis_nm_msgtype sw_load_msgs[] = {
68 NM_MT_LOAD_INIT_ACK,
69 NM_MT_LOAD_INIT_NACK,
70 NM_MT_LOAD_SEG_ACK,
71 NM_MT_LOAD_ABORT,
72 NM_MT_LOAD_END_ACK,
73 NM_MT_LOAD_END_NACK,
Harald Welte34a99682009-02-13 02:41:40 +000074 //NM_MT_SW_ACT_REQ,
Harald Welte4724f992009-01-18 18:01:49 +000075 NM_MT_ACTIVATE_SW_ACK,
76 NM_MT_ACTIVATE_SW_NACK,
77 NM_MT_SW_ACTIVATED_REP,
78};
79
Harald Weltee0590df2009-02-15 03:34:15 +000080static const enum abis_nm_msgtype nacks[] = {
81 NM_MT_LOAD_INIT_NACK,
82 NM_MT_LOAD_END_NACK,
83 NM_MT_SW_ACT_REQ_NACK,
84 NM_MT_ACTIVATE_SW_NACK,
85 NM_MT_ESTABLISH_TEI_NACK,
86 NM_MT_CONN_TERR_SIGN_NACK,
87 NM_MT_DISC_TERR_SIGN_NACK,
88 NM_MT_CONN_TERR_TRAF_NACK,
89 NM_MT_DISC_TERR_TRAF_NACK,
90 NM_MT_CONN_MDROP_LINK_NACK,
91 NM_MT_DISC_MDROP_LINK_NACK,
92 NM_MT_SET_BTS_ATTR_NACK,
93 NM_MT_SET_RADIO_ATTR_NACK,
94 NM_MT_SET_CHAN_ATTR_NACK,
95 NM_MT_PERF_TEST_NACK,
96 NM_MT_SEND_TEST_REP_NACK,
97 NM_MT_STOP_TEST_NACK,
98 NM_MT_STOP_EVENT_REP_NACK,
99 NM_MT_REST_EVENT_REP_NACK,
100 NM_MT_CHG_ADM_STATE_NACK,
101 NM_MT_CHG_ADM_STATE_REQ_NACK,
102 NM_MT_REP_OUTST_ALARMS_NACK,
103 NM_MT_CHANGEOVER_NACK,
104 NM_MT_OPSTART_NACK,
105 NM_MT_REINIT_NACK,
106 NM_MT_SET_SITE_OUT_NACK,
107 NM_MT_CHG_HW_CONF_NACK,
108 NM_MT_GET_ATTR_NACK,
109 NM_MT_SET_ALARM_THRES_NACK,
110 NM_MT_BS11_BEGIN_DB_TX_NACK,
111 NM_MT_BS11_END_DB_TX_NACK,
112 NM_MT_BS11_CREATE_OBJ_NACK,
113 NM_MT_BS11_DELETE_OBJ_NACK,
114};
Harald Welte78fc0d42009-02-19 02:50:57 +0000115
116static const char *nack_names[0xff] = {
117 [NM_MT_LOAD_INIT_NACK] = "SOFTWARE LOAD INIT",
118 [NM_MT_LOAD_END_NACK] = "SOFTWARE LOAD END",
119 [NM_MT_SW_ACT_REQ_NACK] = "SOFTWARE ACTIVATE REQUEST",
120 [NM_MT_ACTIVATE_SW_NACK] = "ACTIVATE SOFTWARE",
121 [NM_MT_ESTABLISH_TEI_NACK] = "ESTABLISH TEI",
122 [NM_MT_CONN_TERR_SIGN_NACK] = "CONNECT TERRESTRIAL SIGNALLING",
123 [NM_MT_DISC_TERR_SIGN_NACK] = "DISCONNECT TERRESTRIAL SIGNALLING",
124 [NM_MT_CONN_TERR_TRAF_NACK] = "CONNECT TERRESTRIAL TRAFFIC",
125 [NM_MT_DISC_TERR_TRAF_NACK] = "DISCONNECT TERRESTRIAL TRAFFIC",
126 [NM_MT_CONN_MDROP_LINK_NACK] = "CONNECT MULTI-DROP LINK",
127 [NM_MT_DISC_MDROP_LINK_NACK] = "DISCONNECT MULTI-DROP LINK",
128 [NM_MT_SET_BTS_ATTR_NACK] = "SET BTS ATTRIBUTE",
129 [NM_MT_SET_RADIO_ATTR_NACK] = "SET RADIO ATTRIBUTE",
130 [NM_MT_SET_CHAN_ATTR_NACK] = "SET CHANNEL ATTRIBUTE",
131 [NM_MT_PERF_TEST_NACK] = "PERFORM TEST",
132 [NM_MT_SEND_TEST_REP_NACK] = "SEND TEST REPORT",
133 [NM_MT_STOP_TEST_NACK] = "STOP TEST",
134 [NM_MT_STOP_EVENT_REP_NACK] = "STOP EVENT REPORT",
135 [NM_MT_REST_EVENT_REP_NACK] = "RESET EVENT REPORT",
136 [NM_MT_CHG_ADM_STATE_NACK] = "CHANGE ADMINISTRATIVE STATE",
137 [NM_MT_CHG_ADM_STATE_REQ_NACK] = "CHANGE ADMINISTRATIVE STATE REQUEST",
138 [NM_MT_REP_OUTST_ALARMS_NACK] = "REPORT OUTSTANDING ALARMS",
139 [NM_MT_CHANGEOVER_NACK] = "CHANGEOVER",
140 [NM_MT_OPSTART_NACK] = "OPSTART",
141 [NM_MT_REINIT_NACK] = "REINIT",
142 [NM_MT_SET_SITE_OUT_NACK] = "SET SITE OUTPUT",
143 [NM_MT_CHG_HW_CONF_NACK] = "CHANGE HARDWARE CONFIGURATION",
144 [NM_MT_GET_ATTR_NACK] = "GET ATTRIBUTE",
145 [NM_MT_SET_ALARM_THRES_NACK] = "SET ALARM THRESHOLD",
146 [NM_MT_BS11_BEGIN_DB_TX_NACK] = "BS11 BEGIN DATABASE TRANSMISSION",
147 [NM_MT_BS11_END_DB_TX_NACK] = "BS11 END DATABASE TRANSMISSION",
148 [NM_MT_BS11_CREATE_OBJ_NACK] = "BS11 CREATE OBJECT",
149 [NM_MT_BS11_DELETE_OBJ_NACK] = "BS11 DELETE OBJECT",
150};
151
Harald Welte6c96ba52009-05-01 13:03:40 +0000152/* Chapter 9.4.36 */
153static const char *nack_cause_names[] = {
154 /* General Nack Causes */
155 [NM_NACK_INCORR_STRUCT] = "Incorrect message structure",
156 [NM_NACK_MSGTYPE_INVAL] = "Invalid message type value",
157 [NM_NACK_OBJCLASS_INVAL] = "Invalid Object class value",
158 [NM_NACK_OBJCLASS_NOTSUPP] = "Object class not supported",
159 [NM_NACK_BTSNR_UNKN] = "BTS no. unknown",
160 [NM_NACK_TRXNR_UNKN] = "Baseband Transceiver no. unknown",
161 [NM_NACK_OBJINST_UNKN] = "Object Instance unknown",
162 [NM_NACK_ATTRID_INVAL] = "Invalid attribute identifier value",
163 [NM_NACK_ATTRID_NOTSUPP] = "Attribute identifier not supported",
164 [NM_NACK_PARAM_RANGE] = "Parameter value outside permitted range",
165 [NM_NACK_ATTRLIST_INCONSISTENT] = "Inconsistency in attribute list",
166 [NM_NACK_SPEC_IMPL_NOTSUPP] = "Specified implementation not supported",
167 [NM_NACK_CANT_PERFORM] = "Message cannot be performed",
168 /* Specific Nack Causes */
169 [NM_NACK_RES_NOTIMPL] = "Resource not implemented",
170 [NM_NACK_RES_NOTAVAIL] = "Resource not available",
171 [NM_NACK_FREQ_NOTAVAIL] = "Frequency not available",
172 [NM_NACK_TEST_NOTSUPP] = "Test not supported",
173 [NM_NACK_CAPACITY_RESTR] = "Capacity restrictions",
174 [NM_NACK_PHYSCFG_NOTPERFORM] = "Physical configuration cannot be performed",
175 [NM_NACK_TEST_NOTINIT] = "Test not initiated",
176 [NM_NACK_PHYSCFG_NOTRESTORE] = "Physical configuration cannot be restored",
177 [NM_NACK_TEST_NOSUCH] = "No such test",
178 [NM_NACK_TEST_NOSTOP] = "Test cannot be stopped",
179 [NM_NACK_MSGINCONSIST_PHYSCFG] = "Message inconsistent with physical configuration",
180 [NM_NACK_FILE_INCOMPLETE] = "Complete file notreceived",
181 [NM_NACK_FILE_NOTAVAIL] = "File not available at destination",
Harald Welte560982b2009-06-26 13:21:57 +0200182 [NM_NACK_FILE_NOTACTIVATE] = "File cannot be activate",
Harald Welte6c96ba52009-05-01 13:03:40 +0000183 [NM_NACK_REQ_NOT_GRANT] = "Request not granted",
184 [NM_NACK_WAIT] = "Wait",
185 [NM_NACK_NOTH_REPORT_EXIST] = "Nothing reportable existing",
186 [NM_NACK_MEAS_NOTSUPP] = "Measurement not supported",
187 [NM_NACK_MEAS_NOTSTART] = "Measurement not started",
188};
189
190static char namebuf[255];
191static const char *nack_cause_name(u_int8_t cause)
192{
193 if (cause < ARRAY_SIZE(nack_cause_names) && nack_cause_names[cause])
194 return nack_cause_names[cause];
195
196 snprintf(namebuf, sizeof(namebuf), "0x%02x\n", cause);
197 return namebuf;
198}
199
Harald Welte0db97b22009-05-01 17:22:47 +0000200/* Chapter 9.4.16: Event Type */
201static const char *event_type_names[] = {
202 [NM_EVT_COMM_FAIL] = "communication failure",
203 [NM_EVT_QOS_FAIL] = "quality of service failure",
204 [NM_EVT_PROC_FAIL] = "processing failure",
205 [NM_EVT_EQUIP_FAIL] = "equipment failure",
206 [NM_EVT_ENV_FAIL] = "environment failure",
207};
208
209static const char *event_type_name(u_int8_t cause)
210{
211 if (cause < ARRAY_SIZE(event_type_names) && event_type_names[cause])
212 return event_type_names[cause];
213
214 snprintf(namebuf, sizeof(namebuf), "0x%02x\n", cause);
215 return namebuf;
216}
217
218/* Chapter 9.4.63: Perceived Severity */
219static const char *severity_names[] = {
220 [NM_SEVER_CEASED] = "failure ceased",
221 [NM_SEVER_CRITICAL] = "critical failure",
222 [NM_SEVER_MAJOR] = "major failure",
223 [NM_SEVER_MINOR] = "minor failure",
224 [NM_SEVER_WARNING] = "warning level failure",
225 [NM_SEVER_INDETERMINATE] = "indeterminate failure",
226};
227
228static const char *severity_name(u_int8_t cause)
229{
230 if (cause < ARRAY_SIZE(severity_names) && severity_names[cause])
231 return severity_names[cause];
232
233 snprintf(namebuf, sizeof(namebuf), "0x%02x\n", cause);
234 return namebuf;
235}
236
Harald Welte52b1f982008-12-23 20:25:15 +0000237/* Attributes that the BSC can set, not only get, according to Section 9.4 */
238static const enum abis_nm_attr nm_att_settable[] = {
239 NM_ATT_ADD_INFO,
240 NM_ATT_ADD_TEXT,
241 NM_ATT_DEST,
242 NM_ATT_EVENT_TYPE,
243 NM_ATT_FILE_DATA,
244 NM_ATT_GET_ARI,
245 NM_ATT_HW_CONF_CHG,
246 NM_ATT_LIST_REQ_ATTR,
247 NM_ATT_MDROP_LINK,
248 NM_ATT_MDROP_NEXT,
249 NM_ATT_NACK_CAUSES,
250 NM_ATT_OUTST_ALARM,
251 NM_ATT_PHYS_CONF,
252 NM_ATT_PROB_CAUSE,
253 NM_ATT_RAD_SUBC,
254 NM_ATT_SOURCE,
255 NM_ATT_SPEC_PROB,
256 NM_ATT_START_TIME,
257 NM_ATT_TEST_DUR,
258 NM_ATT_TEST_NO,
259 NM_ATT_TEST_REPORT,
260 NM_ATT_WINDOW_SIZE,
261 NM_ATT_SEVERITY,
262 NM_ATT_MEAS_RES,
263 NM_ATT_MEAS_TYPE,
264};
265
Harald Weltee0590df2009-02-15 03:34:15 +0000266static const struct tlv_definition nm_att_tlvdef = {
267 .def = {
268 [NM_ATT_ABIS_CHANNEL] = { TLV_TYPE_FIXED, 3 },
269 [NM_ATT_ADD_INFO] = { TLV_TYPE_TL16V },
270 [NM_ATT_ADD_TEXT] = { TLV_TYPE_TL16V },
271 [NM_ATT_ADM_STATE] = { TLV_TYPE_TV },
272 [NM_ATT_ARFCN_LIST]= { TLV_TYPE_TL16V },
273 [NM_ATT_AUTON_REPORT] = { TLV_TYPE_TV },
274 [NM_ATT_AVAIL_STATUS] = { TLV_TYPE_TL16V },
275 [NM_ATT_BCCH_ARFCN] = { TLV_TYPE_FIXED, 2 },
276 [NM_ATT_BSIC] = { TLV_TYPE_TV },
277 [NM_ATT_BTS_AIR_TIMER] = { TLV_TYPE_TV },
278 [NM_ATT_CCCH_L_I_P] = { TLV_TYPE_TV },
279 [NM_ATT_CCCH_L_T] = { TLV_TYPE_TV },
280 [NM_ATT_CHAN_COMB] = { TLV_TYPE_TV },
281 [NM_ATT_CONN_FAIL_CRIT] = { TLV_TYPE_TL16V },
282 [NM_ATT_DEST] = { TLV_TYPE_TL16V },
283 [NM_ATT_EVENT_TYPE] = { TLV_TYPE_TV },
284 [NM_ATT_FILE_DATA] = { TLV_TYPE_TL16V },
285 [NM_ATT_FILE_ID] = { TLV_TYPE_TL16V },
286 [NM_ATT_FILE_VERSION] = { TLV_TYPE_TL16V },
287 [NM_ATT_GSM_TIME] = { TLV_TYPE_FIXED, 2 },
288 [NM_ATT_HSN] = { TLV_TYPE_TV },
289 [NM_ATT_HW_CONFIG] = { TLV_TYPE_TL16V },
290 [NM_ATT_HW_DESC] = { TLV_TYPE_TL16V },
291 [NM_ATT_INTAVE_PARAM] = { TLV_TYPE_TV },
292 [NM_ATT_INTERF_BOUND] = { TLV_TYPE_FIXED, 6 },
293 [NM_ATT_LIST_REQ_ATTR] = { TLV_TYPE_TL16V },
294 [NM_ATT_MAIO] = { TLV_TYPE_TV },
295 [NM_ATT_MANUF_STATE] = { TLV_TYPE_TV },
296 [NM_ATT_MANUF_THRESH] = { TLV_TYPE_TL16V },
297 [NM_ATT_MANUF_ID] = { TLV_TYPE_TL16V },
298 [NM_ATT_MAX_TA] = { TLV_TYPE_TV },
299 [NM_ATT_MDROP_LINK] = { TLV_TYPE_FIXED, 2 },
300 [NM_ATT_MDROP_NEXT] = { TLV_TYPE_FIXED, 2 },
301 [NM_ATT_NACK_CAUSES] = { TLV_TYPE_TV },
302 [NM_ATT_NY1] = { TLV_TYPE_TV },
303 [NM_ATT_OPER_STATE] = { TLV_TYPE_TV },
304 [NM_ATT_OVERL_PERIOD] = { TLV_TYPE_TL16V },
305 [NM_ATT_PHYS_CONF] = { TLV_TYPE_TL16V },
306 [NM_ATT_POWER_CLASS] = { TLV_TYPE_TV },
307 [NM_ATT_POWER_THRESH] = { TLV_TYPE_FIXED, 3 },
308 [NM_ATT_PROB_CAUSE] = { TLV_TYPE_FIXED, 3 },
309 [NM_ATT_RACH_B_THRESH] = { TLV_TYPE_TV },
310 [NM_ATT_LDAVG_SLOTS] = { TLV_TYPE_FIXED, 2 },
311 [NM_ATT_RAD_SUBC] = { TLV_TYPE_TV },
312 [NM_ATT_RF_MAXPOWR_R] = { TLV_TYPE_TV },
313 [NM_ATT_SITE_INPUTS] = { TLV_TYPE_TL16V },
314 [NM_ATT_SITE_OUTPUTS] = { TLV_TYPE_TL16V },
315 [NM_ATT_SOURCE] = { TLV_TYPE_TL16V },
316 [NM_ATT_SPEC_PROB] = { TLV_TYPE_TV },
317 [NM_ATT_START_TIME] = { TLV_TYPE_FIXED, 2 },
318 [NM_ATT_T200] = { TLV_TYPE_FIXED, 7 },
319 [NM_ATT_TEI] = { TLV_TYPE_TV },
320 [NM_ATT_TEST_DUR] = { TLV_TYPE_FIXED, 2 },
321 [NM_ATT_TEST_NO] = { TLV_TYPE_TV },
322 [NM_ATT_TEST_REPORT] = { TLV_TYPE_TL16V },
323 [NM_ATT_VSWR_THRESH] = { TLV_TYPE_FIXED, 2 },
324 [NM_ATT_WINDOW_SIZE] = { TLV_TYPE_TV },
325 [NM_ATT_TSC] = { TLV_TYPE_TV },
326 [NM_ATT_SW_CONFIG] = { TLV_TYPE_TL16V },
327 [NM_ATT_SEVERITY] = { TLV_TYPE_TV },
328 [NM_ATT_GET_ARI] = { TLV_TYPE_TL16V },
329 [NM_ATT_HW_CONF_CHG] = { TLV_TYPE_TL16V },
330 [NM_ATT_OUTST_ALARM] = { TLV_TYPE_TV },
331 [NM_ATT_FILE_DATA] = { TLV_TYPE_TL16V },
332 [NM_ATT_MEAS_RES] = { TLV_TYPE_TL16V },
333 /* BS11 specifics */
Harald Welte78fc0d42009-02-19 02:50:57 +0000334 [NM_ATT_BS11_ESN_FW_CODE_NO] = { TLV_TYPE_TLV },
335 [NM_ATT_BS11_ESN_HW_CODE_NO] = { TLV_TYPE_TLV },
336 [NM_ATT_BS11_ESN_PCB_SERIAL] = { TLV_TYPE_TLV },
337 [NM_ATT_BS11_BOOT_SW_VERS] = { TLV_TYPE_TLV },
338 [0xd5] = { TLV_TYPE_TLV },
339 [0xa8] = { TLV_TYPE_TLV },
Harald Weltee0590df2009-02-15 03:34:15 +0000340 [NM_ATT_BS11_PASSWORD] = { TLV_TYPE_TLV },
341 [NM_ATT_BS11_TXPWR] = { TLV_TYPE_TLV },
342 [NM_ATT_BS11_RSSI_OFFS] = { TLV_TYPE_TLV },
343 [NM_ATT_BS11_LINE_CFG] = { TLV_TYPE_TV },
344 [NM_ATT_BS11_L1_PROT_TYPE] = { TLV_TYPE_TV },
345 [NM_ATT_BS11_BIT_ERR_THESH] = { TLV_TYPE_FIXED, 2 },
346 [NM_ATT_BS11_DIVERSITY] = { TLV_TYPE_TLV },
Harald Welteee670472009-02-22 21:58:49 +0000347 [NM_ATT_BS11_LMT_LOGON_SESSION]={ TLV_TYPE_TLV },
Harald Weltee0590df2009-02-15 03:34:15 +0000348 [NM_ATT_BS11_LMT_LOGIN_TIME] = { TLV_TYPE_TLV },
349 [NM_ATT_BS11_LMT_USER_ACC_LEV] ={ TLV_TYPE_TLV },
350 [NM_ATT_BS11_LMT_USER_NAME] = { TLV_TYPE_TLV },
Harald Welte03133942009-02-18 19:51:53 +0000351 [NM_ATT_BS11_BTS_STATE] = { TLV_TYPE_TLV },
352 [NM_ATT_BS11_E1_STATE] = { TLV_TYPE_TLV },
Harald Welteaaf02d92009-04-29 13:25:57 +0000353 [NM_ATT_BS11_PLL_MODE] = { TLV_TYPE_TLV },
Harald Weltea7cfa032009-04-29 22:33:02 +0000354 [NM_ATT_BS11_PLL] = { TLV_TYPE_TLV },
Harald Welteef061952009-05-17 12:43:42 +0000355 [NM_ATT_BS11_CCLK_ACCURACY] = { TLV_TYPE_TV },
356 [NM_ATT_BS11_CCLK_TYPE] = { TLV_TYPE_TV },
Harald Welte677c21f2009-02-17 13:22:23 +0000357 /* ip.access specifics */
Harald Welte0efe9b72009-07-12 09:33:54 +0200358 [NM_ATT_IPACC_DST_IP] = { TLV_TYPE_FIXED, 4 },
359 [NM_ATT_IPACC_DST_IP_PORT] = { TLV_TYPE_FIXED, 2 },
Harald Welte4fbfd3a2009-08-06 17:57:23 +0200360 [NM_ATT_IPACC_STREAM_ID] = { TLV_TYPE_TV, },
361 [NM_ATT_IPACC_FREQ_CTRL] = { TLV_TYPE_TV, },
362 [NM_ATT_IPACC_SEC_OML_CFG] = { TLV_TYPE_FIXED, 6 },
363 [NM_ATT_IPACC_IP_IF_CFG] = { TLV_TYPE_FIXED, 8 },
364 [NM_ATT_IPACC_IP_GW_CFG] = { TLV_TYPE_FIXED, 12 },
365 [NM_ATT_IPACC_IN_SERV_TIME] = { TLV_TYPE_FIXED, 4 },
366 [NM_ATT_IPACC_LOCATION] = { TLV_TYPE_TL16V },
367 [NM_ATT_IPACC_PAGING_CFG] = { TLV_TYPE_FIXED, 2 },
368 [NM_ATT_IPACC_UNIT_ID] = { TLV_TYPE_TL16V },
369 [NM_ATT_IPACC_UNIT_NAME] = { TLV_TYPE_TL16V },
370 [NM_ATT_IPACC_SNMP_CFG] = { TLV_TYPE_TL16V },
Harald Welte0efe9b72009-07-12 09:33:54 +0200371 [NM_ATT_IPACC_PRIM_OML_CFG_LIST] = { TLV_TYPE_TL16V },
Harald Weltea0c0b572009-07-03 12:46:27 +0200372 [NM_ATT_IPACC_NV_FLAGS] = { TLV_TYPE_TL16V },
373 [NM_ATT_IPACC_FREQ_CTRL] = { TLV_TYPE_FIXED, 2 },
Harald Welte0efe9b72009-07-12 09:33:54 +0200374 [NM_ATT_IPACC_PRIM_OML_FB_TOUT] = { TLV_TYPE_TL16V },
Harald Welte4fbfd3a2009-08-06 17:57:23 +0200375 [NM_ATT_IPACC_CUR_SW_CFG] = { TLV_TYPE_TL16V },
376 [NM_ATT_IPACC_TIMING_BUS] = { TLV_TYPE_TL16V },
377 [NM_ATT_IPACC_CGI] = { TLV_TYPE_TL16V },
378 [NM_ATT_IPACC_RAC] = { TLV_TYPE_TL16V },
379 [NM_ATT_IPACC_OBJ_VERSION] = { TLV_TYPE_TL16V },
380 [NM_ATT_IPACC_GPRS_PAGING_CFG]= { TLV_TYPE_TL16V },
381 [NM_ATT_IPACC_NSEI] = { TLV_TYPE_TL16V },
382 [NM_ATT_IPACC_BVCI] = { TLV_TYPE_TL16V },
383 [NM_ATT_IPACC_NSVCI] = { TLV_TYPE_TL16V },
384 [NM_ATT_IPACC_NS_CFG] = { TLV_TYPE_TL16V },
385 [NM_ATT_IPACC_BSSGP_CFG] = { TLV_TYPE_TL16V },
386 [NM_ATT_IPACC_NS_LINK_CFG] = { TLV_TYPE_TL16V },
387 [NM_ATT_IPACC_RLC_CFG] = { TLV_TYPE_TL16V },
Harald Weltea0c0b572009-07-03 12:46:27 +0200388 [NM_ATT_IPACC_ALM_THRESH_LIST]= { TLV_TYPE_TL16V },
Harald Welte4fbfd3a2009-08-06 17:57:23 +0200389 [NM_ATT_IPACC_MONIT_VAL_LIST] = { TLV_TYPE_TL16V },
390 [NM_ATT_IPACC_TIB_CONTROL] = { TLV_TYPE_TL16V },
391 [NM_ATT_IPACC_SUPP_FEATURES] = { TLV_TYPE_TL16V },
392 [NM_ATT_IPACC_CODING_SCHEMES] = { TLV_TYPE_TL16V },
393 [NM_ATT_IPACC_RLC_CFG_2] = { TLV_TYPE_TL16V },
394 [NM_ATT_IPACC_HEARTB_TOUT] = { TLV_TYPE_TL16V },
395 [NM_ATT_IPACC_UPTIME] = { TLV_TYPE_TL16V },
396 [NM_ATT_IPACC_RLC_CFG_3] = { TLV_TYPE_TL16V },
397 [NM_ATT_IPACC_SSL_CFG] = { TLV_TYPE_TL16V },
398 [NM_ATT_IPACC_SEC_POSSIBLE] = { TLV_TYPE_TL16V },
399 [NM_ATT_IPACC_IML_SSL_STATE] = { TLV_TYPE_TL16V },
400 [NM_ATT_IPACC_REVOC_DATE] = { TLV_TYPE_TL16V },
Harald Weltea0c0b572009-07-03 12:46:27 +0200401 //[0x95] = { TLV_TYPE_FIXED, 2 },
Harald Welte677c21f2009-02-17 13:22:23 +0000402 [0x85] = { TLV_TYPE_TV },
403
Harald Weltee0590df2009-02-15 03:34:15 +0000404 },
405};
Harald Welte03133942009-02-18 19:51:53 +0000406
407int abis_nm_tlv_parse(struct tlv_parsed *tp, const u_int8_t *buf, int len)
408{
Harald Weltea4d49e92009-05-23 06:39:58 +0000409 return tlv_parse(tp, &nm_att_tlvdef, buf, len, 0, 0);
Harald Welte03133942009-02-18 19:51:53 +0000410}
Harald Weltee0590df2009-02-15 03:34:15 +0000411
Harald Welte52b1f982008-12-23 20:25:15 +0000412static int is_in_arr(enum abis_nm_msgtype mt, const enum abis_nm_msgtype *arr, int size)
413{
414 int i;
415
416 for (i = 0; i < size; i++) {
417 if (arr[i] == mt)
418 return 1;
419 }
420
421 return 0;
422}
423
Holger Freytherca362a62009-01-04 21:05:01 +0000424#if 0
Harald Welte52b1f982008-12-23 20:25:15 +0000425/* is this msgtype the usual ACK/NACK type ? */
426static int is_ack_nack(enum abis_nm_msgtype mt)
427{
428 return !is_in_arr(mt, no_ack_nack, ARRAY_SIZE(no_ack_nack));
429}
Holger Freytherca362a62009-01-04 21:05:01 +0000430#endif
Harald Welte52b1f982008-12-23 20:25:15 +0000431
432/* is this msgtype a report ? */
433static int is_report(enum abis_nm_msgtype mt)
434{
Harald Welte8470bf22008-12-25 23:28:35 +0000435 return is_in_arr(mt, reports, ARRAY_SIZE(reports));
Harald Welte52b1f982008-12-23 20:25:15 +0000436}
437
438#define MT_ACK(x) (x+1)
439#define MT_NACK(x) (x+2)
440
441static void fill_om_hdr(struct abis_om_hdr *oh, u_int8_t len)
442{
443 oh->mdisc = ABIS_OM_MDISC_FOM;
444 oh->placement = ABIS_OM_PLACEMENT_ONLY;
445 oh->sequence = 0;
446 oh->length = len;
447}
448
449static void fill_om_fom_hdr(struct abis_om_hdr *oh, u_int8_t len,
450 u_int8_t msg_type, u_int8_t obj_class,
451 u_int8_t bts_nr, u_int8_t trx_nr, u_int8_t ts_nr)
452{
453 struct abis_om_fom_hdr *foh =
454 (struct abis_om_fom_hdr *) oh->data;
455
Harald Welte702d8702008-12-26 20:25:35 +0000456 fill_om_hdr(oh, len+sizeof(*foh));
Harald Welte52b1f982008-12-23 20:25:15 +0000457 foh->msg_type = msg_type;
458 foh->obj_class = obj_class;
459 foh->obj_inst.bts_nr = bts_nr;
460 foh->obj_inst.trx_nr = trx_nr;
461 foh->obj_inst.ts_nr = ts_nr;
462}
463
Harald Welte8470bf22008-12-25 23:28:35 +0000464static struct msgb *nm_msgb_alloc(void)
465{
Harald Welte966636f2009-06-26 19:39:35 +0200466 return msgb_alloc_headroom(OM_ALLOC_SIZE, OM_HEADROOM_SIZE,
467 "OML");
Harald Welte8470bf22008-12-25 23:28:35 +0000468}
469
Harald Welte52b1f982008-12-23 20:25:15 +0000470/* Send a OML NM Message from BSC to BTS */
471int abis_nm_sendmsg(struct gsm_bts *bts, struct msgb *msg)
472{
Holger Freyther59639e82009-02-09 23:09:55 +0000473 msg->trx = bts->c0;
474
Harald Weltead384642008-12-26 10:20:07 +0000475 return _abis_nm_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000476}
477
Harald Welte4724f992009-01-18 18:01:49 +0000478static int abis_nm_rcvmsg_sw(struct msgb *mb);
479
Harald Welte34a99682009-02-13 02:41:40 +0000480static const char *obj_class_name(u_int8_t oc)
481{
Harald Welte7b26bcb2009-05-28 11:39:21 +0000482 switch (oc) {
483 case NM_OC_SITE_MANAGER:
484 return "SITE MANAGER";
485 case NM_OC_BTS:
486 return "BTS";
487 case NM_OC_RADIO_CARRIER:
488 return "RADIO CARRIER";
489 case NM_OC_BASEB_TRANSC:
490 return "BASEBAND TRANSCEIVER";
491 case NM_OC_CHANNEL:
Harald Weltebd8f7e32009-06-09 20:17:12 +0000492 return "CHANNEL";
Harald Welte7b26bcb2009-05-28 11:39:21 +0000493 case NM_OC_BS11_ADJC:
494 return "ADJC";
495 case NM_OC_BS11_HANDOVER:
496 return "HANDOVER";
497 case NM_OC_BS11_PWR_CTRL:
498 return "POWER CONTROL";
499 case NM_OC_BS11_BTSE:
500 return "BTSE";
501 case NM_OC_BS11_RACK:
502 return "RACK";
503 case NM_OC_BS11_TEST:
504 return "TEST";
505 case NM_OC_BS11_ENVABTSE:
506 return "ENVABTSE";
507 case NM_OC_BS11_BPORT:
508 return "BPORT";
509 case NM_OC_GPRS_NSE:
510 return "GPRS NSE";
511 case NM_OC_GPRS_CELL:
512 return "GPRS CELL";
Harald Welted83a1272009-07-12 10:56:06 +0200513 case NM_OC_GPRS_NSVC:
514 return "GPRS NSVC";
Harald Welte8b697c72009-06-05 19:18:45 +0000515 case NM_OC_BS11:
516 return "SIEMENSHW";
Harald Welte7b26bcb2009-05-28 11:39:21 +0000517 }
518
519 return "UNKNOWN";
Harald Welte34a99682009-02-13 02:41:40 +0000520}
521
Harald Welte4d87f242009-03-10 19:43:44 +0000522const char *nm_opstate_name(u_int8_t os)
Harald Welte34a99682009-02-13 02:41:40 +0000523{
524 switch (os) {
525 case 1:
526 return "Disabled";
527 case 2:
528 return "Enabled";
529 case 0xff:
530 return "NULL";
531 default:
532 return "RFU";
533 }
534}
535
Harald Weltee0590df2009-02-15 03:34:15 +0000536/* Chapter 9.4.7 */
Harald Welte4d87f242009-03-10 19:43:44 +0000537static const char *avail_names[] = {
Harald Weltee0590df2009-02-15 03:34:15 +0000538 "In test",
539 "Failed",
540 "Power off",
541 "Off line",
542 "<not used>",
543 "Dependency",
544 "Degraded",
545 "Not installed",
546};
547
Harald Welte4d87f242009-03-10 19:43:44 +0000548const char *nm_avail_name(u_int8_t avail)
Harald Weltee0590df2009-02-15 03:34:15 +0000549{
Harald Welte0b8348d2009-02-18 03:43:01 +0000550 if (avail == 0xff)
551 return "OK";
Harald Weltee0590df2009-02-15 03:34:15 +0000552 if (avail >= ARRAY_SIZE(avail_names))
553 return "UNKNOWN";
554 return avail_names[avail];
555}
Harald Welte7b26bcb2009-05-28 11:39:21 +0000556
557const char *nm_adm_name(u_int8_t adm)
558{
559 switch (adm) {
560 case 1:
561 return "Locked";
562 case 2:
563 return "Unlocked";
564 case 3:
565 return "Shutdown";
566 default:
567 return "<not used>";
568 }
569}
Harald Weltee0590df2009-02-15 03:34:15 +0000570
571/* obtain the gsm_nm_state data structure for a given object instance */
572static struct gsm_nm_state *
573objclass2nmstate(struct gsm_bts *bts, u_int8_t obj_class,
574 struct abis_om_obj_inst *obj_inst)
575{
576 struct gsm_bts_trx *trx;
577 struct gsm_nm_state *nm_state = NULL;
578
579 switch (obj_class) {
580 case NM_OC_BTS:
581 nm_state = &bts->nm_state;
582 break;
583 case NM_OC_RADIO_CARRIER:
584 if (obj_inst->trx_nr >= bts->num_trx)
585 return NULL;
Harald Weltee441d9c2009-06-21 16:17:15 +0200586 trx = gsm_bts_trx_num(bts, obj_inst->trx_nr);
Harald Weltee0590df2009-02-15 03:34:15 +0000587 nm_state = &trx->nm_state;
588 break;
589 case NM_OC_BASEB_TRANSC:
590 if (obj_inst->trx_nr >= bts->num_trx)
591 return NULL;
Harald Weltee441d9c2009-06-21 16:17:15 +0200592 trx = gsm_bts_trx_num(bts, obj_inst->trx_nr);
Harald Weltee0590df2009-02-15 03:34:15 +0000593 nm_state = &trx->bb_transc.nm_state;
594 break;
595 case NM_OC_CHANNEL:
596 if (obj_inst->trx_nr > bts->num_trx)
597 return NULL;
Harald Weltee441d9c2009-06-21 16:17:15 +0200598 trx = gsm_bts_trx_num(bts, obj_inst->trx_nr);
Harald Weltee0590df2009-02-15 03:34:15 +0000599 if (obj_inst->ts_nr >= TRX_NR_TS)
600 return NULL;
601 nm_state = &trx->ts[obj_inst->ts_nr].nm_state;
602 break;
603 case NM_OC_SITE_MANAGER:
604 nm_state = &bts->site_mgr.nm_state;
605 break;
Harald Welte7b26bcb2009-05-28 11:39:21 +0000606 case NM_OC_BS11:
607 switch (obj_inst->bts_nr) {
608 case BS11_OBJ_CCLK:
609 nm_state = &bts->bs11.cclk.nm_state;
610 break;
Harald Welte8b697c72009-06-05 19:18:45 +0000611 case BS11_OBJ_BBSIG:
612 if (obj_inst->ts_nr > bts->num_trx)
613 return NULL;
Harald Weltee441d9c2009-06-21 16:17:15 +0200614 trx = gsm_bts_trx_num(bts, obj_inst->trx_nr);
Harald Welte8b697c72009-06-05 19:18:45 +0000615 nm_state = &trx->bs11.bbsig.nm_state;
616 break;
617 case BS11_OBJ_PA:
618 if (obj_inst->ts_nr > bts->num_trx)
619 return NULL;
Harald Weltee441d9c2009-06-21 16:17:15 +0200620 trx = gsm_bts_trx_num(bts, obj_inst->trx_nr);
Harald Welte8b697c72009-06-05 19:18:45 +0000621 nm_state = &trx->bs11.pa.nm_state;
622 break;
Harald Welte7b26bcb2009-05-28 11:39:21 +0000623 default:
624 return NULL;
625 }
626 case NM_OC_BS11_RACK:
627 nm_state = &bts->bs11.rack.nm_state;
628 break;
Harald Welte8b697c72009-06-05 19:18:45 +0000629 case NM_OC_BS11_ENVABTSE:
630 if (obj_inst->trx_nr > ARRAY_SIZE(bts->bs11.envabtse))
631 return NULL;
632 nm_state = &bts->bs11.envabtse[obj_inst->trx_nr].nm_state;
633 break;
Harald Weltee0590df2009-02-15 03:34:15 +0000634 }
635 return nm_state;
636}
637
638/* obtain the in-memory data structure of a given object instance */
639static void *
640objclass2obj(struct gsm_bts *bts, u_int8_t obj_class,
641 struct abis_om_obj_inst *obj_inst)
642{
643 struct gsm_bts_trx *trx;
644 void *obj = NULL;
645
646 switch (obj_class) {
647 case NM_OC_BTS:
648 obj = bts;
649 break;
650 case NM_OC_RADIO_CARRIER:
651 if (obj_inst->trx_nr >= bts->num_trx)
652 return NULL;
Harald Weltee441d9c2009-06-21 16:17:15 +0200653 trx = gsm_bts_trx_num(bts, obj_inst->trx_nr);
Harald Weltee0590df2009-02-15 03:34:15 +0000654 obj = trx;
655 break;
656 case NM_OC_BASEB_TRANSC:
657 if (obj_inst->trx_nr >= bts->num_trx)
658 return NULL;
Harald Weltee441d9c2009-06-21 16:17:15 +0200659 trx = gsm_bts_trx_num(bts, obj_inst->trx_nr);
Harald Weltee0590df2009-02-15 03:34:15 +0000660 obj = &trx->bb_transc;
661 break;
662 case NM_OC_CHANNEL:
663 if (obj_inst->trx_nr > bts->num_trx)
664 return NULL;
Harald Weltee441d9c2009-06-21 16:17:15 +0200665 trx = gsm_bts_trx_num(bts, obj_inst->trx_nr);
Harald Weltee0590df2009-02-15 03:34:15 +0000666 if (obj_inst->ts_nr >= TRX_NR_TS)
667 return NULL;
668 obj = &trx->ts[obj_inst->ts_nr];
669 break;
670 case NM_OC_SITE_MANAGER:
671 obj = &bts->site_mgr;
672 break;
673 }
674 return obj;
675}
676
677/* Update the administrative state of a given object in our in-memory data
678 * structures and send an event to the higher layer */
679static int update_admstate(struct gsm_bts *bts, u_int8_t obj_class,
680 struct abis_om_obj_inst *obj_inst, u_int8_t adm_state)
681{
Harald Welteaeedeb42009-05-01 13:08:14 +0000682 struct gsm_nm_state *nm_state, new_state;
Harald Weltee0590df2009-02-15 03:34:15 +0000683 void *obj;
684 int rc;
685
Harald Weltee0590df2009-02-15 03:34:15 +0000686 obj = objclass2obj(bts, obj_class, obj_inst);
Harald Welteaeedeb42009-05-01 13:08:14 +0000687 nm_state = objclass2nmstate(bts, obj_class, obj_inst);
688 if (!nm_state)
689 return -1;
690
691 new_state = *nm_state;
692 new_state.administrative = adm_state;
693
694 rc = nm_state_event(EVT_STATECHG_ADM, obj_class, obj, nm_state, &new_state);
695
696 nm_state->administrative = adm_state;
Harald Weltee0590df2009-02-15 03:34:15 +0000697
698 return rc;
699}
700
Harald Welte97ed1e72009-02-06 13:38:02 +0000701static int abis_nm_rx_statechg_rep(struct msgb *mb)
702{
Harald Weltee0590df2009-02-15 03:34:15 +0000703 struct abis_om_hdr *oh = msgb_l2(mb);
Harald Welte97ed1e72009-02-06 13:38:02 +0000704 struct abis_om_fom_hdr *foh = msgb_l3(mb);
Harald Welte22af0db2009-02-14 15:41:08 +0000705 struct gsm_bts *bts = mb->trx->bts;
Harald Weltee0590df2009-02-15 03:34:15 +0000706 struct tlv_parsed tp;
707 struct gsm_nm_state *nm_state, new_state;
708 int rc;
709
Harald Welte23897662009-05-01 14:52:51 +0000710 DEBUGPC(DNM, "STATE CHG: ");
Harald Weltee0590df2009-02-15 03:34:15 +0000711
Harald Welte8b697c72009-06-05 19:18:45 +0000712 memset(&new_state, 0, sizeof(new_state));
713
Harald Weltee0590df2009-02-15 03:34:15 +0000714 nm_state = objclass2nmstate(bts, foh->obj_class, &foh->obj_inst);
715 if (!nm_state) {
716 DEBUGPC(DNM, "\n");
717 return -EINVAL;
Harald Welte22af0db2009-02-14 15:41:08 +0000718 }
Harald Weltee0590df2009-02-15 03:34:15 +0000719
720 new_state = *nm_state;
721
Harald Welte03133942009-02-18 19:51:53 +0000722 abis_nm_tlv_parse(&tp, foh->data, oh->length-sizeof(*foh));
Harald Weltee0590df2009-02-15 03:34:15 +0000723 if (TLVP_PRESENT(&tp, NM_ATT_OPER_STATE)) {
724 new_state.operational = *TLVP_VAL(&tp, NM_ATT_OPER_STATE);
Harald Welte4d87f242009-03-10 19:43:44 +0000725 DEBUGPC(DNM, "OP_STATE=%s ", nm_opstate_name(new_state.operational));
Harald Weltee0590df2009-02-15 03:34:15 +0000726 }
727 if (TLVP_PRESENT(&tp, NM_ATT_AVAIL_STATUS)) {
Harald Welte0b8348d2009-02-18 03:43:01 +0000728 if (TLVP_LEN(&tp, NM_ATT_AVAIL_STATUS) == 0)
729 new_state.availability = 0xff;
730 else
731 new_state.availability = *TLVP_VAL(&tp, NM_ATT_AVAIL_STATUS);
Harald Welte4d87f242009-03-10 19:43:44 +0000732 DEBUGPC(DNM, "AVAIL=%s(%02x) ", nm_avail_name(new_state.availability),
Harald Weltee0590df2009-02-15 03:34:15 +0000733 new_state.availability);
734 }
735 if (TLVP_PRESENT(&tp, NM_ATT_ADM_STATE)) {
736 new_state.administrative = *TLVP_VAL(&tp, NM_ATT_ADM_STATE);
Harald Welte5d4b1c22009-06-12 01:34:29 +0800737 DEBUGPC(DNM, "ADM=%02s ", nm_adm_name(new_state.administrative));
Harald Welte97ed1e72009-02-06 13:38:02 +0000738 }
739 DEBUGPC(DNM, "\n");
Harald Weltee0590df2009-02-15 03:34:15 +0000740
741 if (memcmp(&new_state, nm_state, sizeof(new_state))) {
742 /* Update the operational state of a given object in our in-memory data
743 * structures and send an event to the higher layer */
744 void *obj = objclass2obj(bts, foh->obj_class, &foh->obj_inst);
745 rc = nm_state_event(EVT_STATECHG_OPER, foh->obj_class, obj, nm_state, &new_state);
746 *nm_state = new_state;
747 }
748#if 0
Harald Welte22af0db2009-02-14 15:41:08 +0000749 if (op_state == 1) {
750 /* try to enable objects that are disabled */
751 abis_nm_opstart(bts, foh->obj_class,
752 foh->obj_inst.bts_nr,
753 foh->obj_inst.trx_nr,
754 foh->obj_inst.ts_nr);
755 }
Harald Weltee0590df2009-02-15 03:34:15 +0000756#endif
Harald Welte97ed1e72009-02-06 13:38:02 +0000757 return 0;
758}
759
Harald Welte0db97b22009-05-01 17:22:47 +0000760static int rx_fail_evt_rep(struct msgb *mb)
761{
762 struct abis_om_hdr *oh = msgb_l2(mb);
763 struct abis_om_fom_hdr *foh = msgb_l3(mb);
764 struct tlv_parsed tp;
765
766 DEBUGPC(DNM, "Failure Event Report ");
767
768 abis_nm_tlv_parse(&tp, foh->data, oh->length-sizeof(*foh));
769
770 if (TLVP_PRESENT(&tp, NM_ATT_EVENT_TYPE))
771 DEBUGPC(DNM, "Type=%s ", event_type_name(*TLVP_VAL(&tp, NM_ATT_EVENT_TYPE)));
772 if (TLVP_PRESENT(&tp, NM_ATT_SEVERITY))
773 DEBUGPC(DNM, "Severity=%s ", severity_name(*TLVP_VAL(&tp, NM_ATT_SEVERITY)));
774
775 DEBUGPC(DNM, "\n");
776
777 return 0;
778}
779
Harald Welte97ed1e72009-02-06 13:38:02 +0000780static int abis_nm_rcvmsg_report(struct msgb *mb)
781{
782 struct abis_om_fom_hdr *foh = msgb_l3(mb);
783 u_int8_t mt = foh->msg_type;
784
Harald Welte23897662009-05-01 14:52:51 +0000785 DEBUGP(DNM, "OC=%s(%02x) INST=(%02x,%02x,%02x) ",
786 obj_class_name(foh->obj_class), foh->obj_class,
787 foh->obj_inst.bts_nr, foh->obj_inst.trx_nr,
788 foh->obj_inst.ts_nr);
789
Harald Welte97ed1e72009-02-06 13:38:02 +0000790 //nmh->cfg->report_cb(mb, foh);
791
792 switch (mt) {
793 case NM_MT_STATECHG_EVENT_REP:
794 return abis_nm_rx_statechg_rep(mb);
795 break;
Harald Welte34a99682009-02-13 02:41:40 +0000796 case NM_MT_SW_ACTIVATED_REP:
Harald Welte23897662009-05-01 14:52:51 +0000797 DEBUGPC(DNM, "Software Activated Report\n");
Harald Weltef9a8cc32009-05-01 15:39:49 +0000798 dispatch_signal(SS_NM, S_NM_SW_ACTIV_REP, mb);
Harald Welte34a99682009-02-13 02:41:40 +0000799 break;
Harald Weltee0590df2009-02-15 03:34:15 +0000800 case NM_MT_FAILURE_EVENT_REP:
Harald Welte0db97b22009-05-01 17:22:47 +0000801 rx_fail_evt_rep(mb);
Harald Weltef9a8cc32009-05-01 15:39:49 +0000802 dispatch_signal(SS_NM, S_NM_FAIL_REP, mb);
Harald Weltee0590df2009-02-15 03:34:15 +0000803 break;
Harald Weltec7310382009-08-08 00:02:36 +0200804 case NM_MT_TEST_REP:
805 DEBUGPC(DNM, "Test Report\n");
806 dispatch_signal(SS_NM, S_NM_TEST_REP, mb);
807 break;
Harald Weltee0590df2009-02-15 03:34:15 +0000808 default:
Harald Welte23897662009-05-01 14:52:51 +0000809 DEBUGPC(DNM, "reporting NM MT 0x%02x\n", mt);
Harald Weltee0590df2009-02-15 03:34:15 +0000810 break;
811
Harald Welte97ed1e72009-02-06 13:38:02 +0000812 };
813
Harald Welte97ed1e72009-02-06 13:38:02 +0000814 return 0;
815}
816
Harald Welte34a99682009-02-13 02:41:40 +0000817/* Activate the specified software into the BTS */
818static int ipacc_sw_activate(struct gsm_bts *bts, u_int8_t obj_class, u_int8_t i0, u_int8_t i1,
819 u_int8_t i2, u_int8_t *sw_desc, u_int8_t swdesc_len)
820{
821 struct abis_om_hdr *oh;
822 struct msgb *msg = nm_msgb_alloc();
823 u_int8_t len = swdesc_len;
824 u_int8_t *trailer;
825
826 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
827 fill_om_fom_hdr(oh, len, NM_MT_ACTIVATE_SW, obj_class, i0, i1, i2);
828
829 trailer = msgb_put(msg, swdesc_len);
830 memcpy(trailer, sw_desc, swdesc_len);
831
832 return abis_nm_sendmsg(bts, msg);
833}
834
835static int abis_nm_rx_sw_act_req(struct msgb *mb)
836{
837 struct abis_om_hdr *oh = msgb_l2(mb);
838 struct abis_om_fom_hdr *foh = msgb_l3(mb);
Harald Welte5c1e4582009-02-15 11:57:29 +0000839 int nack = 0;
Harald Welte34a99682009-02-13 02:41:40 +0000840 int ret;
841
Harald Welte5c1e4582009-02-15 11:57:29 +0000842 DEBUGP(DNM, "Software Activate Request ");
Harald Welte34a99682009-02-13 02:41:40 +0000843
Harald Welte5c1e4582009-02-15 11:57:29 +0000844 if (foh->obj_class >= 0xf0 && foh->obj_class <= 0xf3) {
845 DEBUGPC(DNM, "NACKing for GPRS obj_class 0x%02x\n", foh->obj_class);
846 nack = 1;
847 } else
848 DEBUGPC(DNM, "ACKing and Activating\n");
849
850 ret = abis_nm_sw_act_req_ack(mb->trx->bts, foh->obj_class,
Harald Welte34a99682009-02-13 02:41:40 +0000851 foh->obj_inst.bts_nr,
852 foh->obj_inst.trx_nr,
Harald Welte5c1e4582009-02-15 11:57:29 +0000853 foh->obj_inst.ts_nr, nack,
Harald Welte34a99682009-02-13 02:41:40 +0000854 foh->data, oh->length-sizeof(*foh));
855
Harald Welte5c1e4582009-02-15 11:57:29 +0000856 if (nack)
857 return ret;
858
Harald Welte34a99682009-02-13 02:41:40 +0000859 /* FIXME: properly parse attributes */
860 return ipacc_sw_activate(mb->trx->bts, foh->obj_class,
861 foh->obj_inst.bts_nr,
862 foh->obj_inst.trx_nr,
863 foh->obj_inst.ts_nr,
864 foh->data + oh->length-sizeof(*foh)-22, 22);
865}
866
Harald Weltee0590df2009-02-15 03:34:15 +0000867/* Receive a CHANGE_ADM_STATE_ACK, parse the TLV and update local state */
868static int abis_nm_rx_chg_adm_state_ack(struct msgb *mb)
869{
870 struct abis_om_hdr *oh = msgb_l2(mb);
871 struct abis_om_fom_hdr *foh = msgb_l3(mb);
872 struct tlv_parsed tp;
873 u_int8_t adm_state;
874
Harald Welte03133942009-02-18 19:51:53 +0000875 abis_nm_tlv_parse(&tp, foh->data, oh->length-sizeof(*foh));
Harald Weltee0590df2009-02-15 03:34:15 +0000876 if (!TLVP_PRESENT(&tp, NM_ATT_ADM_STATE))
877 return -EINVAL;
878
879 adm_state = *TLVP_VAL(&tp, NM_ATT_ADM_STATE);
880
881 return update_admstate(mb->trx->bts, foh->obj_class, &foh->obj_inst, adm_state);
882}
883
Harald Welteee670472009-02-22 21:58:49 +0000884static int abis_nm_rx_lmt_event(struct msgb *mb)
885{
886 struct abis_om_hdr *oh = msgb_l2(mb);
887 struct abis_om_fom_hdr *foh = msgb_l3(mb);
888 struct tlv_parsed tp;
889
890 DEBUGP(DNM, "LMT Event ");
891 abis_nm_tlv_parse(&tp, foh->data, oh->length-sizeof(*foh));
892 if (TLVP_PRESENT(&tp, NM_ATT_BS11_LMT_LOGON_SESSION) &&
893 TLVP_LEN(&tp, NM_ATT_BS11_LMT_LOGON_SESSION) >= 1) {
894 u_int8_t onoff = *TLVP_VAL(&tp, NM_ATT_BS11_LMT_LOGON_SESSION);
895 DEBUGPC(DNM, "LOG%s ", onoff ? "ON" : "OFF");
896 }
897 if (TLVP_PRESENT(&tp, NM_ATT_BS11_LMT_USER_ACC_LEV) &&
898 TLVP_LEN(&tp, NM_ATT_BS11_LMT_USER_ACC_LEV) >= 1) {
899 u_int8_t level = *TLVP_VAL(&tp, NM_ATT_BS11_LMT_USER_ACC_LEV);
900 DEBUGPC(DNM, "Level=%u ", level);
901 }
902 if (TLVP_PRESENT(&tp, NM_ATT_BS11_LMT_USER_NAME) &&
903 TLVP_LEN(&tp, NM_ATT_BS11_LMT_USER_NAME) >= 1) {
904 char *name = (char *) TLVP_VAL(&tp, NM_ATT_BS11_LMT_USER_NAME);
905 DEBUGPC(DNM, "Username=%s ", name);
906 }
907 DEBUGPC(DNM, "\n");
908 /* FIXME: parse LMT LOGON TIME */
909 return 0;
910}
911
Harald Welte52b1f982008-12-23 20:25:15 +0000912/* Receive a OML NM Message from BTS */
Harald Welte8470bf22008-12-25 23:28:35 +0000913static int abis_nm_rcvmsg_fom(struct msgb *mb)
Harald Welte52b1f982008-12-23 20:25:15 +0000914{
Harald Welte6c96ba52009-05-01 13:03:40 +0000915 struct abis_om_hdr *oh = msgb_l2(mb);
Harald Welte52b1f982008-12-23 20:25:15 +0000916 struct abis_om_fom_hdr *foh = msgb_l3(mb);
917 u_int8_t mt = foh->msg_type;
918
919 /* check for unsolicited message */
Harald Welte97ed1e72009-02-06 13:38:02 +0000920 if (is_report(mt))
921 return abis_nm_rcvmsg_report(mb);
Harald Welte52b1f982008-12-23 20:25:15 +0000922
Harald Welte4724f992009-01-18 18:01:49 +0000923 if (is_in_arr(mt, sw_load_msgs, ARRAY_SIZE(sw_load_msgs)))
924 return abis_nm_rcvmsg_sw(mb);
925
Harald Welte78fc0d42009-02-19 02:50:57 +0000926 if (is_in_arr(mt, nacks, ARRAY_SIZE(nacks))) {
Harald Welte6c96ba52009-05-01 13:03:40 +0000927 struct tlv_parsed tp;
Harald Welte78fc0d42009-02-19 02:50:57 +0000928 if (nack_names[mt])
Harald Welte6c96ba52009-05-01 13:03:40 +0000929 DEBUGP(DNM, "%s NACK ", nack_names[mt]);
930 /* FIXME: NACK cause */
Harald Welte78fc0d42009-02-19 02:50:57 +0000931 else
Harald Welte6c96ba52009-05-01 13:03:40 +0000932 DEBUGP(DNM, "NACK 0x%02x ", mt);
933
934 abis_nm_tlv_parse(&tp, foh->data, oh->length-sizeof(*foh));
935 if (TLVP_PRESENT(&tp, NM_ATT_NACK_CAUSES))
936 DEBUGPC(DNM, "CAUSE=%s\n",
937 nack_cause_name(*TLVP_VAL(&tp, NM_ATT_NACK_CAUSES)));
938 else
939 DEBUGPC(DNM, "\n");
Holger Hans Peter Freyther500f3ca2009-06-10 10:48:14 +0200940
941 dispatch_signal(SS_NM, S_NM_NACK, (void*) ((long)mt));
942 return 0;
Harald Welte78fc0d42009-02-19 02:50:57 +0000943 }
Harald Weltead384642008-12-26 10:20:07 +0000944#if 0
Harald Welte52b1f982008-12-23 20:25:15 +0000945 /* check if last message is to be acked */
946 if (is_ack_nack(nmh->last_msgtype)) {
947 if (mt == MT_ACK(nmh->last_msgtype)) {
948 fprintf(stderr, "received ACK (0x%x)\n",
949 foh->msg_type);
950 /* we got our ACK, continue sending the next msg */
951 } else if (mt == MT_NACK(nmh->last_msgtype)) {
952 /* we got a NACK, signal this to the caller */
953 fprintf(stderr, "received NACK (0x%x)\n",
954 foh->msg_type);
955 /* FIXME: somehow signal this to the caller */
956 } else {
957 /* really strange things happen */
958 return -EINVAL;
959 }
960 }
Harald Weltead384642008-12-26 10:20:07 +0000961#endif
962
Harald Welte97ed1e72009-02-06 13:38:02 +0000963 switch (mt) {
Harald Weltee0590df2009-02-15 03:34:15 +0000964 case NM_MT_CHG_ADM_STATE_ACK:
965 return abis_nm_rx_chg_adm_state_ack(mb);
966 break;
Harald Welte34a99682009-02-13 02:41:40 +0000967 case NM_MT_SW_ACT_REQ:
968 return abis_nm_rx_sw_act_req(mb);
969 break;
Harald Welte97ed1e72009-02-06 13:38:02 +0000970 case NM_MT_BS11_LMT_SESSION:
Harald Welteee670472009-02-22 21:58:49 +0000971 return abis_nm_rx_lmt_event(mb);
Harald Welte97ed1e72009-02-06 13:38:02 +0000972 break;
Harald Welte1989c082009-08-06 17:58:31 +0200973 case NM_MT_CONN_MDROP_LINK_ACK:
974 DEBUGP(DNM, "CONN MDROP LINK ACK\n");
975 break;
Harald Welte97ed1e72009-02-06 13:38:02 +0000976 }
977
Harald Weltead384642008-12-26 10:20:07 +0000978 return 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000979}
980
Harald Welte677c21f2009-02-17 13:22:23 +0000981static int abis_nm_rx_ipacc(struct msgb *mb);
982
983static int abis_nm_rcvmsg_manuf(struct msgb *mb)
984{
985 int rc;
986 int bts_type = mb->trx->bts->type;
987
988 switch (bts_type) {
989 case GSM_BTS_TYPE_NANOBTS_900:
990 case GSM_BTS_TYPE_NANOBTS_1800:
991 rc = abis_nm_rx_ipacc(mb);
992 break;
993 default:
994 fprintf(stderr, "don't know how to parse OML for this "
995 "BTS type (%u)\n", bts_type);
996 rc = 0;
997 break;
998 }
999
1000 return rc;
1001}
1002
Harald Welte52b1f982008-12-23 20:25:15 +00001003/* High-Level API */
1004/* Entry-point where L2 OML from BTS enters the NM code */
Harald Welte8470bf22008-12-25 23:28:35 +00001005int abis_nm_rcvmsg(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001006{
Harald Welte52b1f982008-12-23 20:25:15 +00001007 struct abis_om_hdr *oh = msgb_l2(msg);
Harald Welte677c21f2009-02-17 13:22:23 +00001008 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001009
1010 /* Various consistency checks */
1011 if (oh->placement != ABIS_OM_PLACEMENT_ONLY) {
1012 fprintf(stderr, "ABIS OML placement 0x%x not supported\n",
1013 oh->placement);
1014 return -EINVAL;
1015 }
1016 if (oh->sequence != 0) {
1017 fprintf(stderr, "ABIS OML sequence 0x%x != 0x00\n",
1018 oh->sequence);
1019 return -EINVAL;
1020 }
Harald Welte702d8702008-12-26 20:25:35 +00001021#if 0
Holger Freytherca362a62009-01-04 21:05:01 +00001022 unsigned int l2_len = msg->tail - (u_int8_t *)msgb_l2(msg);
1023 unsigned int hlen = sizeof(*oh) + sizeof(struct abis_om_fom_hdr);
Harald Welte702d8702008-12-26 20:25:35 +00001024 if (oh->length + hlen > l2_len) {
Harald Welte52b1f982008-12-23 20:25:15 +00001025 fprintf(stderr, "ABIS OML truncated message (%u > %u)\n",
1026 oh->length + sizeof(*oh), l2_len);
1027 return -EINVAL;
1028 }
Harald Welte702d8702008-12-26 20:25:35 +00001029 if (oh->length + hlen < l2_len)
1030 fprintf(stderr, "ABIS OML message with extra trailer?!? (oh->len=%d, sizeof_oh=%d l2_len=%d\n", oh->length, sizeof(*oh), l2_len);
1031#endif
Harald Weltead384642008-12-26 10:20:07 +00001032 msg->l3h = (unsigned char *)oh + sizeof(*oh);
Harald Welte52b1f982008-12-23 20:25:15 +00001033
1034 switch (oh->mdisc) {
1035 case ABIS_OM_MDISC_FOM:
Harald Welte8470bf22008-12-25 23:28:35 +00001036 rc = abis_nm_rcvmsg_fom(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001037 break;
Harald Welte677c21f2009-02-17 13:22:23 +00001038 case ABIS_OM_MDISC_MANUF:
1039 rc = abis_nm_rcvmsg_manuf(msg);
1040 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001041 case ABIS_OM_MDISC_MMI:
1042 case ABIS_OM_MDISC_TRAU:
Harald Welte677c21f2009-02-17 13:22:23 +00001043 fprintf(stderr, "unimplemented ABIS OML message discriminator 0x%x\n",
1044 oh->mdisc);
1045 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001046 default:
1047 fprintf(stderr, "unknown ABIS OML message discriminator 0x%x\n",
1048 oh->mdisc);
1049 return -EINVAL;
1050 }
1051
Harald Weltead384642008-12-26 10:20:07 +00001052 msgb_free(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001053 return rc;
1054}
1055
1056#if 0
1057/* initialized all resources */
1058struct abis_nm_h *abis_nm_init(struct abis_nm_cfg *cfg)
1059{
1060 struct abis_nm_h *nmh;
1061
1062 nmh = malloc(sizeof(*nmh));
1063 if (!nmh)
1064 return NULL;
1065
1066 nmh->cfg = cfg;
1067
1068 return nmh;
1069}
1070
1071/* free all resources */
1072void abis_nm_fini(struct abis_nm_h *nmh)
1073{
1074 free(nmh);
1075}
1076#endif
1077
1078/* Here we are trying to define a high-level API that can be used by
1079 * the actual BSC implementation. However, the architecture is currently
1080 * still under design. Ideally the calls to this API would be synchronous,
1081 * while the underlying stack behind the APi runs in a traditional select
1082 * based state machine.
1083 */
1084
Harald Welte4724f992009-01-18 18:01:49 +00001085/* 6.2 Software Load: */
1086enum sw_state {
1087 SW_STATE_NONE,
1088 SW_STATE_WAIT_INITACK,
1089 SW_STATE_WAIT_SEGACK,
1090 SW_STATE_WAIT_ENDACK,
1091 SW_STATE_WAIT_ACTACK,
1092 SW_STATE_ERROR,
1093};
Harald Welte52b1f982008-12-23 20:25:15 +00001094
Harald Welte52b1f982008-12-23 20:25:15 +00001095struct abis_nm_sw {
Harald Welte4724f992009-01-18 18:01:49 +00001096 struct gsm_bts *bts;
Harald Welte5e4d1b32009-02-01 13:36:56 +00001097 gsm_cbfn *cbfn;
1098 void *cb_data;
Harald Welte3ffd1372009-02-01 22:15:49 +00001099 int forced;
Harald Welte5e4d1b32009-02-01 13:36:56 +00001100
Harald Welte52b1f982008-12-23 20:25:15 +00001101 /* this will become part of the SW LOAD INITIATE */
1102 u_int8_t obj_class;
1103 u_int8_t obj_instance[3];
Harald Welte4724f992009-01-18 18:01:49 +00001104
1105 u_int8_t file_id[255];
1106 u_int8_t file_id_len;
1107
1108 u_int8_t file_version[255];
1109 u_int8_t file_version_len;
1110
1111 u_int8_t window_size;
1112 u_int8_t seg_in_window;
1113
1114 int fd;
1115 FILE *stream;
1116 enum sw_state state;
Harald Welte1602ade2009-01-29 21:12:39 +00001117 int last_seg;
Harald Welte52b1f982008-12-23 20:25:15 +00001118};
1119
Harald Welte4724f992009-01-18 18:01:49 +00001120static struct abis_nm_sw g_sw;
1121
1122/* 6.2.1 / 8.3.1: Load Data Initiate */
1123static int sw_load_init(struct abis_nm_sw *sw)
Harald Welte52b1f982008-12-23 20:25:15 +00001124{
Harald Welte4724f992009-01-18 18:01:49 +00001125 struct abis_om_hdr *oh;
1126 struct msgb *msg = nm_msgb_alloc();
1127 u_int8_t len = 3*2 + sw->file_id_len + sw->file_version_len;
1128
1129 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1130 fill_om_fom_hdr(oh, len, NM_MT_LOAD_INIT, sw->obj_class,
1131 sw->obj_instance[0], sw->obj_instance[1],
1132 sw->obj_instance[2]);
1133
1134 /* FIXME: this is BS11 specific format */
1135 msgb_tlv_put(msg, NM_ATT_FILE_ID, sw->file_id_len, sw->file_id);
1136 msgb_tlv_put(msg, NM_ATT_FILE_VERSION, sw->file_version_len,
1137 sw->file_version);
1138 msgb_tv_put(msg, NM_ATT_WINDOW_SIZE, sw->window_size);
1139
1140 return abis_nm_sendmsg(sw->bts, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001141}
1142
Harald Welte1602ade2009-01-29 21:12:39 +00001143static int is_last_line(FILE *stream)
1144{
1145 char next_seg_buf[256];
1146 long pos;
1147
1148 /* check if we're sending the last line */
1149 pos = ftell(stream);
1150 if (!fgets(next_seg_buf, sizeof(next_seg_buf)-2, stream)) {
1151 fseek(stream, pos, SEEK_SET);
1152 return 1;
1153 }
1154
1155 fseek(stream, pos, SEEK_SET);
1156 return 0;
1157}
1158
Harald Welte4724f992009-01-18 18:01:49 +00001159/* 6.2.2 / 8.3.2 Load Data Segment */
1160static int sw_load_segment(struct abis_nm_sw *sw)
1161{
1162 struct abis_om_hdr *oh;
1163 struct msgb *msg = nm_msgb_alloc();
1164 char seg_buf[256];
1165 char *line_buf = seg_buf+2;
Harald Welte3b8ba212009-01-29 12:27:58 +00001166 unsigned char *tlv;
Harald Welte4724f992009-01-18 18:01:49 +00001167 u_int8_t len;
Harald Welte4724f992009-01-18 18:01:49 +00001168
1169 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte3b8ba212009-01-29 12:27:58 +00001170
1171 switch (sw->bts->type) {
1172 case GSM_BTS_TYPE_BS11:
1173 if (fgets(line_buf, sizeof(seg_buf)-2, sw->stream) == NULL) {
1174 perror("fgets reading segment");
1175 return -EINVAL;
1176 }
1177 seg_buf[0] = 0x00;
Harald Welte1602ade2009-01-29 21:12:39 +00001178
1179 /* check if we're sending the last line */
1180 sw->last_seg = is_last_line(sw->stream);
1181 if (sw->last_seg)
1182 seg_buf[1] = 0;
1183 else
1184 seg_buf[1] = 1 + sw->seg_in_window++;
Harald Welte3b8ba212009-01-29 12:27:58 +00001185
1186 len = strlen(line_buf) + 2;
1187 tlv = msgb_put(msg, TLV_GROSS_LEN(len));
1188 tlv_put(tlv, NM_ATT_BS11_FILE_DATA, len, (u_int8_t *)seg_buf);
1189 /* BS11 wants CR + LF in excess of the TLV length !?! */
1190 tlv[1] -= 2;
1191
1192 /* we only now know the exact length for the OM hdr */
1193 len = strlen(line_buf)+2;
1194 break;
1195 default:
1196 /* FIXME: Other BTS types */
1197 return -1;
Harald Welte4724f992009-01-18 18:01:49 +00001198 }
Harald Welte4724f992009-01-18 18:01:49 +00001199
Harald Welte4724f992009-01-18 18:01:49 +00001200 fill_om_fom_hdr(oh, len, NM_MT_LOAD_SEG, sw->obj_class,
1201 sw->obj_instance[0], sw->obj_instance[1],
1202 sw->obj_instance[2]);
1203
1204 return abis_nm_sendmsg(sw->bts, msg);
1205}
1206
1207/* 6.2.4 / 8.3.4 Load Data End */
1208static int sw_load_end(struct abis_nm_sw *sw)
1209{
1210 struct abis_om_hdr *oh;
1211 struct msgb *msg = nm_msgb_alloc();
1212 u_int8_t len = 2*2 + sw->file_id_len + sw->file_version_len;
1213
1214 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1215 fill_om_fom_hdr(oh, len, NM_MT_LOAD_END, sw->obj_class,
1216 sw->obj_instance[0], sw->obj_instance[1],
1217 sw->obj_instance[2]);
1218
1219 /* FIXME: this is BS11 specific format */
1220 msgb_tlv_put(msg, NM_ATT_FILE_ID, sw->file_id_len, sw->file_id);
1221 msgb_tlv_put(msg, NM_ATT_FILE_VERSION, sw->file_version_len,
1222 sw->file_version);
1223
1224 return abis_nm_sendmsg(sw->bts, msg);
1225}
Harald Welte5e4d1b32009-02-01 13:36:56 +00001226
Harald Welte52b1f982008-12-23 20:25:15 +00001227/* Activate the specified software into the BTS */
Harald Welte4724f992009-01-18 18:01:49 +00001228static int sw_activate(struct abis_nm_sw *sw)
Harald Welte52b1f982008-12-23 20:25:15 +00001229{
Harald Welte4724f992009-01-18 18:01:49 +00001230 struct abis_om_hdr *oh;
1231 struct msgb *msg = nm_msgb_alloc();
1232 u_int8_t len = 2*2 + sw->file_id_len + sw->file_version_len;
Harald Welte52b1f982008-12-23 20:25:15 +00001233
Harald Welte4724f992009-01-18 18:01:49 +00001234 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1235 fill_om_fom_hdr(oh, len, NM_MT_ACTIVATE_SW, sw->obj_class,
1236 sw->obj_instance[0], sw->obj_instance[1],
1237 sw->obj_instance[2]);
1238
1239 /* FIXME: this is BS11 specific format */
1240 msgb_tlv_put(msg, NM_ATT_FILE_ID, sw->file_id_len, sw->file_id);
1241 msgb_tlv_put(msg, NM_ATT_FILE_VERSION, sw->file_version_len,
1242 sw->file_version);
1243
1244 return abis_nm_sendmsg(sw->bts, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001245}
Harald Welte4724f992009-01-18 18:01:49 +00001246
1247static int sw_open_file(struct abis_nm_sw *sw, const char *fname)
1248{
1249 char file_id[12+1];
1250 char file_version[80+1];
1251 int rc;
1252
1253 sw->fd = open(fname, O_RDONLY);
1254 if (sw->fd < 0)
1255 return sw->fd;
1256
1257 switch (sw->bts->type) {
1258 case GSM_BTS_TYPE_BS11:
1259 sw->stream = fdopen(sw->fd, "r");
1260 if (!sw->stream) {
1261 perror("fdopen");
1262 return -1;
1263 }
1264 /* read first line and parse file ID and VERSION */
Harald Welte3b8ba212009-01-29 12:27:58 +00001265 rc = fscanf(sw->stream, "@(#)%12s:%80s\r\n",
Harald Welte4724f992009-01-18 18:01:49 +00001266 file_id, file_version);
1267 if (rc != 2) {
1268 perror("parsing header line of software file");
1269 return -1;
1270 }
1271 strcpy((char *)sw->file_id, file_id);
1272 sw->file_id_len = strlen(file_id);
1273 strcpy((char *)sw->file_version, file_version);
1274 sw->file_version_len = strlen(file_version);
1275 /* rewind to start of file */
Harald Welte3b8ba212009-01-29 12:27:58 +00001276 rewind(sw->stream);
Harald Welte4724f992009-01-18 18:01:49 +00001277 break;
1278 default:
1279 /* We don't know how to treat them yet */
1280 close(sw->fd);
1281 return -EINVAL;
1282 }
1283
1284 return 0;
1285}
1286
1287static void sw_close_file(struct abis_nm_sw *sw)
1288{
1289 switch (sw->bts->type) {
1290 case GSM_BTS_TYPE_BS11:
1291 fclose(sw->stream);
1292 break;
1293 default:
1294 close(sw->fd);
1295 break;
1296 }
1297}
1298
1299/* Fill the window */
1300static int sw_fill_window(struct abis_nm_sw *sw)
1301{
1302 int rc;
1303
1304 while (sw->seg_in_window < sw->window_size) {
1305 rc = sw_load_segment(sw);
1306 if (rc < 0)
1307 return rc;
Harald Welte1602ade2009-01-29 21:12:39 +00001308 if (sw->last_seg)
1309 break;
Harald Welte4724f992009-01-18 18:01:49 +00001310 }
1311 return 0;
1312}
1313
1314/* callback function from abis_nm_rcvmsg() handler */
1315static int abis_nm_rcvmsg_sw(struct msgb *mb)
1316{
1317 struct abis_om_fom_hdr *foh = msgb_l3(mb);
1318 int rc = -1;
1319 struct abis_nm_sw *sw = &g_sw;
1320 enum sw_state old_state = sw->state;
1321
Harald Welte3ffd1372009-02-01 22:15:49 +00001322 //DEBUGP(DNM, "state %u, NM MT 0x%02x\n", sw->state, foh->msg_type);
Harald Welte4724f992009-01-18 18:01:49 +00001323
1324 switch (sw->state) {
1325 case SW_STATE_WAIT_INITACK:
1326 switch (foh->msg_type) {
1327 case NM_MT_LOAD_INIT_ACK:
1328 /* fill window with segments */
Harald Welte5e4d1b32009-02-01 13:36:56 +00001329 if (sw->cbfn)
1330 sw->cbfn(GSM_HOOK_NM_SWLOAD,
1331 NM_MT_LOAD_INIT_ACK, mb,
1332 sw->cb_data, NULL);
Harald Welte4724f992009-01-18 18:01:49 +00001333 rc = sw_fill_window(sw);
1334 sw->state = SW_STATE_WAIT_SEGACK;
1335 break;
1336 case NM_MT_LOAD_INIT_NACK:
Harald Welte3ffd1372009-02-01 22:15:49 +00001337 if (sw->forced) {
1338 DEBUGP(DNM, "FORCED: Ignoring Software Load "
1339 "Init NACK\n");
1340 if (sw->cbfn)
1341 sw->cbfn(GSM_HOOK_NM_SWLOAD,
1342 NM_MT_LOAD_INIT_ACK, mb,
1343 sw->cb_data, NULL);
1344 rc = sw_fill_window(sw);
1345 sw->state = SW_STATE_WAIT_SEGACK;
1346 } else {
1347 DEBUGP(DNM, "Software Load Init NACK\n");
Harald Welte6c96ba52009-05-01 13:03:40 +00001348 /* FIXME: cause */
Harald Welte3ffd1372009-02-01 22:15:49 +00001349 if (sw->cbfn)
1350 sw->cbfn(GSM_HOOK_NM_SWLOAD,
1351 NM_MT_LOAD_INIT_NACK, mb,
1352 sw->cb_data, NULL);
1353 sw->state = SW_STATE_ERROR;
1354 }
Harald Welte4724f992009-01-18 18:01:49 +00001355 break;
1356 }
1357 break;
1358 case SW_STATE_WAIT_SEGACK:
1359 switch (foh->msg_type) {
1360 case NM_MT_LOAD_SEG_ACK:
Harald Welte3ffd1372009-02-01 22:15:49 +00001361 if (sw->cbfn)
1362 sw->cbfn(GSM_HOOK_NM_SWLOAD,
1363 NM_MT_LOAD_SEG_ACK, mb,
1364 sw->cb_data, NULL);
Harald Welte4724f992009-01-18 18:01:49 +00001365 sw->seg_in_window = 0;
Harald Welte1602ade2009-01-29 21:12:39 +00001366 if (!sw->last_seg) {
1367 /* fill window with more segments */
1368 rc = sw_fill_window(sw);
1369 sw->state = SW_STATE_WAIT_SEGACK;
1370 } else {
1371 /* end the transfer */
1372 sw->state = SW_STATE_WAIT_ENDACK;
1373 rc = sw_load_end(sw);
1374 }
Harald Welte4724f992009-01-18 18:01:49 +00001375 break;
1376 }
1377 break;
1378 case SW_STATE_WAIT_ENDACK:
1379 switch (foh->msg_type) {
1380 case NM_MT_LOAD_END_ACK:
1381 sw_close_file(sw);
Harald Welte5e4d1b32009-02-01 13:36:56 +00001382 DEBUGP(DNM, "Software Load End (BTS %u)\n",
1383 sw->bts->nr);
1384 sw->state = SW_STATE_NONE;
1385 if (sw->cbfn)
1386 sw->cbfn(GSM_HOOK_NM_SWLOAD,
1387 NM_MT_LOAD_END_ACK, mb,
1388 sw->cb_data, NULL);
Harald Welte4724f992009-01-18 18:01:49 +00001389 break;
1390 case NM_MT_LOAD_END_NACK:
Holger Freyther31338a12009-02-06 17:43:50 +00001391 if (sw->forced) {
1392 DEBUGP(DNM, "FORCED: Ignoring Software Load"
1393 "End NACK\n");
1394 sw->state = SW_STATE_NONE;
1395 if (sw->cbfn)
1396 sw->cbfn(GSM_HOOK_NM_SWLOAD,
1397 NM_MT_LOAD_END_ACK, mb,
1398 sw->cb_data, NULL);
1399 } else {
1400 DEBUGP(DNM, "Software Load End NACK\n");
Harald Welte6c96ba52009-05-01 13:03:40 +00001401 /* FIXME: cause */
Holger Freyther31338a12009-02-06 17:43:50 +00001402 sw->state = SW_STATE_ERROR;
1403 if (sw->cbfn)
1404 sw->cbfn(GSM_HOOK_NM_SWLOAD,
1405 NM_MT_LOAD_END_NACK, mb,
1406 sw->cb_data, NULL);
1407 }
Harald Welte4724f992009-01-18 18:01:49 +00001408 break;
1409 }
1410 case SW_STATE_WAIT_ACTACK:
1411 switch (foh->msg_type) {
1412 case NM_MT_ACTIVATE_SW_ACK:
1413 /* we're done */
Harald Welte5e4d1b32009-02-01 13:36:56 +00001414 DEBUGP(DNM, "Activate Software DONE!\n");
Harald Welte4724f992009-01-18 18:01:49 +00001415 sw->state = SW_STATE_NONE;
1416 rc = 0;
Harald Welte5e4d1b32009-02-01 13:36:56 +00001417 if (sw->cbfn)
1418 sw->cbfn(GSM_HOOK_NM_SWLOAD,
1419 NM_MT_ACTIVATE_SW_ACK, mb,
1420 sw->cb_data, NULL);
Harald Welte4724f992009-01-18 18:01:49 +00001421 break;
1422 case NM_MT_ACTIVATE_SW_NACK:
Harald Welte1602ade2009-01-29 21:12:39 +00001423 DEBUGP(DNM, "Activate Software NACK\n");
Harald Welte6c96ba52009-05-01 13:03:40 +00001424 /* FIXME: cause */
Harald Welte4724f992009-01-18 18:01:49 +00001425 sw->state = SW_STATE_ERROR;
Harald Welte5e4d1b32009-02-01 13:36:56 +00001426 if (sw->cbfn)
1427 sw->cbfn(GSM_HOOK_NM_SWLOAD,
1428 NM_MT_ACTIVATE_SW_NACK, mb,
1429 sw->cb_data, NULL);
Harald Welte4724f992009-01-18 18:01:49 +00001430 break;
1431 }
1432 case SW_STATE_NONE:
Harald Weltea994a482009-05-01 15:54:23 +00001433 switch (foh->msg_type) {
1434 case NM_MT_ACTIVATE_SW_ACK:
1435 rc = 0;
1436 break;
1437 }
1438 break;
Harald Welte4724f992009-01-18 18:01:49 +00001439 case SW_STATE_ERROR:
1440 break;
1441 }
1442
1443 if (rc)
Harald Weltea994a482009-05-01 15:54:23 +00001444 DEBUGP(DNM, "unexpected NM MT 0x%02x in state %u -> %u\n",
Harald Welte4724f992009-01-18 18:01:49 +00001445 foh->msg_type, old_state, sw->state);
1446
1447 return rc;
1448}
1449
1450/* Load the specified software into the BTS */
1451int abis_nm_software_load(struct gsm_bts *bts, const char *fname,
Harald Welte3ffd1372009-02-01 22:15:49 +00001452 u_int8_t win_size, int forced,
1453 gsm_cbfn *cbfn, void *cb_data)
Harald Welte4724f992009-01-18 18:01:49 +00001454{
1455 struct abis_nm_sw *sw = &g_sw;
1456 int rc;
1457
Harald Welte5e4d1b32009-02-01 13:36:56 +00001458 DEBUGP(DNM, "Software Load (BTS %u, File \"%s\")\n",
1459 bts->nr, fname);
1460
Harald Welte4724f992009-01-18 18:01:49 +00001461 if (sw->state != SW_STATE_NONE)
1462 return -EBUSY;
1463
1464 sw->bts = bts;
1465 sw->obj_class = NM_OC_SITE_MANAGER;
1466 sw->obj_instance[0] = 0xff;
1467 sw->obj_instance[1] = 0xff;
1468 sw->obj_instance[2] = 0xff;
1469 sw->window_size = win_size;
1470 sw->state = SW_STATE_WAIT_INITACK;
Harald Welte5e4d1b32009-02-01 13:36:56 +00001471 sw->cbfn = cbfn;
1472 sw->cb_data = cb_data;
Harald Welte3ffd1372009-02-01 22:15:49 +00001473 sw->forced = forced;
Harald Welte4724f992009-01-18 18:01:49 +00001474
1475 rc = sw_open_file(sw, fname);
1476 if (rc < 0) {
1477 sw->state = SW_STATE_NONE;
1478 return rc;
1479 }
1480
1481 return sw_load_init(sw);
1482}
Harald Welte52b1f982008-12-23 20:25:15 +00001483
Harald Welte1602ade2009-01-29 21:12:39 +00001484int abis_nm_software_load_status(struct gsm_bts *bts)
1485{
1486 struct abis_nm_sw *sw = &g_sw;
1487 struct stat st;
1488 int rc, percent;
1489
1490 rc = fstat(sw->fd, &st);
1491 if (rc < 0) {
1492 perror("ERROR during stat");
1493 return rc;
1494 }
1495
1496 percent = (ftell(sw->stream) * 100) / st.st_size;
1497 return percent;
1498}
1499
Harald Welte5e4d1b32009-02-01 13:36:56 +00001500/* Activate the specified software into the BTS */
1501int abis_nm_software_activate(struct gsm_bts *bts, const char *fname,
1502 gsm_cbfn *cbfn, void *cb_data)
1503{
1504 struct abis_nm_sw *sw = &g_sw;
1505 int rc;
1506
1507 DEBUGP(DNM, "Activating Software (BTS %u, File \"%s\")\n",
1508 bts->nr, fname);
1509
1510 if (sw->state != SW_STATE_NONE)
1511 return -EBUSY;
1512
1513 sw->bts = bts;
1514 sw->obj_class = NM_OC_SITE_MANAGER;
1515 sw->obj_instance[0] = 0xff;
1516 sw->obj_instance[1] = 0xff;
1517 sw->obj_instance[2] = 0xff;
1518 sw->state = SW_STATE_WAIT_ACTACK;
1519 sw->cbfn = cbfn;
1520 sw->cb_data = cb_data;
1521
1522 /* Open the file in order to fill some sw struct members */
1523 rc = sw_open_file(sw, fname);
1524 if (rc < 0) {
1525 sw->state = SW_STATE_NONE;
1526 return rc;
1527 }
1528 sw_close_file(sw);
1529
1530 return sw_activate(sw);
1531}
1532
Harald Welte8470bf22008-12-25 23:28:35 +00001533static void fill_nm_channel(struct abis_nm_channel *ch, u_int8_t bts_port,
Harald Welte52b1f982008-12-23 20:25:15 +00001534 u_int8_t ts_nr, u_int8_t subslot_nr)
1535{
Harald Welteadaf08b2009-01-18 11:08:10 +00001536 ch->attrib = NM_ATT_ABIS_CHANNEL;
Harald Welte52b1f982008-12-23 20:25:15 +00001537 ch->bts_port = bts_port;
1538 ch->timeslot = ts_nr;
1539 ch->subslot = subslot_nr;
1540}
1541
1542int abis_nm_establish_tei(struct gsm_bts *bts, u_int8_t trx_nr,
1543 u_int8_t e1_port, u_int8_t e1_timeslot, u_int8_t e1_subslot,
1544 u_int8_t tei)
1545{
1546 struct abis_om_hdr *oh;
1547 struct abis_nm_channel *ch;
Harald Welte702d8702008-12-26 20:25:35 +00001548 u_int8_t len = sizeof(*ch) + 2;
Harald Welte8470bf22008-12-25 23:28:35 +00001549 struct msgb *msg = nm_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +00001550
1551 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1552 fill_om_fom_hdr(oh, len, NM_MT_ESTABLISH_TEI, NM_OC_RADIO_CARRIER,
1553 bts->bts_nr, trx_nr, 0xff);
1554
Harald Welte8470bf22008-12-25 23:28:35 +00001555 msgb_tv_put(msg, NM_ATT_TEI, tei);
Harald Welte52b1f982008-12-23 20:25:15 +00001556
1557 ch = (struct abis_nm_channel *) msgb_put(msg, sizeof(*ch));
1558 fill_nm_channel(ch, e1_port, e1_timeslot, e1_subslot);
1559
1560 return abis_nm_sendmsg(bts, msg);
1561}
1562
1563/* connect signalling of one (BTS,TRX) to a particular timeslot on the E1 */
1564int abis_nm_conn_terr_sign(struct gsm_bts_trx *trx,
1565 u_int8_t e1_port, u_int8_t e1_timeslot, u_int8_t e1_subslot)
1566{
Harald Welte8470bf22008-12-25 23:28:35 +00001567 struct gsm_bts *bts = trx->bts;
Harald Welte52b1f982008-12-23 20:25:15 +00001568 struct abis_om_hdr *oh;
1569 struct abis_nm_channel *ch;
Harald Welte8470bf22008-12-25 23:28:35 +00001570 struct msgb *msg = nm_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +00001571
1572 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +00001573 fill_om_fom_hdr(oh, sizeof(*ch), NM_MT_CONN_TERR_SIGN,
Harald Welte52b1f982008-12-23 20:25:15 +00001574 NM_OC_RADIO_CARRIER, bts->bts_nr, trx->nr, 0xff);
1575
1576 ch = (struct abis_nm_channel *) msgb_put(msg, sizeof(*ch));
1577 fill_nm_channel(ch, e1_port, e1_timeslot, e1_subslot);
1578
1579 return abis_nm_sendmsg(bts, msg);
1580}
1581
1582#if 0
1583int abis_nm_disc_terr_sign(struct abis_nm_h *h, struct abis_om_obj_inst *inst,
1584 struct abis_nm_abis_channel *chan)
1585{
1586}
1587#endif
1588
1589int abis_nm_conn_terr_traf(struct gsm_bts_trx_ts *ts,
1590 u_int8_t e1_port, u_int8_t e1_timeslot,
1591 u_int8_t e1_subslot)
1592{
1593 struct gsm_bts *bts = ts->trx->bts;
1594 struct abis_om_hdr *oh;
1595 struct abis_nm_channel *ch;
Harald Welte8470bf22008-12-25 23:28:35 +00001596 struct msgb *msg = nm_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +00001597
1598 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1599 fill_om_fom_hdr(oh, sizeof(*ch), NM_MT_CONN_TERR_TRAF,
Harald Welteb110cee2009-02-18 03:42:35 +00001600 NM_OC_CHANNEL, bts->bts_nr, ts->trx->nr, ts->nr);
Harald Welte52b1f982008-12-23 20:25:15 +00001601
1602 ch = (struct abis_nm_channel *) msgb_put(msg, sizeof(*ch));
1603 fill_nm_channel(ch, e1_port, e1_timeslot, e1_subslot);
1604
Harald Weltef325eb42009-02-19 17:07:39 +00001605 DEBUGP(DNM, "CONNECT TERR TRAF Um=%s E1=(%u,%u,%u)\n",
1606 gsm_ts_name(ts),
Harald Welteb110cee2009-02-18 03:42:35 +00001607 e1_port, e1_timeslot, e1_subslot);
1608
Harald Welte52b1f982008-12-23 20:25:15 +00001609 return abis_nm_sendmsg(bts, msg);
1610}
1611
1612#if 0
1613int abis_nm_disc_terr_traf(struct abis_nm_h *h, struct abis_om_obj_inst *inst,
1614 struct abis_nm_abis_channel *chan,
1615 u_int8_t subchan)
1616{
1617}
1618#endif
1619
Harald Welte22af0db2009-02-14 15:41:08 +00001620/* Chapter 8.6.1 */
1621int abis_nm_set_bts_attr(struct gsm_bts *bts, u_int8_t *attr, int attr_len)
1622{
1623 struct abis_om_hdr *oh;
1624 struct msgb *msg = nm_msgb_alloc();
1625 u_int8_t *cur;
1626
1627 DEBUGP(DNM, "Set BTS Attr (bts=%d)\n", bts->nr);
1628
1629 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte191280d2009-05-01 13:20:04 +00001630 fill_om_fom_hdr(oh, attr_len, NM_MT_SET_BTS_ATTR, NM_OC_BTS, bts->bts_nr, 0xff, 0xff);
Harald Welte22af0db2009-02-14 15:41:08 +00001631 cur = msgb_put(msg, attr_len);
1632 memcpy(cur, attr, attr_len);
1633
1634 return abis_nm_sendmsg(bts, msg);
1635}
1636
1637/* Chapter 8.6.2 */
1638int abis_nm_set_radio_attr(struct gsm_bts_trx *trx, u_int8_t *attr, int attr_len)
1639{
1640 struct abis_om_hdr *oh;
1641 struct msgb *msg = nm_msgb_alloc();
1642 u_int8_t *cur;
1643
1644 DEBUGP(DNM, "Set TRX Attr (bts=%d,trx=%d)\n", trx->bts->nr, trx->nr);
1645
1646 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1647 fill_om_fom_hdr(oh, attr_len, NM_MT_SET_RADIO_ATTR, NM_OC_RADIO_CARRIER,
Harald Welte191280d2009-05-01 13:20:04 +00001648 trx->bts->bts_nr, trx->nr, 0xff);
Harald Welte22af0db2009-02-14 15:41:08 +00001649 cur = msgb_put(msg, attr_len);
1650 memcpy(cur, attr, attr_len);
1651
1652 return abis_nm_sendmsg(trx->bts, msg);
1653}
1654
Harald Welte39c7deb2009-08-09 21:49:48 +02001655static int verify_chan_comb(struct gsm_bts_trx_ts *ts, u_int8_t chan_comb)
1656{
1657 int i;
1658
1659 /* As it turns out, the BS-11 has some very peculiar restrictions
1660 * on the channel combinations it allows */
1661 if (ts->trx->bts->type == GSM_BTS_TYPE_BS11) {
1662 switch (chan_comb) {
1663 case NM_CHANC_TCHHalf:
1664 case NM_CHANC_TCHHalf2:
1665 /* not supported */
1666 return -EINVAL;
1667 case NM_CHANC_SDCCH:
1668 /* only one SDCCH/8 per TRX */
1669 for (i = 0; i < TRX_NR_TS; i++) {
1670 if (i == ts->nr)
1671 continue;
1672 if (ts->trx->ts[i].nm_chan_comb ==
1673 NM_CHANC_SDCCH)
1674 return -EINVAL;
1675 }
1676 /* not allowed for TS0 of BCCH-TRX */
1677 if (ts->trx == ts->trx->bts->c0 &&
1678 ts->nr == 0)
1679 return -EINVAL;
1680 /* not on the same TRX that has a BCCH+SDCCH4
1681 * combination */
1682 if (ts->trx == ts->trx->bts->c0 &&
1683 (ts->trx->ts[0].nm_chan_comb == 5 ||
1684 ts->trx->ts[0].nm_chan_comb == 8))
1685 return -EINVAL;
1686 break;
1687 case NM_CHANC_mainBCCH:
1688 case NM_CHANC_BCCHComb:
1689 /* allowed only for TS0 of C0 */
1690 if (ts->trx != ts->trx->bts->c0 ||
1691 ts->nr != 0)
1692 return -EINVAL;
1693 break;
1694 case NM_CHANC_BCCH:
1695 /* allowed only for TS 2/4/6 of C0 */
1696 if (ts->trx != ts->trx->bts->c0)
1697 return -EINVAL;
1698 if (ts->nr != 2 && ts->nr != 4 &&
1699 ts->nr != 6)
1700 return -EINVAL;
1701 break;
1702 case 8: /* this is not like 08.58, but in fact
1703 * FCCH+SCH+BCCH+CCCH+SDCCH/4+SACCH/C4+CBCH */
1704 /* FIXME: only one CBCH allowed per cell */
1705 break;
1706 }
1707 }
1708 return 0;
1709}
1710
Harald Welte22af0db2009-02-14 15:41:08 +00001711/* Chapter 8.6.3 */
Harald Welte52b1f982008-12-23 20:25:15 +00001712int abis_nm_set_channel_attr(struct gsm_bts_trx_ts *ts, u_int8_t chan_comb)
1713{
1714 struct gsm_bts *bts = ts->trx->bts;
1715 struct abis_om_hdr *oh;
Harald Welte8470bf22008-12-25 23:28:35 +00001716 u_int16_t arfcn = htons(ts->trx->arfcn);
Harald Welte52b1f982008-12-23 20:25:15 +00001717 u_int8_t zero = 0x00;
Harald Welte8470bf22008-12-25 23:28:35 +00001718 struct msgb *msg = nm_msgb_alloc();
Harald Weltee0590df2009-02-15 03:34:15 +00001719 u_int8_t len = 2 + 2;
1720
1721 if (bts->type == GSM_BTS_TYPE_BS11)
1722 len += 4 + 2 + 2 + 3;
Harald Welte52b1f982008-12-23 20:25:15 +00001723
Harald Weltef325eb42009-02-19 17:07:39 +00001724 DEBUGP(DNM, "Set Chan Attr %s\n", gsm_ts_name(ts));
Harald Welte39c7deb2009-08-09 21:49:48 +02001725 if (verify_chan_comb(ts, chan_comb) < 0) {
1726 msgb_free(msg);
1727 DEBUGP(DNM, "Invalid Channel Combination!!!\n");
1728 return -EINVAL;
1729 }
1730 ts->nm_chan_comb = chan_comb;
Harald Welte22af0db2009-02-14 15:41:08 +00001731
Harald Welte52b1f982008-12-23 20:25:15 +00001732 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte702d8702008-12-26 20:25:35 +00001733 fill_om_fom_hdr(oh, len, NM_MT_SET_CHAN_ATTR,
Holger Freyther6b2d2622009-02-14 23:16:59 +00001734 NM_OC_CHANNEL, bts->bts_nr,
Harald Welte52b1f982008-12-23 20:25:15 +00001735 ts->trx->nr, ts->nr);
1736 /* FIXME: don't send ARFCN list, hopping sequence, mAIO, ...*/
Harald Weltee0590df2009-02-15 03:34:15 +00001737 if (bts->type == GSM_BTS_TYPE_BS11)
1738 msgb_tlv16_put(msg, NM_ATT_ARFCN_LIST, 1, &arfcn);
Harald Welte52b1f982008-12-23 20:25:15 +00001739 msgb_tv_put(msg, NM_ATT_CHAN_COMB, chan_comb);
Harald Weltee0590df2009-02-15 03:34:15 +00001740 if (bts->type == GSM_BTS_TYPE_BS11) {
1741 msgb_tv_put(msg, NM_ATT_HSN, 0x00);
1742 msgb_tv_put(msg, NM_ATT_MAIO, 0x00);
1743 }
Harald Weltee6c22d92009-07-21 20:40:05 +02001744 msgb_tv_put(msg, NM_ATT_TSC, bts->tsc); /* training sequence */
Harald Weltee0590df2009-02-15 03:34:15 +00001745 if (bts->type == GSM_BTS_TYPE_BS11)
1746 msgb_tlv_put(msg, 0x59, 1, &zero);
Harald Welte52b1f982008-12-23 20:25:15 +00001747
1748 return abis_nm_sendmsg(bts, msg);
1749}
1750
Harald Welte34a99682009-02-13 02:41:40 +00001751int abis_nm_sw_act_req_ack(struct gsm_bts *bts, u_int8_t obj_class, u_int8_t i1,
Harald Welte5c1e4582009-02-15 11:57:29 +00001752 u_int8_t i2, u_int8_t i3, int nack, u_int8_t *attr, int att_len)
Harald Welte34a99682009-02-13 02:41:40 +00001753{
1754 struct abis_om_hdr *oh;
1755 struct msgb *msg = nm_msgb_alloc();
Harald Welte5c1e4582009-02-15 11:57:29 +00001756 u_int8_t msgtype = NM_MT_SW_ACT_REQ_ACK;
1757 u_int8_t len = att_len;
1758
1759 if (nack) {
1760 len += 2;
1761 msgtype = NM_MT_SW_ACT_REQ_NACK;
1762 }
Harald Welte34a99682009-02-13 02:41:40 +00001763
1764 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte5c1e4582009-02-15 11:57:29 +00001765 fill_om_fom_hdr(oh, att_len, msgtype, obj_class, i1, i2, i3);
1766
Harald Welte34a99682009-02-13 02:41:40 +00001767 if (attr) {
1768 u_int8_t *ptr = msgb_put(msg, att_len);
1769 memcpy(ptr, attr, att_len);
1770 }
Harald Welte5c1e4582009-02-15 11:57:29 +00001771 if (nack)
1772 msgb_tv_put(msg, NM_ATT_NACK_CAUSES, NM_NACK_OBJCLASS_NOTSUPP);
Harald Welte34a99682009-02-13 02:41:40 +00001773
1774 return abis_nm_sendmsg(bts, msg);
1775}
1776
Harald Welte8470bf22008-12-25 23:28:35 +00001777int abis_nm_raw_msg(struct gsm_bts *bts, int len, u_int8_t *rawmsg)
Harald Welte52b1f982008-12-23 20:25:15 +00001778{
Harald Welte8470bf22008-12-25 23:28:35 +00001779 struct msgb *msg = nm_msgb_alloc();
1780 struct abis_om_hdr *oh;
Harald Welte52b1f982008-12-23 20:25:15 +00001781 u_int8_t *data;
1782
1783 oh = (struct abis_om_hdr *) msgb_put(msg, sizeof(*oh));
1784 fill_om_hdr(oh, len);
1785 data = msgb_put(msg, len);
Harald Weltead384642008-12-26 10:20:07 +00001786 memcpy(data, rawmsg, len);
Harald Welte52b1f982008-12-23 20:25:15 +00001787
1788 return abis_nm_sendmsg(bts, msg);
1789}
1790
1791/* Siemens specific commands */
1792static int __simple_cmd(struct gsm_bts *bts, u_int8_t msg_type)
1793{
1794 struct abis_om_hdr *oh;
Harald Welte8470bf22008-12-25 23:28:35 +00001795 struct msgb *msg = nm_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +00001796
1797 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte702d8702008-12-26 20:25:35 +00001798 fill_om_fom_hdr(oh, 0, msg_type, NM_OC_SITE_MANAGER,
Harald Welte52b1f982008-12-23 20:25:15 +00001799 0xff, 0xff, 0xff);
1800
1801 return abis_nm_sendmsg(bts, msg);
1802}
1803
Harald Welte34a99682009-02-13 02:41:40 +00001804/* Chapter 8.9.2 */
1805int abis_nm_opstart(struct gsm_bts *bts, u_int8_t obj_class, u_int8_t i0, u_int8_t i1, u_int8_t i2)
1806{
1807 struct abis_om_hdr *oh;
1808 struct msgb *msg = nm_msgb_alloc();
1809
Harald Welte22af0db2009-02-14 15:41:08 +00001810 DEBUGP(DNM, "Sending OPSTART obj_class=0x%02x obj_inst=(0x%02x, 0x%02x, 0x%02x)\n",
1811 obj_class, i0, i1, i2);
Harald Welte34a99682009-02-13 02:41:40 +00001812 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1813 fill_om_fom_hdr(oh, 0, NM_MT_OPSTART, obj_class, i0, i1, i2);
1814
1815 return abis_nm_sendmsg(bts, msg);
1816}
1817
1818/* Chapter 8.8.5 */
1819int abis_nm_chg_adm_state(struct gsm_bts *bts, u_int8_t obj_class, u_int8_t i0,
1820 u_int8_t i1, u_int8_t i2, u_int8_t adm_state)
1821{
1822 struct abis_om_hdr *oh;
1823 struct msgb *msg = nm_msgb_alloc();
1824
1825 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1826 fill_om_fom_hdr(oh, 2, NM_MT_CHG_ADM_STATE, obj_class, i0, i1, i2);
1827 msgb_tv_put(msg, NM_ATT_ADM_STATE, adm_state);
1828
1829 return abis_nm_sendmsg(bts, msg);
1830}
1831
Harald Welte1989c082009-08-06 17:58:31 +02001832int abis_nm_conn_mdrop_link(struct gsm_bts *bts, u_int8_t e1_port0, u_int8_t ts0,
1833 u_int8_t e1_port1, u_int8_t ts1)
1834{
1835 struct abis_om_hdr *oh;
1836 struct msgb *msg = nm_msgb_alloc();
1837 u_int8_t *attr;
1838
1839 DEBUGP(DNM, "CONNECT MDROP LINK E1=(%u,%u) -> E1=(%u, %u)\n",
1840 e1_port0, ts0, e1_port1, ts1);
1841
1842 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1843 fill_om_fom_hdr(oh, 6, NM_MT_CONN_MDROP_LINK,
1844 NM_OC_SITE_MANAGER, 0x00, 0x00, 0x00);
1845
1846 attr = msgb_put(msg, 3);
1847 attr[0] = NM_ATT_MDROP_LINK;
1848 attr[1] = e1_port0;
1849 attr[2] = ts0;
1850
1851 attr = msgb_put(msg, 3);
1852 attr[0] = NM_ATT_MDROP_NEXT;
1853 attr[1] = e1_port1;
1854 attr[2] = ts1;
1855
1856 return abis_nm_sendmsg(bts, msg);
1857}
Harald Welte34a99682009-02-13 02:41:40 +00001858
Harald Weltec7310382009-08-08 00:02:36 +02001859/* Chapter 8.7.1 */
1860int abis_nm_perform_test(struct gsm_bts *bts, u_int8_t obj_class,
1861 u_int8_t bts_nr, u_int8_t trx_nr, u_int8_t ts_nr,
1862 u_int8_t test_nr, u_int8_t auton_report,
1863 u_int8_t *phys_config, u_int16_t phys_config_len)
1864{
1865 struct abis_om_hdr *oh;
1866 struct msgb *msg = nm_msgb_alloc();
1867 int len = 4; /* 2 TV attributes */
1868
1869 DEBUGP(DNM, "PEFORM TEST\n");
1870
1871 if (phys_config_len)
1872 len += 3 + phys_config_len;
1873
1874 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1875 fill_om_fom_hdr(oh, len, NM_MT_PERF_TEST,
1876 obj_class, bts_nr, trx_nr, ts_nr);
1877 msgb_tv_put(msg, NM_ATT_TEST_NO, test_nr);
1878 msgb_tv_put(msg, NM_ATT_AUTON_REPORT, auton_report);
1879 if (phys_config_len)
1880 msgb_tl16v_put(msg, NM_ATT_PHYS_CONF, phys_config_len,
1881 phys_config);
1882
1883 return abis_nm_sendmsg(bts, msg);
1884}
1885
Harald Welte52b1f982008-12-23 20:25:15 +00001886int abis_nm_event_reports(struct gsm_bts *bts, int on)
1887{
1888 if (on == 0)
Harald Welte227d4072009-01-03 08:16:25 +00001889 return __simple_cmd(bts, NM_MT_STOP_EVENT_REP);
Harald Welte52b1f982008-12-23 20:25:15 +00001890 else
Harald Welte227d4072009-01-03 08:16:25 +00001891 return __simple_cmd(bts, NM_MT_REST_EVENT_REP);
Harald Welte52b1f982008-12-23 20:25:15 +00001892}
1893
Harald Welte47d88ae2009-01-04 12:02:08 +00001894/* Siemens (or BS-11) specific commands */
1895
Harald Welte3ffd1372009-02-01 22:15:49 +00001896int abis_nm_bs11_bsc_disconnect(struct gsm_bts *bts, int reconnect)
1897{
1898 if (reconnect == 0)
1899 return __simple_cmd(bts, NM_MT_BS11_DISCONNECT);
1900 else
1901 return __simple_cmd(bts, NM_MT_BS11_RECONNECT);
1902}
1903
Harald Welteb8427972009-02-05 19:27:17 +00001904int abis_nm_bs11_restart(struct gsm_bts *bts)
1905{
1906 return __simple_cmd(bts, NM_MT_BS11_RESTART);
1907}
1908
1909
Harald Welte268bb402009-02-01 19:11:56 +00001910struct bs11_date_time {
1911 u_int16_t year;
1912 u_int8_t month;
1913 u_int8_t day;
1914 u_int8_t hour;
1915 u_int8_t min;
1916 u_int8_t sec;
1917} __attribute__((packed));
1918
1919
1920void get_bs11_date_time(struct bs11_date_time *aet)
1921{
1922 time_t t;
1923 struct tm *tm;
1924
1925 t = time(NULL);
1926 tm = localtime(&t);
1927 aet->sec = tm->tm_sec;
1928 aet->min = tm->tm_min;
1929 aet->hour = tm->tm_hour;
1930 aet->day = tm->tm_mday;
1931 aet->month = tm->tm_mon;
1932 aet->year = htons(1900 + tm->tm_year);
1933}
1934
Harald Welte05188ee2009-01-18 11:39:08 +00001935int abis_nm_bs11_reset_resource(struct gsm_bts *bts)
Harald Welte52b1f982008-12-23 20:25:15 +00001936{
Harald Welte4668fda2009-01-03 08:19:29 +00001937 return __simple_cmd(bts, NM_MT_BS11_RESET_RESOURCE);
Harald Welte52b1f982008-12-23 20:25:15 +00001938}
1939
Harald Welte05188ee2009-01-18 11:39:08 +00001940int abis_nm_bs11_db_transmission(struct gsm_bts *bts, int begin)
Harald Welte52b1f982008-12-23 20:25:15 +00001941{
1942 if (begin)
Harald Welte4668fda2009-01-03 08:19:29 +00001943 return __simple_cmd(bts, NM_MT_BS11_BEGIN_DB_TX);
Harald Welte52b1f982008-12-23 20:25:15 +00001944 else
Harald Welte4668fda2009-01-03 08:19:29 +00001945 return __simple_cmd(bts, NM_MT_BS11_END_DB_TX);
Harald Welte52b1f982008-12-23 20:25:15 +00001946}
Harald Welte47d88ae2009-01-04 12:02:08 +00001947
Harald Welte05188ee2009-01-18 11:39:08 +00001948int abis_nm_bs11_create_object(struct gsm_bts *bts,
Harald Welte1bc09062009-01-18 14:17:52 +00001949 enum abis_bs11_objtype type, u_int8_t idx,
1950 u_int8_t attr_len, const u_int8_t *attr)
Harald Welte47d88ae2009-01-04 12:02:08 +00001951{
1952 struct abis_om_hdr *oh;
1953 struct msgb *msg = nm_msgb_alloc();
Harald Welte1bc09062009-01-18 14:17:52 +00001954 u_int8_t *cur;
Harald Welte47d88ae2009-01-04 12:02:08 +00001955
1956 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +00001957 fill_om_fom_hdr(oh, attr_len, NM_MT_BS11_CREATE_OBJ,
Harald Welte268bb402009-02-01 19:11:56 +00001958 NM_OC_BS11, type, 0, idx);
Harald Welte1bc09062009-01-18 14:17:52 +00001959 cur = msgb_put(msg, attr_len);
1960 memcpy(cur, attr, attr_len);
Harald Welte47d88ae2009-01-04 12:02:08 +00001961
1962 return abis_nm_sendmsg(bts, msg);
1963}
1964
Harald Welte78fc0d42009-02-19 02:50:57 +00001965int abis_nm_bs11_delete_object(struct gsm_bts *bts,
1966 enum abis_bs11_objtype type, u_int8_t idx)
1967{
1968 struct abis_om_hdr *oh;
1969 struct msgb *msg = nm_msgb_alloc();
1970
1971 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1972 fill_om_fom_hdr(oh, 0, NM_MT_BS11_DELETE_OBJ,
1973 NM_OC_BS11, type, 0, idx);
1974
1975 return abis_nm_sendmsg(bts, msg);
1976}
1977
Harald Welte05188ee2009-01-18 11:39:08 +00001978int abis_nm_bs11_create_envaBTSE(struct gsm_bts *bts, u_int8_t idx)
Harald Welte47d88ae2009-01-04 12:02:08 +00001979{
1980 struct abis_om_hdr *oh;
1981 struct msgb *msg = nm_msgb_alloc();
Harald Welte1bc09062009-01-18 14:17:52 +00001982 u_int8_t zero = 0x00;
Harald Welte47d88ae2009-01-04 12:02:08 +00001983
1984 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +00001985 fill_om_fom_hdr(oh, 3, NM_MT_BS11_CREATE_OBJ,
Harald Welte1bc09062009-01-18 14:17:52 +00001986 NM_OC_BS11_ENVABTSE, 0, idx, 0xff);
1987 msgb_tlv_put(msg, 0x99, 1, &zero);
Harald Welte47d88ae2009-01-04 12:02:08 +00001988
1989 return abis_nm_sendmsg(bts, msg);
1990}
1991
Harald Welte05188ee2009-01-18 11:39:08 +00001992int abis_nm_bs11_create_bport(struct gsm_bts *bts, u_int8_t idx)
Harald Welte47d88ae2009-01-04 12:02:08 +00001993{
1994 struct abis_om_hdr *oh;
1995 struct msgb *msg = nm_msgb_alloc();
1996
1997 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
1998 fill_om_fom_hdr(oh, 0, NM_MT_BS11_CREATE_OBJ, NM_OC_BS11_BPORT,
1999 idx, 0, 0);
2000
2001 return abis_nm_sendmsg(bts, msg);
2002}
Harald Welte05188ee2009-01-18 11:39:08 +00002003
Harald Welte78fc0d42009-02-19 02:50:57 +00002004static const u_int8_t sm_attr[] = { NM_ATT_TEI, NM_ATT_ABIS_CHANNEL };
2005int abis_nm_bs11_get_oml_tei_ts(struct gsm_bts *bts)
2006{
2007 struct abis_om_hdr *oh;
2008 struct msgb *msg = nm_msgb_alloc();
2009
2010 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
2011 fill_om_fom_hdr(oh, 2+sizeof(sm_attr), NM_MT_GET_ATTR, NM_OC_SITE_MANAGER,
2012 0xff, 0xff, 0xff);
2013 msgb_tlv_put(msg, NM_ATT_LIST_REQ_ATTR, sizeof(sm_attr), sm_attr);
2014
2015 return abis_nm_sendmsg(bts, msg);
2016}
2017
Harald Welteb6c92ae2009-02-21 20:15:32 +00002018/* like abis_nm_conn_terr_traf + set_tei */
2019int abis_nm_bs11_conn_oml_tei(struct gsm_bts *bts, u_int8_t e1_port,
2020 u_int8_t e1_timeslot, u_int8_t e1_subslot,
2021 u_int8_t tei)
Harald Welte05188ee2009-01-18 11:39:08 +00002022{
2023 struct abis_om_hdr *oh;
2024 struct abis_nm_channel *ch;
2025 struct msgb *msg = nm_msgb_alloc();
2026
2027 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welteb6c92ae2009-02-21 20:15:32 +00002028 fill_om_fom_hdr(oh, sizeof(*ch)+2, NM_MT_BS11_SET_ATTR,
Harald Welte05188ee2009-01-18 11:39:08 +00002029 NM_OC_SITE_MANAGER, 0xff, 0xff, 0xff);
2030
2031 ch = (struct abis_nm_channel *) msgb_put(msg, sizeof(*ch));
2032 fill_nm_channel(ch, e1_port, e1_timeslot, e1_subslot);
Harald Welteb6c92ae2009-02-21 20:15:32 +00002033 msgb_tv_put(msg, NM_ATT_TEI, tei);
Harald Welte05188ee2009-01-18 11:39:08 +00002034
2035 return abis_nm_sendmsg(bts, msg);
2036}
2037
2038int abis_nm_bs11_set_trx_power(struct gsm_bts_trx *trx, u_int8_t level)
2039{
2040 struct abis_om_hdr *oh;
2041 struct msgb *msg = nm_msgb_alloc();
Harald Welte05188ee2009-01-18 11:39:08 +00002042
2043 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +00002044 fill_om_fom_hdr(oh, 3, NM_MT_BS11_SET_ATTR,
Harald Welte05188ee2009-01-18 11:39:08 +00002045 NM_OC_BS11, BS11_OBJ_PA, 0x00, trx->nr);
2046 msgb_tlv_put(msg, NM_ATT_BS11_TXPWR, 1, &level);
2047
2048 return abis_nm_sendmsg(trx->bts, msg);
2049}
2050
Harald Welte78fc0d42009-02-19 02:50:57 +00002051int abis_nm_bs11_get_trx_power(struct gsm_bts_trx *trx)
2052{
2053 struct abis_om_hdr *oh;
2054 struct msgb *msg = nm_msgb_alloc();
2055 u_int8_t attr = NM_ATT_BS11_TXPWR;
2056
2057 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
2058 fill_om_fom_hdr(oh, 2+sizeof(attr), NM_MT_GET_ATTR,
2059 NM_OC_BS11, BS11_OBJ_PA, 0x00, trx->nr);
2060 msgb_tlv_put(msg, NM_ATT_LIST_REQ_ATTR, sizeof(attr), &attr);
2061
2062 return abis_nm_sendmsg(trx->bts, msg);
2063}
2064
Harald Welteaaf02d92009-04-29 13:25:57 +00002065int abis_nm_bs11_get_pll_mode(struct gsm_bts *bts)
2066{
2067 struct abis_om_hdr *oh;
2068 struct msgb *msg = nm_msgb_alloc();
Harald Weltea7cfa032009-04-29 22:33:02 +00002069 u_int8_t attr[] = { NM_ATT_BS11_PLL_MODE };
Harald Welteaaf02d92009-04-29 13:25:57 +00002070
2071 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
2072 fill_om_fom_hdr(oh, 2+sizeof(attr), NM_MT_GET_ATTR,
2073 NM_OC_BS11, BS11_OBJ_LI, 0x00, 0x00);
Harald Welteaeedeb42009-05-01 13:08:14 +00002074 msgb_tlv_put(msg, NM_ATT_LIST_REQ_ATTR, sizeof(attr), attr);
Harald Welteaaf02d92009-04-29 13:25:57 +00002075
2076 return abis_nm_sendmsg(bts, msg);
2077}
2078
Harald Welteef061952009-05-17 12:43:42 +00002079int abis_nm_bs11_get_cclk(struct gsm_bts *bts)
2080{
2081 struct abis_om_hdr *oh;
2082 struct msgb *msg = nm_msgb_alloc();
2083 u_int8_t attr[] = { NM_ATT_BS11_CCLK_ACCURACY,
2084 NM_ATT_BS11_CCLK_TYPE };
2085
2086 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
2087 fill_om_fom_hdr(oh, 2+sizeof(attr), NM_MT_GET_ATTR,
2088 NM_OC_BS11, BS11_OBJ_CCLK, 0x00, 0x00);
2089 msgb_tlv_put(msg, NM_ATT_LIST_REQ_ATTR, sizeof(attr), attr);
2090
2091 return abis_nm_sendmsg(bts, msg);
2092
2093}
Harald Welteaaf02d92009-04-29 13:25:57 +00002094
Harald Welte268bb402009-02-01 19:11:56 +00002095//static const u_int8_t bs11_logon_c7[] = { 0x07, 0xd9, 0x01, 0x11, 0x0d, 0x10, 0x20 };
Harald Weltebb151312009-01-28 20:42:07 +00002096static const u_int8_t bs11_logon_c8[] = { 0x02 };
Harald Welte05188ee2009-01-18 11:39:08 +00002097static const u_int8_t bs11_logon_c9[] = "FACTORY";
2098
Harald Welte1bc09062009-01-18 14:17:52 +00002099int abis_nm_bs11_factory_logon(struct gsm_bts *bts, int on)
Harald Welte05188ee2009-01-18 11:39:08 +00002100{
2101 struct abis_om_hdr *oh;
2102 struct msgb *msg = nm_msgb_alloc();
Harald Welte268bb402009-02-01 19:11:56 +00002103 struct bs11_date_time bdt;
2104
2105 get_bs11_date_time(&bdt);
Harald Welte05188ee2009-01-18 11:39:08 +00002106
2107 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte1bc09062009-01-18 14:17:52 +00002108 if (on) {
Harald Welte268bb402009-02-01 19:11:56 +00002109 u_int8_t len = 3*2 + sizeof(bdt)
Harald Welte6f676a32009-01-18 14:27:48 +00002110 + sizeof(bs11_logon_c8) + sizeof(bs11_logon_c9);
Harald Welte043d04a2009-01-29 23:15:30 +00002111 fill_om_fom_hdr(oh, len, NM_MT_BS11_LMT_LOGON,
Harald Welte7b26bcb2009-05-28 11:39:21 +00002112 NM_OC_BS11_BTSE, 0xff, 0xff, 0xff);
Harald Welte043d04a2009-01-29 23:15:30 +00002113 msgb_tlv_put(msg, NM_ATT_BS11_LMT_LOGIN_TIME,
Harald Welte5083b0b2009-02-02 19:20:52 +00002114 sizeof(bdt), (u_int8_t *) &bdt);
Harald Welte043d04a2009-01-29 23:15:30 +00002115 msgb_tlv_put(msg, NM_ATT_BS11_LMT_USER_ACC_LEV,
2116 sizeof(bs11_logon_c8), bs11_logon_c8);
2117 msgb_tlv_put(msg, NM_ATT_BS11_LMT_USER_NAME,
2118 sizeof(bs11_logon_c9), bs11_logon_c9);
Harald Welte1bc09062009-01-18 14:17:52 +00002119 } else {
Harald Welte5e4d1b32009-02-01 13:36:56 +00002120 fill_om_fom_hdr(oh, 0, NM_MT_BS11_LMT_LOGOFF,
Harald Welte7b26bcb2009-05-28 11:39:21 +00002121 NM_OC_BS11_BTSE, 0xff, 0xff, 0xff);
Harald Welte1bc09062009-01-18 14:17:52 +00002122 }
Harald Welte05188ee2009-01-18 11:39:08 +00002123
2124 return abis_nm_sendmsg(bts, msg);
2125}
Harald Welte1bc09062009-01-18 14:17:52 +00002126
2127int abis_nm_bs11_set_trx1_pw(struct gsm_bts *bts, const char *password)
2128{
2129 struct abis_om_hdr *oh;
2130 struct msgb *msg;
2131
2132 if (strlen(password) != 10)
2133 return -EINVAL;
2134
2135 msg = nm_msgb_alloc();
2136 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +00002137 fill_om_fom_hdr(oh, 2+strlen(password), NM_MT_BS11_SET_ATTR,
Harald Welte1bc09062009-01-18 14:17:52 +00002138 NM_OC_BS11, BS11_OBJ_TRX1, 0x00, 0x00);
2139 msgb_tlv_put(msg, NM_ATT_BS11_PASSWORD, 10, (const u_int8_t *)password);
2140
2141 return abis_nm_sendmsg(bts, msg);
2142}
2143
Harald Weltee69f5fb2009-04-28 16:31:38 +00002144/* change the BS-11 PLL Mode to either locked (E1 derived) or standalone */
2145int abis_nm_bs11_set_pll_locked(struct gsm_bts *bts, int locked)
2146{
2147 struct abis_om_hdr *oh;
2148 struct msgb *msg;
Harald Weltea432cd32009-04-29 13:01:50 +00002149 u_int8_t tlv_value;
Harald Weltee69f5fb2009-04-28 16:31:38 +00002150
2151 msg = nm_msgb_alloc();
2152 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
2153 fill_om_fom_hdr(oh, 3, NM_MT_BS11_SET_ATTR, NM_OC_BS11,
2154 BS11_OBJ_LI, 0x00, 0x00);
Harald Weltea432cd32009-04-29 13:01:50 +00002155
2156 if (locked)
2157 tlv_value = BS11_LI_PLL_LOCKED;
2158 else
2159 tlv_value = BS11_LI_PLL_STANDALONE;
2160
2161 msgb_tlv_put(msg, NM_ATT_BS11_PLL_MODE, 1, &tlv_value);
Harald Weltee69f5fb2009-04-28 16:31:38 +00002162
2163 return abis_nm_sendmsg(bts, msg);
2164}
2165
Harald Welte1bc09062009-01-18 14:17:52 +00002166int abis_nm_bs11_get_state(struct gsm_bts *bts)
2167{
2168 return __simple_cmd(bts, NM_MT_BS11_GET_STATE);
2169}
Harald Welte5e4d1b32009-02-01 13:36:56 +00002170
2171/* BS11 SWL */
2172
Harald Welte2cf161b2009-06-20 22:36:41 +02002173static void *tall_fle_ctx;
2174
Harald Welte5e4d1b32009-02-01 13:36:56 +00002175struct abis_nm_bs11_sw {
2176 struct gsm_bts *bts;
2177 char swl_fname[PATH_MAX];
2178 u_int8_t win_size;
Harald Welte3ffd1372009-02-01 22:15:49 +00002179 int forced;
Harald Welte5e4d1b32009-02-01 13:36:56 +00002180 struct llist_head file_list;
2181 gsm_cbfn *user_cb; /* specified by the user */
2182};
2183static struct abis_nm_bs11_sw _g_bs11_sw, *g_bs11_sw = &_g_bs11_sw;
2184
2185struct file_list_entry {
2186 struct llist_head list;
2187 char fname[PATH_MAX];
2188};
2189
2190struct file_list_entry *fl_dequeue(struct llist_head *queue)
2191{
2192 struct llist_head *lh;
2193
2194 if (llist_empty(queue))
2195 return NULL;
2196
2197 lh = queue->next;
2198 llist_del(lh);
2199
2200 return llist_entry(lh, struct file_list_entry, list);
2201}
2202
2203static int bs11_read_swl_file(struct abis_nm_bs11_sw *bs11_sw)
2204{
2205 char linebuf[255];
2206 struct llist_head *lh, *lh2;
2207 FILE *swl;
2208 int rc = 0;
2209
2210 swl = fopen(bs11_sw->swl_fname, "r");
2211 if (!swl)
2212 return -ENODEV;
2213
2214 /* zero the stale file list, if any */
2215 llist_for_each_safe(lh, lh2, &bs11_sw->file_list) {
2216 llist_del(lh);
Harald Welte2cf161b2009-06-20 22:36:41 +02002217 talloc_free(lh);
Harald Welte5e4d1b32009-02-01 13:36:56 +00002218 }
2219
2220 while (fgets(linebuf, sizeof(linebuf), swl)) {
2221 char file_id[12+1];
2222 char file_version[80+1];
2223 struct file_list_entry *fle;
2224 static char dir[PATH_MAX];
2225
2226 if (strlen(linebuf) < 4)
2227 continue;
Harald Welte3ffd1372009-02-01 22:15:49 +00002228
Harald Welte5e4d1b32009-02-01 13:36:56 +00002229 rc = sscanf(linebuf+4, "%12s:%80s\r\n", file_id, file_version);
2230 if (rc < 0) {
2231 perror("ERR parsing SWL file");
2232 rc = -EINVAL;
2233 goto out;
2234 }
2235 if (rc < 2)
2236 continue;
2237
Harald Welte470ec292009-06-26 20:25:23 +02002238 fle = talloc_zero(tall_fle_ctx, struct file_list_entry);
Harald Welte5e4d1b32009-02-01 13:36:56 +00002239 if (!fle) {
2240 rc = -ENOMEM;
2241 goto out;
2242 }
Harald Welte5e4d1b32009-02-01 13:36:56 +00002243
2244 /* construct new filename */
2245 strncpy(dir, bs11_sw->swl_fname, sizeof(dir));
2246 strncat(fle->fname, dirname(dir), sizeof(fle->fname) - 1);
2247 strcat(fle->fname, "/");
2248 strncat(fle->fname, file_id, sizeof(fle->fname) - 1 -strlen(fle->fname));
Harald Welte5e4d1b32009-02-01 13:36:56 +00002249
2250 llist_add_tail(&fle->list, &bs11_sw->file_list);
2251 }
2252
2253out:
2254 fclose(swl);
2255 return rc;
2256}
2257
2258/* bs11 swload specific callback, passed to abis_nm core swload */
2259static int bs11_swload_cbfn(unsigned int hook, unsigned int event,
2260 struct msgb *msg, void *data, void *param)
2261{
2262 struct abis_nm_bs11_sw *bs11_sw = data;
2263 struct file_list_entry *fle;
2264 int rc = 0;
2265
Harald Welte5e4d1b32009-02-01 13:36:56 +00002266 switch (event) {
2267 case NM_MT_LOAD_END_ACK:
2268 fle = fl_dequeue(&bs11_sw->file_list);
2269 if (fle) {
2270 /* start download the next file of our file list */
2271 rc = abis_nm_software_load(bs11_sw->bts, fle->fname,
2272 bs11_sw->win_size,
Harald Welte3ffd1372009-02-01 22:15:49 +00002273 bs11_sw->forced,
Harald Welte5e4d1b32009-02-01 13:36:56 +00002274 &bs11_swload_cbfn, bs11_sw);
Harald Welteac606dc2009-08-06 15:44:18 +02002275 talloc_free(fle);
Harald Welte5e4d1b32009-02-01 13:36:56 +00002276 } else {
2277 /* activate the SWL */
2278 rc = abis_nm_software_activate(bs11_sw->bts,
2279 bs11_sw->swl_fname,
2280 bs11_swload_cbfn,
2281 bs11_sw);
2282 }
2283 break;
Harald Welte3ffd1372009-02-01 22:15:49 +00002284 case NM_MT_LOAD_SEG_ACK:
Harald Welte5e4d1b32009-02-01 13:36:56 +00002285 case NM_MT_LOAD_END_NACK:
2286 case NM_MT_LOAD_INIT_ACK:
2287 case NM_MT_LOAD_INIT_NACK:
2288 case NM_MT_ACTIVATE_SW_NACK:
2289 case NM_MT_ACTIVATE_SW_ACK:
2290 default:
2291 /* fallthrough to the user callback */
Harald Welte97ed1e72009-02-06 13:38:02 +00002292 if (bs11_sw->user_cb)
2293 rc = bs11_sw->user_cb(hook, event, msg, NULL, NULL);
Harald Welte5e4d1b32009-02-01 13:36:56 +00002294 break;
2295 }
2296
2297 return rc;
2298}
2299
2300/* Siemens provides a SWL file that is a mere listing of all the other
2301 * files that are part of a software release. We need to upload first
2302 * the list file, and then each file that is listed in the list file */
2303int abis_nm_bs11_load_swl(struct gsm_bts *bts, const char *fname,
Harald Welte3ffd1372009-02-01 22:15:49 +00002304 u_int8_t win_size, int forced, gsm_cbfn *cbfn)
Harald Welte5e4d1b32009-02-01 13:36:56 +00002305{
2306 struct abis_nm_bs11_sw *bs11_sw = g_bs11_sw;
2307 struct file_list_entry *fle;
2308 int rc = 0;
2309
2310 INIT_LLIST_HEAD(&bs11_sw->file_list);
2311 bs11_sw->bts = bts;
2312 bs11_sw->win_size = win_size;
2313 bs11_sw->user_cb = cbfn;
Harald Welte3ffd1372009-02-01 22:15:49 +00002314 bs11_sw->forced = forced;
Harald Welte5e4d1b32009-02-01 13:36:56 +00002315
2316 strncpy(bs11_sw->swl_fname, fname, sizeof(bs11_sw->swl_fname));
2317 rc = bs11_read_swl_file(bs11_sw);
2318 if (rc < 0)
2319 return rc;
2320
2321 /* dequeue next item in file list */
2322 fle = fl_dequeue(&bs11_sw->file_list);
2323 if (!fle)
2324 return -EINVAL;
2325
2326 /* start download the next file of our file list */
Harald Welte3ffd1372009-02-01 22:15:49 +00002327 rc = abis_nm_software_load(bts, fle->fname, win_size, forced,
Harald Welte5e4d1b32009-02-01 13:36:56 +00002328 bs11_swload_cbfn, bs11_sw);
Harald Welteac606dc2009-08-06 15:44:18 +02002329 talloc_free(fle);
Harald Welte5e4d1b32009-02-01 13:36:56 +00002330 return rc;
2331}
2332
Harald Welte5083b0b2009-02-02 19:20:52 +00002333#if 0
Harald Welte5e4d1b32009-02-01 13:36:56 +00002334static u_int8_t req_attr_btse[] = {
2335 NM_ATT_ADM_STATE, NM_ATT_BS11_LMT_LOGON_SESSION,
2336 NM_ATT_BS11_LMT_LOGIN_TIME, NM_ATT_BS11_LMT_USER_ACC_LEV,
2337 NM_ATT_BS11_LMT_USER_NAME,
2338
2339 0xaf, NM_ATT_BS11_RX_OFFSET, NM_ATT_BS11_VENDOR_NAME,
2340
2341 NM_ATT_BS11_SW_LOAD_INTENDED, NM_ATT_BS11_SW_LOAD_SAFETY,
2342
2343 NM_ATT_BS11_SW_LOAD_STORED };
2344
2345static u_int8_t req_attr_btsm[] = {
2346 NM_ATT_ABIS_CHANNEL, NM_ATT_TEI, NM_ATT_BS11_ABIS_EXT_TIME,
2347 NM_ATT_ADM_STATE, NM_ATT_AVAIL_STATUS, 0xce, NM_ATT_FILE_ID,
2348 NM_ATT_FILE_VERSION, NM_ATT_OPER_STATE, 0xe8, NM_ATT_BS11_ALL_TEST_CATG,
2349 NM_ATT_SW_DESCR, NM_ATT_GET_ARI };
Harald Welte5083b0b2009-02-02 19:20:52 +00002350#endif
Harald Welte5e4d1b32009-02-01 13:36:56 +00002351
2352static u_int8_t req_attr[] = {
2353 NM_ATT_ADM_STATE, NM_ATT_AVAIL_STATUS, 0xa8, NM_ATT_OPER_STATE,
2354 0xd5, 0xa1, NM_ATT_BS11_ESN_FW_CODE_NO, NM_ATT_BS11_ESN_HW_CODE_NO,
Harald Weltea7cfa032009-04-29 22:33:02 +00002355 0x42, NM_ATT_BS11_ESN_PCB_SERIAL, NM_ATT_BS11_PLL };
Harald Welte5e4d1b32009-02-01 13:36:56 +00002356
2357int abis_nm_bs11_get_serno(struct gsm_bts *bts)
2358{
2359 struct abis_om_hdr *oh;
2360 struct msgb *msg = nm_msgb_alloc();
2361
2362 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
2363 /* SiemensHW CCTRL object */
2364 fill_om_fom_hdr(oh, 2+sizeof(req_attr), NM_MT_GET_ATTR, NM_OC_BS11,
2365 0x03, 0x00, 0x00);
2366 msgb_tlv_put(msg, NM_ATT_LIST_REQ_ATTR, sizeof(req_attr), req_attr);
2367
2368 return abis_nm_sendmsg(bts, msg);
2369}
Harald Welte268bb402009-02-01 19:11:56 +00002370
2371int abis_nm_bs11_set_ext_time(struct gsm_bts *bts)
2372{
2373 struct abis_om_hdr *oh;
2374 struct msgb *msg = nm_msgb_alloc();
2375 struct bs11_date_time aet;
2376
2377 get_bs11_date_time(&aet);
2378 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
2379 /* SiemensHW CCTRL object */
2380 fill_om_fom_hdr(oh, 2+sizeof(aet), NM_MT_BS11_SET_ATTR, NM_OC_SITE_MANAGER,
2381 0xff, 0xff, 0xff);
Harald Welte5083b0b2009-02-02 19:20:52 +00002382 msgb_tlv_put(msg, NM_ATT_BS11_ABIS_EXT_TIME, sizeof(aet), (u_int8_t *) &aet);
Harald Welte268bb402009-02-01 19:11:56 +00002383
2384 return abis_nm_sendmsg(bts, msg);
2385}
Harald Welte5c1e4582009-02-15 11:57:29 +00002386
2387/* ip.access nanoBTS specific commands */
Harald Welte5c1e4582009-02-15 11:57:29 +00002388static const char ipaccess_magic[] = "com.ipaccess";
2389
Harald Welte677c21f2009-02-17 13:22:23 +00002390
2391static int abis_nm_rx_ipacc(struct msgb *msg)
2392{
2393 struct abis_om_hdr *oh = msgb_l2(msg);
2394 struct abis_om_fom_hdr *foh;
2395 u_int8_t idstrlen = oh->data[0];
2396 struct tlv_parsed tp;
2397
2398 if (strncmp((char *)&oh->data[1], ipaccess_magic, idstrlen)) {
2399 DEBUGP(DNM, "id string is not com.ipaccess !?!\n");
2400 return -EINVAL;
2401 }
2402
Harald Welte193fefc2009-04-30 15:16:27 +00002403 foh = (struct abis_om_fom_hdr *) (oh->data + 1 + idstrlen);
Harald Welte03133942009-02-18 19:51:53 +00002404 abis_nm_tlv_parse(&tp, foh->data, oh->length-sizeof(*foh));
Harald Welte677c21f2009-02-17 13:22:23 +00002405
Harald Welte193fefc2009-04-30 15:16:27 +00002406 DEBUGP(DNM, "IPACCESS(0x%02x): ", foh->msg_type);
2407
Harald Welte677c21f2009-02-17 13:22:23 +00002408 switch (foh->msg_type) {
2409 case NM_MT_IPACC_RSL_CONNECT_ACK:
Harald Welte193fefc2009-04-30 15:16:27 +00002410 DEBUGPC(DNM, "RSL CONNECT ACK ");
Harald Welte0efe9b72009-07-12 09:33:54 +02002411 if (TLVP_PRESENT(&tp, NM_ATT_IPACC_DST_IP))
Harald Welte9de2bf82009-04-30 15:59:55 +00002412 DEBUGPC(DNM, "IP=%s ",
Harald Welte677c21f2009-02-17 13:22:23 +00002413 inet_ntoa(*((struct in_addr *)
Harald Welte0efe9b72009-07-12 09:33:54 +02002414 TLVP_VAL(&tp, NM_ATT_IPACC_DST_IP))));
2415 if (TLVP_PRESENT(&tp, NM_ATT_IPACC_DST_IP_PORT))
Harald Welte9de2bf82009-04-30 15:59:55 +00002416 DEBUGPC(DNM, "PORT=%u ",
Harald Welte677c21f2009-02-17 13:22:23 +00002417 ntohs(*((u_int16_t *)
Harald Welte0efe9b72009-07-12 09:33:54 +02002418 TLVP_VAL(&tp, NM_ATT_IPACC_DST_IP_PORT))));
Harald Welte9de2bf82009-04-30 15:59:55 +00002419 DEBUGPC(DNM, "\n");
Harald Welte677c21f2009-02-17 13:22:23 +00002420 break;
2421 case NM_MT_IPACC_RSL_CONNECT_NACK:
Harald Welte193fefc2009-04-30 15:16:27 +00002422 DEBUGPC(DNM, "RSL CONNECT NACK ");
Harald Welte677c21f2009-02-17 13:22:23 +00002423 if (TLVP_PRESENT(&tp, NM_ATT_NACK_CAUSES))
Harald Welte6c96ba52009-05-01 13:03:40 +00002424 DEBUGPC(DNM, " CAUSE=%s\n",
2425 nack_cause_name(*TLVP_VAL(&tp, NM_ATT_NACK_CAUSES)));
Harald Welte677c21f2009-02-17 13:22:23 +00002426 else
2427 DEBUGPC(DNM, "\n");
2428 break;
Harald Welte193fefc2009-04-30 15:16:27 +00002429 case NM_MT_IPACC_SET_NVATTR_ACK:
2430 DEBUGPC(DNM, "SET NVATTR ACK\n");
2431 /* FIXME: decode and show the actual attributes */
2432 break;
2433 case NM_MT_IPACC_SET_NVATTR_NACK:
Harald Welte6c96ba52009-05-01 13:03:40 +00002434 DEBUGPC(DNM, "SET NVATTR NACK ");
2435 if (TLVP_PRESENT(&tp, NM_ATT_NACK_CAUSES))
2436 DEBUGPC(DNM, " CAUSE=%s\n",
2437 nack_cause_name(*TLVP_VAL(&tp, NM_ATT_NACK_CAUSES)));
2438 else
2439 DEBUGPC(DNM, "\n");
Harald Welte193fefc2009-04-30 15:16:27 +00002440 break;
Harald Welte684b1a82009-07-03 11:26:45 +02002441 case NM_MT_IPACC_GET_NVATTR_ACK:
2442 DEBUGPC(DNM, "GET NVATTR ACK\n");
2443 /* FIXME: decode and show the actual attributes */
2444 break;
2445 case NM_MT_IPACC_GET_NVATTR_NACK:
2446 DEBUGPC(DNM, "GET NVATTR NACK ");
2447 if (TLVP_PRESENT(&tp, NM_ATT_NACK_CAUSES))
2448 DEBUGPC(DNM, " CAUSE=%s\n",
2449 nack_cause_name(*TLVP_VAL(&tp, NM_ATT_NACK_CAUSES)));
2450 else
2451 DEBUGPC(DNM, "\n");
2452 break;
Harald Welte193fefc2009-04-30 15:16:27 +00002453 default:
2454 DEBUGPC(DNM, "unknown\n");
2455 break;
Harald Welte677c21f2009-02-17 13:22:23 +00002456 }
Holger Hans Peter Freythera7cd9fc2009-07-07 12:40:07 +02002457
2458 /* signal handling */
2459 switch (foh->msg_type) {
2460 case NM_MT_IPACC_RSL_CONNECT_NACK:
2461 case NM_MT_IPACC_SET_NVATTR_NACK:
2462 case NM_MT_IPACC_GET_NVATTR_NACK:
2463 dispatch_signal(SS_NM, S_NM_IPACC_NACK, (void*) ((long)foh->msg_type));
2464 break;
2465 default:
2466 break;
2467 }
2468
Harald Welte677c21f2009-02-17 13:22:23 +00002469 return 0;
2470}
2471
Harald Welte193fefc2009-04-30 15:16:27 +00002472/* send an ip-access manufacturer specific message */
Harald Welte5c1e4582009-02-15 11:57:29 +00002473int abis_nm_ipaccess_msg(struct gsm_bts *bts, u_int8_t msg_type,
2474 u_int8_t obj_class, u_int8_t bts_nr,
2475 u_int8_t trx_nr, u_int8_t ts_nr,
2476 u_int8_t *attr, int attr_len)
2477{
2478 struct msgb *msg = nm_msgb_alloc();
2479 struct abis_om_hdr *oh;
2480 struct abis_om_fom_hdr *foh;
2481 u_int8_t *data;
2482
2483 /* construct the 12.21 OM header, observe the erroneous length */
2484 oh = (struct abis_om_hdr *) msgb_put(msg, sizeof(*oh));
2485 fill_om_hdr(oh, sizeof(*foh) + attr_len);
2486 oh->mdisc = ABIS_OM_MDISC_MANUF;
2487
2488 /* add the ip.access magic */
2489 data = msgb_put(msg, sizeof(ipaccess_magic)+1);
2490 *data++ = sizeof(ipaccess_magic);
2491 memcpy(data, ipaccess_magic, sizeof(ipaccess_magic));
2492
2493 /* fill the 12.21 FOM header */
2494 foh = (struct abis_om_fom_hdr *) msgb_put(msg, sizeof(*foh));
2495 foh->msg_type = msg_type;
2496 foh->obj_class = obj_class;
2497 foh->obj_inst.bts_nr = bts_nr;
2498 foh->obj_inst.trx_nr = trx_nr;
2499 foh->obj_inst.ts_nr = ts_nr;
2500
2501 if (attr && attr_len) {
2502 data = msgb_put(msg, attr_len);
2503 memcpy(data, attr, attr_len);
2504 }
2505
2506 return abis_nm_sendmsg(bts, msg);
2507}
Harald Welte677c21f2009-02-17 13:22:23 +00002508
Harald Welte193fefc2009-04-30 15:16:27 +00002509/* set some attributes in NVRAM */
2510int abis_nm_ipaccess_set_nvattr(struct gsm_bts *bts, u_int8_t *attr,
2511 int attr_len)
2512{
2513 return abis_nm_ipaccess_msg(bts, NM_MT_IPACC_SET_NVATTR,
2514 NM_OC_BASEB_TRANSC, 0, 0, 0xff, attr,
2515 attr_len);
2516}
2517
2518/* restart / reboot an ip.access nanoBTS */
2519int abis_nm_ipaccess_restart(struct gsm_bts *bts)
2520{
2521 return __simple_cmd(bts, NM_MT_IPACC_RESTART);
2522}
Harald Welte7bfc2672009-07-28 00:41:45 +02002523
2524
2525static __attribute__((constructor)) void on_dso_load_abis_nm(void)
2526{
2527 tall_fle_ctx = talloc_named_const(tall_bsc_ctx, 1,
2528 "bs11_file_list_entry");
2529}