blob: 23e404f1e7311206d326c80bda7feb7daa81fc52 [file] [log] [blame]
Harald Welte549faad2010-03-05 19:36:20 +01001/* ip.access nanoBTS network listen mode */
2
3/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23#include <unistd.h>
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <errno.h>
28#include <stdint.h>
29
Harald Welte887deab2010-03-06 11:38:05 +010030#include <arpa/inet.h>
31
Harald Welte549faad2010-03-05 19:36:20 +010032#include <osmocore/talloc.h>
33#include <osmocore/timer.h>
Harald Welte887deab2010-03-06 11:38:05 +010034#include <osmocore/rxlev_stat.h>
Harald Welte549faad2010-03-05 19:36:20 +010035
36#include <openbsc/gsm_data.h>
37#include <openbsc/abis_nm.h>
38#include <openbsc/signal.h>
39#include <openbsc/debug.h>
40
Harald Welte887deab2010-03-06 11:38:05 +010041#define WHITELIST_MAX_SIZE ((NUM_ARFCNS*2)+2+1)
42
Harald Weltec95cf102010-07-22 20:12:09 +020043int ipac_rxlevstat2whitelist(uint16_t *buf, const struct rxlev_stats *st, uint8_t min_rxlev,
44 uint16_t max_num_arfcns)
Harald Welte887deab2010-03-06 11:38:05 +010045{
46 int i;
47 unsigned int num_arfcn = 0;
48
Harald Weltec95cf102010-07-22 20:12:09 +020049 for (i = NUM_RXLEVS-1; i >= min_rxlev; i--) {
Harald Welte887deab2010-03-06 11:38:05 +010050 int16_t arfcn = -1;
51
52 while ((arfcn = rxlev_stat_get_next(st, i, arfcn)) >= 0) {
53 *buf++ = htons(arfcn);
54 num_arfcn++;
Harald Weltec95cf102010-07-22 20:12:09 +020055
Harald Welte887deab2010-03-06 11:38:05 +010056 }
Harald Weltec95cf102010-07-22 20:12:09 +020057
58 if (num_arfcn > max_num_arfcns)
59 break;
Harald Welte887deab2010-03-06 11:38:05 +010060 }
61
62 return num_arfcn;
63}
64
Harald Welte549faad2010-03-05 19:36:20 +010065enum ipac_test_state {
66 IPAC_TEST_S_IDLE,
67 IPAC_TEST_S_RQD,
68 IPAC_TEST_S_EXEC,
69 IPAC_TEST_S_PARTIAL,
70};
71
Harald Welte887deab2010-03-06 11:38:05 +010072int ipac_nwl_test_start(struct gsm_bts_trx *trx, uint8_t testnr,
73 const uint8_t *phys_conf, unsigned int phys_conf_len)
Harald Welte549faad2010-03-05 19:36:20 +010074{
Harald Welte887deab2010-03-06 11:38:05 +010075 struct msgb *msg;
Harald Welte549faad2010-03-05 19:36:20 +010076
77 if (trx->ipaccess.test_state != IPAC_TEST_S_IDLE) {
78 fprintf(stderr, "Cannot start test in state %u\n", trx->ipaccess.test_state);
79 return -EINVAL;
80 }
81
Harald Welte887deab2010-03-06 11:38:05 +010082 switch (testnr) {
83 case NM_IPACC_TESTNO_CHAN_USAGE:
Harald Weltea0b0f362010-03-09 22:35:37 +010084 case NM_IPACC_TESTNO_BCCH_CHAN_USAGE:
Harald Welte887deab2010-03-06 11:38:05 +010085 rxlev_stat_reset(&trx->ipaccess.rxlev_stat);
86 break;
87 }
88
89 msg = msgb_alloc_headroom(phys_conf_len+256, 128, "OML");
90
91 if (phys_conf && phys_conf_len) {
92 uint8_t *payload;
93 /* first put the phys conf header */
94 msgb_tv16_put(msg, NM_ATT_PHYS_CONF, phys_conf_len);
95 payload = msgb_put(msg, phys_conf_len);
96 memcpy(payload, phys_conf, phys_conf_len);
97 }
98
99 abis_nm_perform_test(trx->bts, NM_OC_RADIO_CARRIER, 0, trx->nr, 0xff,
100 testnr, 1, msg);
Harald Weltea0b0f362010-03-09 22:35:37 +0100101 trx->ipaccess.test_nr = testnr;
Harald Welte549faad2010-03-05 19:36:20 +0100102
103 /* FIXME: start safety timer until when test is supposed to complete */
104
105 return 0;
106}
107
108struct ipacc_ferr_elem {
109 int16_t freq_err;
110 uint8_t freq_qual;
111 uint8_t arfcn;
112} __attribute__((packed));
113
114struct ipacc_cusage_elem {
115 uint16_t arfcn:10,
116 rxlev:6;
117} __attribute__ ((packed));
118
119static int test_rep(void *_msg)
120{
121 struct msgb *msg = _msg;
122 struct abis_om_fom_hdr *foh = msgb_l3(msg);
123 uint16_t test_rep_len, ferr_list_len;
124 struct ipacc_ferr_elem *ife;
125 struct ipac_bcch_info binfo;
126 int i, rc;
127
128 DEBUGP(DNM, "TEST REPORT: ");
129
130 if (foh->data[0] != NM_ATT_TEST_NO ||
131 foh->data[2] != NM_ATT_TEST_REPORT)
132 return -EINVAL;
133
134 DEBUGPC(DNM, "test_no=0x%02x ", foh->data[1]);
135 /* data[2] == NM_ATT_TEST_REPORT */
136 /* data[3..4]: test_rep_len */
137 test_rep_len = ntohs(*(uint16_t *) &foh->data[3]);
138 /* data[5]: ip.access test result */
139 DEBUGPC(DNM, "tst_res=%s\n", ipacc_testres_name(foh->data[5]));
140
141 /* data[6]: ip.access nested IE. 3 == freq_err_list */
142 switch (foh->data[6]) {
143 case NM_IPAC_EIE_FREQ_ERR_LIST:
144 /* data[7..8]: length of ferr_list */
145 ferr_list_len = ntohs(*(uint16_t *) &foh->data[7]);
146
147 /* data[9...]: frequency error list elements */
148 for (i = 0; i < ferr_list_len; i+= sizeof(*ife)) {
149 ife = (struct ipacc_ferr_elem *) (foh->data + 9 + i);
150 DEBUGP(DNM, "==> ARFCN %4u, Frequency Error %6hd\n",
151 ife->arfcn, ntohs(ife->freq_err));
152 }
153 break;
154 case NM_IPAC_EIE_CHAN_USE_LIST:
155 /* data[7..8]: length of ferr_list */
156 ferr_list_len = ntohs(*(uint16_t *) &foh->data[7]);
157
158 /* data[9...]: channel usage list elements */
159 for (i = 0; i < ferr_list_len; i+= 2) {
160 uint16_t *cu_ptr = (uint16_t *)(foh->data + 9 + i);
161 uint16_t cu = ntohs(*cu_ptr);
Harald Welte887deab2010-03-06 11:38:05 +0100162 uint16_t arfcn = cu & 0x3ff;
163 uint8_t rxlev = cu >> 10;
164 DEBUGP(DNM, "==> ARFCN %4u, RxLev %2u\n", arfcn, rxlev);
165 rxlev_stat_input(&msg->trx->ipaccess.rxlev_stat,
166 arfcn, rxlev);
Harald Welte549faad2010-03-05 19:36:20 +0100167 }
168 break;
169 case NM_IPAC_EIE_BCCH_INFO_TYPE:
170 break;
171 case NM_IPAC_EIE_BCCH_INFO:
172 rc = ipac_parse_bcch_info(&binfo, foh->data+6);
173 if (rc < 0) {
174 DEBUGP(DNM, "BCCH Info parsing failed\n");
175 break;
176 }
177 DEBUGP(DNM, "==> ARFCN %u, RxLev %2u, RxQual %2u: %3d-%d, LAC %d CI %d\n",
178 binfo.arfcn, binfo.rx_lev, binfo.rx_qual,
179 binfo.cgi.mcc, binfo.cgi.mnc,
180 binfo.cgi.lac, binfo.cgi.ci);
181 break;
182 default:
183 break;
184 }
185
186 switch (foh->data[5]) {
187 case NM_IPACC_TESTRES_SUCCESS:
188 case NM_IPACC_TESTRES_STOPPED:
189 case NM_IPACC_TESTRES_TIMEOUT:
190 case NM_IPACC_TESTRES_NO_CHANS:
191 msg->trx->ipaccess.test_state = IPAC_TEST_S_IDLE;
192 /* Send signal to notify higher layers of test completion */
Harald Welte887deab2010-03-06 11:38:05 +0100193 DEBUGP(DNM, "dispatching S_IPAC_NWL_COMPLETE signal\n");
Harald Welte549faad2010-03-05 19:36:20 +0100194 dispatch_signal(SS_IPAC_NWL, S_IPAC_NWL_COMPLETE, msg->trx);
195 break;
196 case NM_IPACC_TESTRES_PARTIAL:
197 msg->trx->ipaccess.test_state = IPAC_TEST_S_PARTIAL;
198 break;
199 }
200
201 return 0;
202}
203
204static int nwl_sig_cb(unsigned int subsys, unsigned int signal,
205 void *handler_data, void *signal_data)
206{
Harald Welte549faad2010-03-05 19:36:20 +0100207 switch (signal) {
208 case S_NM_TEST_REP:
209 return test_rep(signal_data);
210 default:
211 break;
212 }
213
214 return 0;
215}
216
217void ipac_nwl_init(void)
218{
219 register_signal_handler(SS_NM, nwl_sig_cb, NULL);
220}