blob: a719903dd2cd64aee55358ec2e7e9d9fbe6d9b46 [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
Harald Welte9af6ddf2011-01-01 15:25:50 +01008 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
Harald Welte549faad2010-03-05 19:36:20 +010010 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Harald Welte549faad2010-03-05 19:36:20 +010016 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte549faad2010-03-05 19:36:20 +010019 *
20 */
21
22#include <unistd.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <errno.h>
27#include <stdint.h>
28
Harald Welte887deab2010-03-06 11:38:05 +010029#include <arpa/inet.h>
30
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010031#include <osmocom/core/talloc.h>
32#include <osmocom/core/timer.h>
33#include <osmocom/gsm/rxlev_stat.h>
34#include <osmocom/gsm/gsm48_ie.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
Harald Welte6526ca72010-08-04 13:13:07 +0200108static uint16_t last_arfcn;
109static struct gsm_sysinfo_freq nwl_si_freq[1024];
110#define FREQ_TYPE_NCELL_2 0x04 /* sub channel of SI 2 */
111#define FREQ_TYPE_NCELL_2bis 0x08 /* sub channel of SI 2bis */
112#define FREQ_TYPE_NCELL_2ter 0x10 /* sub channel of SI 2ter */
113
Harald Welte549faad2010-03-05 19:36:20 +0100114struct ipacc_ferr_elem {
115 int16_t freq_err;
116 uint8_t freq_qual;
117 uint8_t arfcn;
118} __attribute__((packed));
119
120struct ipacc_cusage_elem {
121 uint16_t arfcn:10,
122 rxlev:6;
123} __attribute__ ((packed));
124
125static int test_rep(void *_msg)
126{
127 struct msgb *msg = _msg;
128 struct abis_om_fom_hdr *foh = msgb_l3(msg);
129 uint16_t test_rep_len, ferr_list_len;
130 struct ipacc_ferr_elem *ife;
131 struct ipac_bcch_info binfo;
132 int i, rc;
133
134 DEBUGP(DNM, "TEST REPORT: ");
135
136 if (foh->data[0] != NM_ATT_TEST_NO ||
137 foh->data[2] != NM_ATT_TEST_REPORT)
138 return -EINVAL;
139
140 DEBUGPC(DNM, "test_no=0x%02x ", foh->data[1]);
141 /* data[2] == NM_ATT_TEST_REPORT */
142 /* data[3..4]: test_rep_len */
143 test_rep_len = ntohs(*(uint16_t *) &foh->data[3]);
144 /* data[5]: ip.access test result */
145 DEBUGPC(DNM, "tst_res=%s\n", ipacc_testres_name(foh->data[5]));
146
147 /* data[6]: ip.access nested IE. 3 == freq_err_list */
148 switch (foh->data[6]) {
149 case NM_IPAC_EIE_FREQ_ERR_LIST:
150 /* data[7..8]: length of ferr_list */
151 ferr_list_len = ntohs(*(uint16_t *) &foh->data[7]);
152
153 /* data[9...]: frequency error list elements */
154 for (i = 0; i < ferr_list_len; i+= sizeof(*ife)) {
155 ife = (struct ipacc_ferr_elem *) (foh->data + 9 + i);
156 DEBUGP(DNM, "==> ARFCN %4u, Frequency Error %6hd\n",
157 ife->arfcn, ntohs(ife->freq_err));
158 }
159 break;
160 case NM_IPAC_EIE_CHAN_USE_LIST:
161 /* data[7..8]: length of ferr_list */
162 ferr_list_len = ntohs(*(uint16_t *) &foh->data[7]);
163
164 /* data[9...]: channel usage list elements */
165 for (i = 0; i < ferr_list_len; i+= 2) {
166 uint16_t *cu_ptr = (uint16_t *)(foh->data + 9 + i);
167 uint16_t cu = ntohs(*cu_ptr);
Harald Welte887deab2010-03-06 11:38:05 +0100168 uint16_t arfcn = cu & 0x3ff;
169 uint8_t rxlev = cu >> 10;
170 DEBUGP(DNM, "==> ARFCN %4u, RxLev %2u\n", arfcn, rxlev);
171 rxlev_stat_input(&msg->trx->ipaccess.rxlev_stat,
172 arfcn, rxlev);
Harald Welte549faad2010-03-05 19:36:20 +0100173 }
174 break;
175 case NM_IPAC_EIE_BCCH_INFO_TYPE:
176 break;
177 case NM_IPAC_EIE_BCCH_INFO:
178 rc = ipac_parse_bcch_info(&binfo, foh->data+6);
179 if (rc < 0) {
180 DEBUGP(DNM, "BCCH Info parsing failed\n");
181 break;
182 }
Harald Welte1e194a32010-07-30 22:30:35 +0200183 DEBUGP(DNM, "==> ARFCN %u, RxLev %2u, RxQual %2u: %3d-%d, LAC %d CI %d BSIC %u\n",
Harald Welte549faad2010-03-05 19:36:20 +0100184 binfo.arfcn, binfo.rx_lev, binfo.rx_qual,
185 binfo.cgi.mcc, binfo.cgi.mnc,
Harald Welte1e194a32010-07-30 22:30:35 +0200186 binfo.cgi.lac, binfo.cgi.ci, binfo.bsic);
Harald Welte6526ca72010-08-04 13:13:07 +0200187
188 if (binfo.arfcn != last_arfcn) {
189 /* report is on a new arfcn, need to clear channel list */
190 memset(nwl_si_freq, 0, sizeof(nwl_si_freq));
191 last_arfcn = binfo.arfcn;
192 }
193 if (binfo.info_type & IPAC_BINF_NEIGH_BA_SI2) {
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200194 DEBUGP(DNM, "BA SI2: %s\n", osmo_hexdump(binfo.ba_list_si2, sizeof(binfo.ba_list_si2)));
Harald Welte6526ca72010-08-04 13:13:07 +0200195 gsm48_decode_freq_list(nwl_si_freq, binfo.ba_list_si2, sizeof(binfo.ba_list_si2),
196 0x8c, FREQ_TYPE_NCELL_2);
197 }
198 if (binfo.info_type & IPAC_BINF_NEIGH_BA_SI2bis) {
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200199 DEBUGP(DNM, "BA SI2bis: %s\n", osmo_hexdump(binfo.ba_list_si2bis, sizeof(binfo.ba_list_si2bis)));
Harald Welte6526ca72010-08-04 13:13:07 +0200200 gsm48_decode_freq_list(nwl_si_freq, binfo.ba_list_si2bis, sizeof(binfo.ba_list_si2bis),
201 0x8e, FREQ_TYPE_NCELL_2bis);
202 }
203 if (binfo.info_type & IPAC_BINF_NEIGH_BA_SI2ter) {
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200204 DEBUGP(DNM, "BA SI2ter: %s\n", osmo_hexdump(binfo.ba_list_si2ter, sizeof(binfo.ba_list_si2ter)));
Harald Welte6526ca72010-08-04 13:13:07 +0200205 gsm48_decode_freq_list(nwl_si_freq, binfo.ba_list_si2ter, sizeof(binfo.ba_list_si2ter),
206 0x8e, FREQ_TYPE_NCELL_2ter);
207 }
208 for (i = 0; i < ARRAY_SIZE(nwl_si_freq); i++) {
209 if (nwl_si_freq[i].mask)
210 DEBUGP(DNM, "Neighbor Cell on ARFCN %u\n", i);
211 }
Harald Welte549faad2010-03-05 19:36:20 +0100212 break;
213 default:
214 break;
215 }
216
217 switch (foh->data[5]) {
218 case NM_IPACC_TESTRES_SUCCESS:
219 case NM_IPACC_TESTRES_STOPPED:
220 case NM_IPACC_TESTRES_TIMEOUT:
221 case NM_IPACC_TESTRES_NO_CHANS:
222 msg->trx->ipaccess.test_state = IPAC_TEST_S_IDLE;
223 /* Send signal to notify higher layers of test completion */
Harald Welte887deab2010-03-06 11:38:05 +0100224 DEBUGP(DNM, "dispatching S_IPAC_NWL_COMPLETE signal\n");
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200225 osmo_signal_dispatch(SS_IPAC_NWL, S_IPAC_NWL_COMPLETE, msg->trx);
Harald Welte549faad2010-03-05 19:36:20 +0100226 break;
227 case NM_IPACC_TESTRES_PARTIAL:
228 msg->trx->ipaccess.test_state = IPAC_TEST_S_PARTIAL;
229 break;
230 }
231
232 return 0;
233}
234
235static int nwl_sig_cb(unsigned int subsys, unsigned int signal,
236 void *handler_data, void *signal_data)
237{
Harald Welte549faad2010-03-05 19:36:20 +0100238 switch (signal) {
239 case S_NM_TEST_REP:
240 return test_rep(signal_data);
241 default:
242 break;
243 }
244
245 return 0;
246}
247
248void ipac_nwl_init(void)
249{
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200250 osmo_signal_register_handler(SS_NM, nwl_sig_cb, NULL);
Harald Welte549faad2010-03-05 19:36:20 +0100251}