blob: 1e0b69a3f50d9c56b32b55fdb82656eddbe45c15 [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>
29
Harald Welte52b1f982008-12-23 20:25:15 +000030#include <sys/types.h>
Harald Welte4724f992009-01-18 18:01:49 +000031#include <sys/stat.h>
Harald Welte8470bf22008-12-25 23:28:35 +000032#include <netinet/in.h>
Harald Welte52b1f982008-12-23 20:25:15 +000033
Harald Welte8470bf22008-12-25 23:28:35 +000034#include <openbsc/gsm_data.h>
35#include <openbsc/debug.h>
36#include <openbsc/msgb.h>
37#include <openbsc/tlv.h>
38#include <openbsc/abis_nm.h>
Holger Freytherca362a62009-01-04 21:05:01 +000039#include <openbsc/misdn.h>
Harald Welte52b1f982008-12-23 20:25:15 +000040
Harald Welte8470bf22008-12-25 23:28:35 +000041#define OM_ALLOC_SIZE 1024
42#define OM_HEADROOM_SIZE 128
Harald Welte52b1f982008-12-23 20:25:15 +000043
44/* unidirectional messages from BTS to BSC */
45static const enum abis_nm_msgtype reports[] = {
46 NM_MT_SW_ACTIVATED_REP,
47 NM_MT_TEST_REP,
48 NM_MT_STATECHG_EVENT_REP,
49 NM_MT_FAILURE_EVENT_REP,
50};
51
52/* messages without ACK/NACK */
53static const enum abis_nm_msgtype no_ack_nack[] = {
54 NM_MT_MEAS_RES_REQ,
55 NM_MT_STOP_MEAS,
56 NM_MT_START_MEAS,
57};
58
Harald Welte4724f992009-01-18 18:01:49 +000059/* Messages related to software load */
60static const enum abis_nm_msgtype sw_load_msgs[] = {
61 NM_MT_LOAD_INIT_ACK,
62 NM_MT_LOAD_INIT_NACK,
63 NM_MT_LOAD_SEG_ACK,
64 NM_MT_LOAD_ABORT,
65 NM_MT_LOAD_END_ACK,
66 NM_MT_LOAD_END_NACK,
67 NM_MT_SW_ACT_REQ,
68 NM_MT_ACTIVATE_SW_ACK,
69 NM_MT_ACTIVATE_SW_NACK,
70 NM_MT_SW_ACTIVATED_REP,
71};
72
Harald Welte52b1f982008-12-23 20:25:15 +000073/* Attributes that the BSC can set, not only get, according to Section 9.4 */
74static const enum abis_nm_attr nm_att_settable[] = {
75 NM_ATT_ADD_INFO,
76 NM_ATT_ADD_TEXT,
77 NM_ATT_DEST,
78 NM_ATT_EVENT_TYPE,
79 NM_ATT_FILE_DATA,
80 NM_ATT_GET_ARI,
81 NM_ATT_HW_CONF_CHG,
82 NM_ATT_LIST_REQ_ATTR,
83 NM_ATT_MDROP_LINK,
84 NM_ATT_MDROP_NEXT,
85 NM_ATT_NACK_CAUSES,
86 NM_ATT_OUTST_ALARM,
87 NM_ATT_PHYS_CONF,
88 NM_ATT_PROB_CAUSE,
89 NM_ATT_RAD_SUBC,
90 NM_ATT_SOURCE,
91 NM_ATT_SPEC_PROB,
92 NM_ATT_START_TIME,
93 NM_ATT_TEST_DUR,
94 NM_ATT_TEST_NO,
95 NM_ATT_TEST_REPORT,
96 NM_ATT_WINDOW_SIZE,
97 NM_ATT_SEVERITY,
98 NM_ATT_MEAS_RES,
99 NM_ATT_MEAS_TYPE,
100};
101
102static int is_in_arr(enum abis_nm_msgtype mt, const enum abis_nm_msgtype *arr, int size)
103{
104 int i;
105
106 for (i = 0; i < size; i++) {
107 if (arr[i] == mt)
108 return 1;
109 }
110
111 return 0;
112}
113
Holger Freytherca362a62009-01-04 21:05:01 +0000114#if 0
Harald Welte52b1f982008-12-23 20:25:15 +0000115/* is this msgtype the usual ACK/NACK type ? */
116static int is_ack_nack(enum abis_nm_msgtype mt)
117{
118 return !is_in_arr(mt, no_ack_nack, ARRAY_SIZE(no_ack_nack));
119}
Holger Freytherca362a62009-01-04 21:05:01 +0000120#endif
Harald Welte52b1f982008-12-23 20:25:15 +0000121
122/* is this msgtype a report ? */
123static int is_report(enum abis_nm_msgtype mt)
124{
Harald Welte8470bf22008-12-25 23:28:35 +0000125 return is_in_arr(mt, reports, ARRAY_SIZE(reports));
Harald Welte52b1f982008-12-23 20:25:15 +0000126}
127
128#define MT_ACK(x) (x+1)
129#define MT_NACK(x) (x+2)
130
131static void fill_om_hdr(struct abis_om_hdr *oh, u_int8_t len)
132{
133 oh->mdisc = ABIS_OM_MDISC_FOM;
134 oh->placement = ABIS_OM_PLACEMENT_ONLY;
135 oh->sequence = 0;
136 oh->length = len;
137}
138
139static void fill_om_fom_hdr(struct abis_om_hdr *oh, u_int8_t len,
140 u_int8_t msg_type, u_int8_t obj_class,
141 u_int8_t bts_nr, u_int8_t trx_nr, u_int8_t ts_nr)
142{
143 struct abis_om_fom_hdr *foh =
144 (struct abis_om_fom_hdr *) oh->data;
145
Harald Welte702d8702008-12-26 20:25:35 +0000146 fill_om_hdr(oh, len+sizeof(*foh));
Harald Welte52b1f982008-12-23 20:25:15 +0000147 foh->msg_type = msg_type;
148 foh->obj_class = obj_class;
149 foh->obj_inst.bts_nr = bts_nr;
150 foh->obj_inst.trx_nr = trx_nr;
151 foh->obj_inst.ts_nr = ts_nr;
152}
153
Harald Welte8470bf22008-12-25 23:28:35 +0000154static struct msgb *nm_msgb_alloc(void)
155{
156 return msgb_alloc_headroom(OM_ALLOC_SIZE, OM_HEADROOM_SIZE);
157}
158
Harald Welte52b1f982008-12-23 20:25:15 +0000159/* Send a OML NM Message from BSC to BTS */
160int abis_nm_sendmsg(struct gsm_bts *bts, struct msgb *msg)
161{
Harald Weltead384642008-12-26 10:20:07 +0000162 return _abis_nm_sendmsg(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000163}
164
Harald Welte4724f992009-01-18 18:01:49 +0000165static int abis_nm_rcvmsg_sw(struct msgb *mb);
166
Harald Welte52b1f982008-12-23 20:25:15 +0000167/* Receive a OML NM Message from BTS */
Harald Welte8470bf22008-12-25 23:28:35 +0000168static int abis_nm_rcvmsg_fom(struct msgb *mb)
Harald Welte52b1f982008-12-23 20:25:15 +0000169{
170 struct abis_om_fom_hdr *foh = msgb_l3(mb);
171 u_int8_t mt = foh->msg_type;
172
173 /* check for unsolicited message */
174 if (is_report(mt)) {
Harald Weltead384642008-12-26 10:20:07 +0000175 DEBUGP(DNM, "reporting NM MT 0x%02x\n", mt);
176 //nmh->cfg->report_cb(mb, foh);
Harald Welte52b1f982008-12-23 20:25:15 +0000177 return 0;
178 }
179
Harald Welte4724f992009-01-18 18:01:49 +0000180 if (is_in_arr(mt, sw_load_msgs, ARRAY_SIZE(sw_load_msgs)))
181 return abis_nm_rcvmsg_sw(mb);
182
Harald Weltead384642008-12-26 10:20:07 +0000183#if 0
Harald Welte52b1f982008-12-23 20:25:15 +0000184 /* check if last message is to be acked */
185 if (is_ack_nack(nmh->last_msgtype)) {
186 if (mt == MT_ACK(nmh->last_msgtype)) {
187 fprintf(stderr, "received ACK (0x%x)\n",
188 foh->msg_type);
189 /* we got our ACK, continue sending the next msg */
190 } else if (mt == MT_NACK(nmh->last_msgtype)) {
191 /* we got a NACK, signal this to the caller */
192 fprintf(stderr, "received NACK (0x%x)\n",
193 foh->msg_type);
194 /* FIXME: somehow signal this to the caller */
195 } else {
196 /* really strange things happen */
197 return -EINVAL;
198 }
199 }
Harald Weltead384642008-12-26 10:20:07 +0000200#endif
201
202 return 0;
Harald Welte52b1f982008-12-23 20:25:15 +0000203}
204
205/* High-Level API */
206/* Entry-point where L2 OML from BTS enters the NM code */
Harald Welte8470bf22008-12-25 23:28:35 +0000207int abis_nm_rcvmsg(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +0000208{
209 int rc;
210 struct abis_om_hdr *oh = msgb_l2(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000211
212 /* Various consistency checks */
213 if (oh->placement != ABIS_OM_PLACEMENT_ONLY) {
214 fprintf(stderr, "ABIS OML placement 0x%x not supported\n",
215 oh->placement);
216 return -EINVAL;
217 }
218 if (oh->sequence != 0) {
219 fprintf(stderr, "ABIS OML sequence 0x%x != 0x00\n",
220 oh->sequence);
221 return -EINVAL;
222 }
Harald Welte702d8702008-12-26 20:25:35 +0000223#if 0
Holger Freytherca362a62009-01-04 21:05:01 +0000224 unsigned int l2_len = msg->tail - (u_int8_t *)msgb_l2(msg);
225 unsigned int hlen = sizeof(*oh) + sizeof(struct abis_om_fom_hdr);
Harald Welte702d8702008-12-26 20:25:35 +0000226 if (oh->length + hlen > l2_len) {
Harald Welte52b1f982008-12-23 20:25:15 +0000227 fprintf(stderr, "ABIS OML truncated message (%u > %u)\n",
228 oh->length + sizeof(*oh), l2_len);
229 return -EINVAL;
230 }
Harald Welte702d8702008-12-26 20:25:35 +0000231 if (oh->length + hlen < l2_len)
232 fprintf(stderr, "ABIS OML message with extra trailer?!? (oh->len=%d, sizeof_oh=%d l2_len=%d\n", oh->length, sizeof(*oh), l2_len);
233#endif
Harald Weltead384642008-12-26 10:20:07 +0000234 msg->l3h = (unsigned char *)oh + sizeof(*oh);
Harald Welte52b1f982008-12-23 20:25:15 +0000235
236 switch (oh->mdisc) {
237 case ABIS_OM_MDISC_FOM:
Harald Welte8470bf22008-12-25 23:28:35 +0000238 rc = abis_nm_rcvmsg_fom(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000239 break;
240 case ABIS_OM_MDISC_MMI:
241 case ABIS_OM_MDISC_TRAU:
242 case ABIS_OM_MDISC_MANUF:
243 default:
244 fprintf(stderr, "unknown ABIS OML message discriminator 0x%x\n",
245 oh->mdisc);
246 return -EINVAL;
247 }
248
Harald Weltead384642008-12-26 10:20:07 +0000249 msgb_free(msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000250 return rc;
251}
252
253#if 0
254/* initialized all resources */
255struct abis_nm_h *abis_nm_init(struct abis_nm_cfg *cfg)
256{
257 struct abis_nm_h *nmh;
258
259 nmh = malloc(sizeof(*nmh));
260 if (!nmh)
261 return NULL;
262
263 nmh->cfg = cfg;
264
265 return nmh;
266}
267
268/* free all resources */
269void abis_nm_fini(struct abis_nm_h *nmh)
270{
271 free(nmh);
272}
273#endif
274
275/* Here we are trying to define a high-level API that can be used by
276 * the actual BSC implementation. However, the architecture is currently
277 * still under design. Ideally the calls to this API would be synchronous,
278 * while the underlying stack behind the APi runs in a traditional select
279 * based state machine.
280 */
281
Harald Welte4724f992009-01-18 18:01:49 +0000282/* 6.2 Software Load: */
283enum sw_state {
284 SW_STATE_NONE,
285 SW_STATE_WAIT_INITACK,
286 SW_STATE_WAIT_SEGACK,
287 SW_STATE_WAIT_ENDACK,
288 SW_STATE_WAIT_ACTACK,
289 SW_STATE_ERROR,
290};
Harald Welte52b1f982008-12-23 20:25:15 +0000291
Harald Welte52b1f982008-12-23 20:25:15 +0000292struct abis_nm_sw {
Harald Welte4724f992009-01-18 18:01:49 +0000293 struct gsm_bts *bts;
Harald Welte52b1f982008-12-23 20:25:15 +0000294 /* this will become part of the SW LOAD INITIATE */
295 u_int8_t obj_class;
296 u_int8_t obj_instance[3];
Harald Welte4724f992009-01-18 18:01:49 +0000297
298 u_int8_t file_id[255];
299 u_int8_t file_id_len;
300
301 u_int8_t file_version[255];
302 u_int8_t file_version_len;
303
304 u_int8_t window_size;
305 u_int8_t seg_in_window;
306
307 int fd;
308 FILE *stream;
309 enum sw_state state;
Harald Welte52b1f982008-12-23 20:25:15 +0000310};
311
Harald Welte4724f992009-01-18 18:01:49 +0000312static struct abis_nm_sw g_sw;
313
314/* 6.2.1 / 8.3.1: Load Data Initiate */
315static int sw_load_init(struct abis_nm_sw *sw)
Harald Welte52b1f982008-12-23 20:25:15 +0000316{
Harald Welte4724f992009-01-18 18:01:49 +0000317 struct abis_om_hdr *oh;
318 struct msgb *msg = nm_msgb_alloc();
319 u_int8_t len = 3*2 + sw->file_id_len + sw->file_version_len;
320
321 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
322 fill_om_fom_hdr(oh, len, NM_MT_LOAD_INIT, sw->obj_class,
323 sw->obj_instance[0], sw->obj_instance[1],
324 sw->obj_instance[2]);
325
326 /* FIXME: this is BS11 specific format */
327 msgb_tlv_put(msg, NM_ATT_FILE_ID, sw->file_id_len, sw->file_id);
328 msgb_tlv_put(msg, NM_ATT_FILE_VERSION, sw->file_version_len,
329 sw->file_version);
330 msgb_tv_put(msg, NM_ATT_WINDOW_SIZE, sw->window_size);
331
332 return abis_nm_sendmsg(sw->bts, msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000333}
334
Harald Welte4724f992009-01-18 18:01:49 +0000335/* 6.2.2 / 8.3.2 Load Data Segment */
336static int sw_load_segment(struct abis_nm_sw *sw)
337{
338 struct abis_om_hdr *oh;
339 struct msgb *msg = nm_msgb_alloc();
340 char seg_buf[256];
341 char *line_buf = seg_buf+2;
342 u_int8_t len;
343 int rc;
344
345 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
346 /* FIXME: this is BS11 specific format */
347 rc = fscanf(sw->stream, "%s\r\n", line_buf);
348 if (rc < 1) {
349 perror("fscanf reading segment");
350 return -EINVAL;
351 }
352 seg_buf[0] = 0x00;
353 seg_buf[1] = sw->seg_in_window++;
354
355 msgb_tlv_put(msg, NM_ATT_FILE_DATA, 2+strlen(line_buf),
356 (u_int8_t *)seg_buf);
357 /* BS11 wants CR + LF in excess of the TLV length !?! */
358 msgb_tv_put(msg, 0x0d, 0x0a);
359
360 /* we only now know the exact length for the OM hdr */
361 len = 2+strlen(line_buf)+2;
362 fill_om_fom_hdr(oh, len, NM_MT_LOAD_SEG, sw->obj_class,
363 sw->obj_instance[0], sw->obj_instance[1],
364 sw->obj_instance[2]);
365
366 return abis_nm_sendmsg(sw->bts, msg);
367}
368
369/* 6.2.4 / 8.3.4 Load Data End */
370static int sw_load_end(struct abis_nm_sw *sw)
371{
372 struct abis_om_hdr *oh;
373 struct msgb *msg = nm_msgb_alloc();
374 u_int8_t len = 2*2 + sw->file_id_len + sw->file_version_len;
375
376 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
377 fill_om_fom_hdr(oh, len, NM_MT_LOAD_END, sw->obj_class,
378 sw->obj_instance[0], sw->obj_instance[1],
379 sw->obj_instance[2]);
380
381 /* FIXME: this is BS11 specific format */
382 msgb_tlv_put(msg, NM_ATT_FILE_ID, sw->file_id_len, sw->file_id);
383 msgb_tlv_put(msg, NM_ATT_FILE_VERSION, sw->file_version_len,
384 sw->file_version);
385
386 return abis_nm_sendmsg(sw->bts, msg);
387}
Harald Welte52b1f982008-12-23 20:25:15 +0000388/* Activate the specified software into the BTS */
Harald Welte4724f992009-01-18 18:01:49 +0000389static int sw_activate(struct abis_nm_sw *sw)
Harald Welte52b1f982008-12-23 20:25:15 +0000390{
Harald Welte4724f992009-01-18 18:01:49 +0000391 struct abis_om_hdr *oh;
392 struct msgb *msg = nm_msgb_alloc();
393 u_int8_t len = 2*2 + sw->file_id_len + sw->file_version_len;
Harald Welte52b1f982008-12-23 20:25:15 +0000394
Harald Welte4724f992009-01-18 18:01:49 +0000395 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
396 fill_om_fom_hdr(oh, len, NM_MT_ACTIVATE_SW, sw->obj_class,
397 sw->obj_instance[0], sw->obj_instance[1],
398 sw->obj_instance[2]);
399
400 /* FIXME: this is BS11 specific format */
401 msgb_tlv_put(msg, NM_ATT_FILE_ID, sw->file_id_len, sw->file_id);
402 msgb_tlv_put(msg, NM_ATT_FILE_VERSION, sw->file_version_len,
403 sw->file_version);
404
405 return abis_nm_sendmsg(sw->bts, msg);
Harald Welte52b1f982008-12-23 20:25:15 +0000406}
Harald Welte4724f992009-01-18 18:01:49 +0000407
408static int sw_open_file(struct abis_nm_sw *sw, const char *fname)
409{
410 char file_id[12+1];
411 char file_version[80+1];
412 int rc;
413
414 sw->fd = open(fname, O_RDONLY);
415 if (sw->fd < 0)
416 return sw->fd;
417
418 switch (sw->bts->type) {
419 case GSM_BTS_TYPE_BS11:
420 sw->stream = fdopen(sw->fd, "r");
421 if (!sw->stream) {
422 perror("fdopen");
423 return -1;
424 }
425 /* read first line and parse file ID and VERSION */
426 rc = fscanf(sw->stream, "@(@)%12s:%80s\r\n",
427 file_id, file_version);
428 if (rc != 2) {
429 perror("parsing header line of software file");
430 return -1;
431 }
432 strcpy((char *)sw->file_id, file_id);
433 sw->file_id_len = strlen(file_id);
434 strcpy((char *)sw->file_version, file_version);
435 sw->file_version_len = strlen(file_version);
436 /* rewind to start of file */
437 fseek(sw->stream, 0, SEEK_SET);
438 break;
439 default:
440 /* We don't know how to treat them yet */
441 close(sw->fd);
442 return -EINVAL;
443 }
444
445 return 0;
446}
447
448static void sw_close_file(struct abis_nm_sw *sw)
449{
450 switch (sw->bts->type) {
451 case GSM_BTS_TYPE_BS11:
452 fclose(sw->stream);
453 break;
454 default:
455 close(sw->fd);
456 break;
457 }
458}
459
460/* Fill the window */
461static int sw_fill_window(struct abis_nm_sw *sw)
462{
463 int rc;
464
465 while (sw->seg_in_window < sw->window_size) {
466 rc = sw_load_segment(sw);
467 if (rc < 0)
468 return rc;
469 if (rc == 1) {
470 sw->state = SW_STATE_WAIT_ENDACK;
471 return sw_load_end(sw);
472 }
473 }
474 return 0;
475}
476
477/* callback function from abis_nm_rcvmsg() handler */
478static int abis_nm_rcvmsg_sw(struct msgb *mb)
479{
480 struct abis_om_fom_hdr *foh = msgb_l3(mb);
481 int rc = -1;
482 struct abis_nm_sw *sw = &g_sw;
483 enum sw_state old_state = sw->state;
484
485 DEBUGP(DNM, "state %u, NM MT 0x%02x\n", sw->state, foh->msg_type);
486
487 switch (sw->state) {
488 case SW_STATE_WAIT_INITACK:
489 switch (foh->msg_type) {
490 case NM_MT_LOAD_INIT_ACK:
491 /* fill window with segments */
492 rc = sw_fill_window(sw);
493 sw->state = SW_STATE_WAIT_SEGACK;
494 break;
495 case NM_MT_LOAD_INIT_NACK:
496 sw->state = SW_STATE_ERROR;
497 break;
498 }
499 break;
500 case SW_STATE_WAIT_SEGACK:
501 switch (foh->msg_type) {
502 case NM_MT_LOAD_SEG_ACK:
503 sw->seg_in_window = 0;
504 /* fill window with more segments */
505 rc = sw_fill_window(sw);
506 sw->state = SW_STATE_WAIT_SEGACK;
507 break;
508 }
509 break;
510 case SW_STATE_WAIT_ENDACK:
511 switch (foh->msg_type) {
512 case NM_MT_LOAD_END_ACK:
513 sw_close_file(sw);
514 /* send activate request */
515 sw->state = SW_STATE_WAIT_ACTACK;
516 rc = sw_activate(sw);
517 break;
518 case NM_MT_LOAD_END_NACK:
519 sw->state = SW_STATE_ERROR;
520 break;
521 }
522 case SW_STATE_WAIT_ACTACK:
523 switch (foh->msg_type) {
524 case NM_MT_ACTIVATE_SW_ACK:
525 /* we're done */
526 sw->state = SW_STATE_NONE;
527 rc = 0;
528 DEBUGP(DMM, "DONE!\n");
529 break;
530 case NM_MT_ACTIVATE_SW_NACK:
531 sw->state = SW_STATE_ERROR;
532 break;
533 }
534 case SW_STATE_NONE:
535 case SW_STATE_ERROR:
536 break;
537 }
538
539 if (rc)
540 fprintf(stderr, "unexpected NM MT 0x%02x in state %u -> %u\n",
541 foh->msg_type, old_state, sw->state);
542
543 return rc;
544}
545
546/* Load the specified software into the BTS */
547int abis_nm_software_load(struct gsm_bts *bts, const char *fname,
548 u_int8_t win_size)
549{
550 struct abis_nm_sw *sw = &g_sw;
551 int rc;
552
553 if (sw->state != SW_STATE_NONE)
554 return -EBUSY;
555
556 sw->bts = bts;
557 sw->obj_class = NM_OC_SITE_MANAGER;
558 sw->obj_instance[0] = 0xff;
559 sw->obj_instance[1] = 0xff;
560 sw->obj_instance[2] = 0xff;
561 sw->window_size = win_size;
562 sw->state = SW_STATE_WAIT_INITACK;
563
564 rc = sw_open_file(sw, fname);
565 if (rc < 0) {
566 sw->state = SW_STATE_NONE;
567 return rc;
568 }
569
570 return sw_load_init(sw);
571}
Harald Welte52b1f982008-12-23 20:25:15 +0000572
Harald Welte8470bf22008-12-25 23:28:35 +0000573static void fill_nm_channel(struct abis_nm_channel *ch, u_int8_t bts_port,
Harald Welte52b1f982008-12-23 20:25:15 +0000574 u_int8_t ts_nr, u_int8_t subslot_nr)
575{
Harald Welteadaf08b2009-01-18 11:08:10 +0000576 ch->attrib = NM_ATT_ABIS_CHANNEL;
Harald Welte52b1f982008-12-23 20:25:15 +0000577 ch->bts_port = bts_port;
578 ch->timeslot = ts_nr;
579 ch->subslot = subslot_nr;
580}
581
582int abis_nm_establish_tei(struct gsm_bts *bts, u_int8_t trx_nr,
583 u_int8_t e1_port, u_int8_t e1_timeslot, u_int8_t e1_subslot,
584 u_int8_t tei)
585{
586 struct abis_om_hdr *oh;
587 struct abis_nm_channel *ch;
Harald Welte702d8702008-12-26 20:25:35 +0000588 u_int8_t len = sizeof(*ch) + 2;
Harald Welte8470bf22008-12-25 23:28:35 +0000589 struct msgb *msg = nm_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000590
591 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
592 fill_om_fom_hdr(oh, len, NM_MT_ESTABLISH_TEI, NM_OC_RADIO_CARRIER,
593 bts->bts_nr, trx_nr, 0xff);
594
Harald Welte8470bf22008-12-25 23:28:35 +0000595 msgb_tv_put(msg, NM_ATT_TEI, tei);
Harald Welte52b1f982008-12-23 20:25:15 +0000596
597 ch = (struct abis_nm_channel *) msgb_put(msg, sizeof(*ch));
598 fill_nm_channel(ch, e1_port, e1_timeslot, e1_subslot);
599
600 return abis_nm_sendmsg(bts, msg);
601}
602
603/* connect signalling of one (BTS,TRX) to a particular timeslot on the E1 */
604int abis_nm_conn_terr_sign(struct gsm_bts_trx *trx,
605 u_int8_t e1_port, u_int8_t e1_timeslot, u_int8_t e1_subslot)
606{
Harald Welte8470bf22008-12-25 23:28:35 +0000607 struct gsm_bts *bts = trx->bts;
Harald Welte52b1f982008-12-23 20:25:15 +0000608 struct abis_om_hdr *oh;
609 struct abis_nm_channel *ch;
Harald Welte8470bf22008-12-25 23:28:35 +0000610 struct msgb *msg = nm_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000611
612 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +0000613 fill_om_fom_hdr(oh, sizeof(*ch), NM_MT_CONN_TERR_SIGN,
Harald Welte52b1f982008-12-23 20:25:15 +0000614 NM_OC_RADIO_CARRIER, bts->bts_nr, trx->nr, 0xff);
615
616 ch = (struct abis_nm_channel *) msgb_put(msg, sizeof(*ch));
617 fill_nm_channel(ch, e1_port, e1_timeslot, e1_subslot);
618
619 return abis_nm_sendmsg(bts, msg);
620}
621
622#if 0
623int abis_nm_disc_terr_sign(struct abis_nm_h *h, struct abis_om_obj_inst *inst,
624 struct abis_nm_abis_channel *chan)
625{
626}
627#endif
628
629int abis_nm_conn_terr_traf(struct gsm_bts_trx_ts *ts,
630 u_int8_t e1_port, u_int8_t e1_timeslot,
631 u_int8_t e1_subslot)
632{
633 struct gsm_bts *bts = ts->trx->bts;
634 struct abis_om_hdr *oh;
635 struct abis_nm_channel *ch;
Harald Welte8470bf22008-12-25 23:28:35 +0000636 struct msgb *msg = nm_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000637
638 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
639 fill_om_fom_hdr(oh, sizeof(*ch), NM_MT_CONN_TERR_TRAF,
640 NM_OC_BASEB_TRANSC, bts->bts_nr, ts->trx->nr, ts->nr);
641
642 ch = (struct abis_nm_channel *) msgb_put(msg, sizeof(*ch));
643 fill_nm_channel(ch, e1_port, e1_timeslot, e1_subslot);
644
645 return abis_nm_sendmsg(bts, msg);
646}
647
648#if 0
649int abis_nm_disc_terr_traf(struct abis_nm_h *h, struct abis_om_obj_inst *inst,
650 struct abis_nm_abis_channel *chan,
651 u_int8_t subchan)
652{
653}
654#endif
655
656int abis_nm_set_channel_attr(struct gsm_bts_trx_ts *ts, u_int8_t chan_comb)
657{
658 struct gsm_bts *bts = ts->trx->bts;
659 struct abis_om_hdr *oh;
Harald Welte8470bf22008-12-25 23:28:35 +0000660 u_int16_t arfcn = htons(ts->trx->arfcn);
Harald Welte52b1f982008-12-23 20:25:15 +0000661 u_int8_t zero = 0x00;
Harald Welte8470bf22008-12-25 23:28:35 +0000662 struct msgb *msg = nm_msgb_alloc();
Harald Welte702d8702008-12-26 20:25:35 +0000663 u_int8_t len = 4 + 2 + 2 + 2 + 2 +3;
Harald Welte52b1f982008-12-23 20:25:15 +0000664
665 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte702d8702008-12-26 20:25:35 +0000666 fill_om_fom_hdr(oh, len, NM_MT_SET_CHAN_ATTR,
Harald Welte52b1f982008-12-23 20:25:15 +0000667 NM_OC_BASEB_TRANSC, bts->bts_nr,
668 ts->trx->nr, ts->nr);
669 /* FIXME: don't send ARFCN list, hopping sequence, mAIO, ...*/
670 msgb_tlv16_put(msg, NM_ATT_ARFCN_LIST, 1, &arfcn);
671 msgb_tv_put(msg, NM_ATT_CHAN_COMB, chan_comb);
672 msgb_tv_put(msg, NM_ATT_HSN, 0x00);
673 msgb_tv_put(msg, NM_ATT_MAIO, 0x00);
674 msgb_tv_put(msg, NM_ATT_TSC, 0x07); /* training sequence */
675 msgb_tlv_put(msg, 0x59, 1, &zero);
676
677 return abis_nm_sendmsg(bts, msg);
678}
679
Harald Welte8470bf22008-12-25 23:28:35 +0000680int abis_nm_raw_msg(struct gsm_bts *bts, int len, u_int8_t *rawmsg)
Harald Welte52b1f982008-12-23 20:25:15 +0000681{
Harald Welte8470bf22008-12-25 23:28:35 +0000682 struct msgb *msg = nm_msgb_alloc();
683 struct abis_om_hdr *oh;
Harald Welte52b1f982008-12-23 20:25:15 +0000684 u_int8_t *data;
685
686 oh = (struct abis_om_hdr *) msgb_put(msg, sizeof(*oh));
687 fill_om_hdr(oh, len);
688 data = msgb_put(msg, len);
Harald Weltead384642008-12-26 10:20:07 +0000689 memcpy(data, rawmsg, len);
Harald Welte52b1f982008-12-23 20:25:15 +0000690
691 return abis_nm_sendmsg(bts, msg);
692}
693
694/* Siemens specific commands */
695static int __simple_cmd(struct gsm_bts *bts, u_int8_t msg_type)
696{
697 struct abis_om_hdr *oh;
Harald Welte8470bf22008-12-25 23:28:35 +0000698 struct msgb *msg = nm_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000699
700 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte702d8702008-12-26 20:25:35 +0000701 fill_om_fom_hdr(oh, 0, msg_type, NM_OC_SITE_MANAGER,
Harald Welte52b1f982008-12-23 20:25:15 +0000702 0xff, 0xff, 0xff);
703
704 return abis_nm_sendmsg(bts, msg);
705}
706
707int abis_nm_event_reports(struct gsm_bts *bts, int on)
708{
709 if (on == 0)
Harald Welte227d4072009-01-03 08:16:25 +0000710 return __simple_cmd(bts, NM_MT_STOP_EVENT_REP);
Harald Welte52b1f982008-12-23 20:25:15 +0000711 else
Harald Welte227d4072009-01-03 08:16:25 +0000712 return __simple_cmd(bts, NM_MT_REST_EVENT_REP);
Harald Welte52b1f982008-12-23 20:25:15 +0000713}
714
Harald Welte47d88ae2009-01-04 12:02:08 +0000715/* Siemens (or BS-11) specific commands */
716
Harald Welte05188ee2009-01-18 11:39:08 +0000717int abis_nm_bs11_reset_resource(struct gsm_bts *bts)
Harald Welte52b1f982008-12-23 20:25:15 +0000718{
Harald Welte4668fda2009-01-03 08:19:29 +0000719 return __simple_cmd(bts, NM_MT_BS11_RESET_RESOURCE);
Harald Welte52b1f982008-12-23 20:25:15 +0000720}
721
Harald Welte05188ee2009-01-18 11:39:08 +0000722int abis_nm_bs11_db_transmission(struct gsm_bts *bts, int begin)
Harald Welte52b1f982008-12-23 20:25:15 +0000723{
724 if (begin)
Harald Welte4668fda2009-01-03 08:19:29 +0000725 return __simple_cmd(bts, NM_MT_BS11_BEGIN_DB_TX);
Harald Welte52b1f982008-12-23 20:25:15 +0000726 else
Harald Welte4668fda2009-01-03 08:19:29 +0000727 return __simple_cmd(bts, NM_MT_BS11_END_DB_TX);
Harald Welte52b1f982008-12-23 20:25:15 +0000728}
Harald Welte47d88ae2009-01-04 12:02:08 +0000729
Harald Welte05188ee2009-01-18 11:39:08 +0000730int abis_nm_bs11_create_object(struct gsm_bts *bts,
Harald Welte1bc09062009-01-18 14:17:52 +0000731 enum abis_bs11_objtype type, u_int8_t idx,
732 u_int8_t attr_len, const u_int8_t *attr)
Harald Welte47d88ae2009-01-04 12:02:08 +0000733{
734 struct abis_om_hdr *oh;
735 struct msgb *msg = nm_msgb_alloc();
Harald Welte1bc09062009-01-18 14:17:52 +0000736 u_int8_t *cur;
Harald Welte47d88ae2009-01-04 12:02:08 +0000737
738 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +0000739 fill_om_fom_hdr(oh, attr_len, NM_MT_BS11_CREATE_OBJ,
Harald Welte1bc09062009-01-18 14:17:52 +0000740 NM_OC_BS11, type, idx, 0);
741 cur = msgb_put(msg, attr_len);
742 memcpy(cur, attr, attr_len);
Harald Welte47d88ae2009-01-04 12:02:08 +0000743
744 return abis_nm_sendmsg(bts, msg);
745}
746
Harald Welte05188ee2009-01-18 11:39:08 +0000747int abis_nm_bs11_create_envaBTSE(struct gsm_bts *bts, u_int8_t idx)
Harald Welte47d88ae2009-01-04 12:02:08 +0000748{
749 struct abis_om_hdr *oh;
750 struct msgb *msg = nm_msgb_alloc();
Harald Welte1bc09062009-01-18 14:17:52 +0000751 u_int8_t zero = 0x00;
Harald Welte47d88ae2009-01-04 12:02:08 +0000752
753 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +0000754 fill_om_fom_hdr(oh, 3, NM_MT_BS11_CREATE_OBJ,
Harald Welte1bc09062009-01-18 14:17:52 +0000755 NM_OC_BS11_ENVABTSE, 0, idx, 0xff);
756 msgb_tlv_put(msg, 0x99, 1, &zero);
Harald Welte47d88ae2009-01-04 12:02:08 +0000757
758 return abis_nm_sendmsg(bts, msg);
759}
760
Harald Welte05188ee2009-01-18 11:39:08 +0000761int abis_nm_bs11_create_bport(struct gsm_bts *bts, u_int8_t idx)
Harald Welte47d88ae2009-01-04 12:02:08 +0000762{
763 struct abis_om_hdr *oh;
764 struct msgb *msg = nm_msgb_alloc();
765
766 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
767 fill_om_fom_hdr(oh, 0, NM_MT_BS11_CREATE_OBJ, NM_OC_BS11_BPORT,
768 idx, 0, 0);
769
770 return abis_nm_sendmsg(bts, msg);
771}
Harald Welte05188ee2009-01-18 11:39:08 +0000772
773int abis_nm_bs11_set_oml_tei(struct gsm_bts *bts, u_int8_t tei)
774{
775 struct abis_om_hdr *oh;
776 struct msgb *msg = nm_msgb_alloc();
Harald Welte05188ee2009-01-18 11:39:08 +0000777
778 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +0000779 fill_om_fom_hdr(oh, 2, NM_MT_BS11_SET_ATTR, NM_OC_SITE_MANAGER,
Harald Welte05188ee2009-01-18 11:39:08 +0000780 0xff, 0xff, 0xff);
781 msgb_tv_put(msg, NM_ATT_TEI, tei);
782
783 return abis_nm_sendmsg(bts, msg);
784}
785
786/* like abis_nm_conn_terr_traf */
787int abis_nm_bs11_conn_oml(struct gsm_bts *bts, u_int8_t e1_port,
788 u_int8_t e1_timeslot, u_int8_t e1_subslot)
789{
790 struct abis_om_hdr *oh;
791 struct abis_nm_channel *ch;
792 struct msgb *msg = nm_msgb_alloc();
793
794 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte05188ee2009-01-18 11:39:08 +0000795 fill_om_fom_hdr(oh, sizeof(*ch), NM_MT_BS11_SET_ATTR,
796 NM_OC_SITE_MANAGER, 0xff, 0xff, 0xff);
797
798 ch = (struct abis_nm_channel *) msgb_put(msg, sizeof(*ch));
799 fill_nm_channel(ch, e1_port, e1_timeslot, e1_subslot);
800
801 return abis_nm_sendmsg(bts, msg);
802}
803
804int abis_nm_bs11_set_trx_power(struct gsm_bts_trx *trx, u_int8_t level)
805{
806 struct abis_om_hdr *oh;
807 struct msgb *msg = nm_msgb_alloc();
Harald Welte05188ee2009-01-18 11:39:08 +0000808
809 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +0000810 fill_om_fom_hdr(oh, 3, NM_MT_BS11_SET_ATTR,
Harald Welte05188ee2009-01-18 11:39:08 +0000811 NM_OC_BS11, BS11_OBJ_PA, 0x00, trx->nr);
812 msgb_tlv_put(msg, NM_ATT_BS11_TXPWR, 1, &level);
813
814 return abis_nm_sendmsg(trx->bts, msg);
815}
816
817static const u_int8_t bs11_logon_c7[] =
818 { 0x07, 0xd9, 0x01, 0x11, 0x0d, 0x10, 0x20 };
Harald Weltebb151312009-01-28 20:42:07 +0000819static const u_int8_t bs11_logon_c8[] = { 0x02 };
Harald Welte05188ee2009-01-18 11:39:08 +0000820static const u_int8_t bs11_logon_c9[] = "FACTORY";
821
Harald Welte1bc09062009-01-18 14:17:52 +0000822int abis_nm_bs11_factory_logon(struct gsm_bts *bts, int on)
Harald Welte05188ee2009-01-18 11:39:08 +0000823{
824 struct abis_om_hdr *oh;
825 struct msgb *msg = nm_msgb_alloc();
Harald Welte05188ee2009-01-18 11:39:08 +0000826
827 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte1bc09062009-01-18 14:17:52 +0000828 if (on) {
Harald Welte6f676a32009-01-18 14:27:48 +0000829 u_int8_t len = 3*2 + sizeof(bs11_logon_c7)
830 + sizeof(bs11_logon_c8) + sizeof(bs11_logon_c9);
Harald Welte1bc09062009-01-18 14:17:52 +0000831 fill_om_fom_hdr(oh, len, NM_MT_BS11_FACTORY_LOGON,
832 NM_OC_BS11_A3, 0xff, 0xff, 0xff);
833 msgb_tlv_put(msg, 0xc7, sizeof(bs11_logon_c7), bs11_logon_c7);
834 msgb_tlv_put(msg, 0xc8, sizeof(bs11_logon_c8), bs11_logon_c8);
835 msgb_tlv_put(msg, 0xc9, sizeof(bs11_logon_c9), bs11_logon_c9);
836 } else {
Harald Welte6f676a32009-01-18 14:27:48 +0000837 fill_om_fom_hdr(oh, 0, NM_MT_BS11_LOGOFF,
Harald Welte1bc09062009-01-18 14:17:52 +0000838 NM_OC_BS11_A3, 0xff, 0xff, 0xff);
839 }
Harald Welte05188ee2009-01-18 11:39:08 +0000840
841 return abis_nm_sendmsg(bts, msg);
842}
Harald Welte1bc09062009-01-18 14:17:52 +0000843
844int abis_nm_bs11_set_trx1_pw(struct gsm_bts *bts, const char *password)
845{
846 struct abis_om_hdr *oh;
847 struct msgb *msg;
848
849 if (strlen(password) != 10)
850 return -EINVAL;
851
852 msg = nm_msgb_alloc();
853 oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
Harald Welte6f676a32009-01-18 14:27:48 +0000854 fill_om_fom_hdr(oh, 2+strlen(password), NM_MT_BS11_SET_ATTR,
Harald Welte1bc09062009-01-18 14:17:52 +0000855 NM_OC_BS11, BS11_OBJ_TRX1, 0x00, 0x00);
856 msgb_tlv_put(msg, NM_ATT_BS11_PASSWORD, 10, (const u_int8_t *)password);
857
858 return abis_nm_sendmsg(bts, msg);
859}
860
861int abis_nm_bs11_get_state(struct gsm_bts *bts)
862{
863 return __simple_cmd(bts, NM_MT_BS11_GET_STATE);
864}