blob: bf203944dbd49e306554134400b69e49dc04ca94 [file] [log] [blame]
Harald Weltea43f7892009-12-01 18:04:30 +05301/* GSM 04.08 System Information (SI) encoding and decoding
2 * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */
3
Harald Welte7401ae62010-06-15 16:44:12 +02004/* (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +02005 * (C) 2012 Holger Hans Peter Freyther
Harald Weltea43f7892009-12-01 18:04:30 +05306 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Harald Weltea43f7892009-12-01 18:04:30 +053012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Weltea43f7892009-12-01 18:04:30 +053018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Weltea43f7892009-12-01 18:04:30 +053021 *
22 */
23
24#include <errno.h>
25#include <string.h>
Harald Welte6c40def2009-12-14 22:07:14 +010026#include <stdio.h>
Harald Weltea43f7892009-12-01 18:04:30 +053027#include <netinet/in.h>
Max5fa7e362016-04-15 16:04:45 +020028#include <stdbool.h>
Harald Weltea43f7892009-12-01 18:04:30 +053029
Harald Welte80cffaf2011-05-24 15:02:20 +020030#include <osmocom/core/bitvec.h>
31#include <osmocom/core/utils.h>
32#include <osmocom/gsm/sysinfo.h>
33
34#include <openbsc/debug.h>
Harald Weltea43f7892009-12-01 18:04:30 +053035#include <openbsc/gsm_04_08.h>
36#include <openbsc/gsm_data.h>
37#include <openbsc/abis_rsl.h>
38#include <openbsc/rest_octets.h>
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +020039#include <openbsc/arfcn_range_encode.h>
Harald Weltea43f7892009-12-01 18:04:30 +053040
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +010041/*
42 * DCS1800 and PCS1900 have overlapping ARFCNs. We would need to set the
43 * ARFCN_PCS flag on the 1900 ARFCNs but this would increase cell_alloc
44 * and other arrays to make sure (ARFCN_PCS + 1024)/8 ARFCNs fit into the
45 * array. DCS1800 and PCS1900 can not be used at the same time so conserve
46 * memory and do the below.
47 */
48static int band_compatible(const struct gsm_bts *bts, int arfcn)
49{
50 enum gsm_band band = gsm_arfcn2band(arfcn);
51
52 /* normal case */
53 if (band == bts->band)
54 return 1;
55 /* deal with ARFCN_PCS not set */
56 if (band == GSM_BAND_1800 && bts->band == GSM_BAND_1900)
57 return 1;
58
59 return 0;
60}
Holger Hans Peter Freytherb91a1062010-01-06 06:38:14 +010061
Holger Hans Peter Freytherf876c392013-03-06 12:02:33 +010062static int is_dcs_net(const struct gsm_bts *bts)
63{
64 if (bts->band == GSM_BAND_850)
65 return 0;
66 if (bts->band == GSM_BAND_1900)
67 return 0;
68 return 1;
69}
70
Max299a9992016-04-28 17:51:15 +020071/* Return p(n) for given NR_OF_TDD_CELLS - see Table 9.1.54.1a, 3GPP TS 44.018 */
Max26679e02016-04-20 15:57:13 +020072unsigned range1024_p(unsigned n)
73{
74 switch (n) {
75 case 0: return 0;
76 case 1: return 10;
77 case 2: return 19;
78 case 3: return 28;
79 case 4: return 36;
80 case 5: return 44;
81 case 6: return 52;
82 case 7: return 60;
83 case 8: return 67;
84 case 9: return 74;
85 case 10: return 81;
86 case 11: return 88;
87 case 12: return 95;
88 case 13: return 102;
89 case 14: return 109;
90 case 15: return 116;
91 case 16: return 122;
92 default: return 0;
93 }
94}
95
96/* Return q(m) for given NR_OF_TDD_CELLS - see Table 9.1.54.1b, 3GPP TS 44.018 */
97unsigned range512_q(unsigned m)
98{
99 switch (m) {
100 case 0: return 0;
101 case 1: return 9;
102 case 2: return 17;
103 case 3: return 25;
104 case 4: return 32;
105 case 5: return 39;
106 case 6: return 46;
107 case 7: return 53;
108 case 8: return 59;
109 case 9: return 65;
110 case 10: return 71;
111 case 11: return 77;
112 case 12: return 83;
113 case 13: return 89;
114 case 14: return 95;
115 case 15: return 101;
116 case 16: return 106;
117 case 17: return 111;
118 case 18: return 116;
119 case 19: return 121;
120 case 20: return 126;
121 default: return 0;
122 }
123}
124
125unsigned earfcn_size(const struct osmo_earfcn_si2q *e)
126{
127 /* account for all the constant bits in append_earfcn() */
128 return 25 + osmo_earfcn_bit_size(e);
129}
130
131unsigned uarfcn_size(const uint16_t *u, const uint16_t *sc, size_t u_len)
132{
133 /*account for all the constant bits in append_uarfcn() */
134 return 29 + range1024_p(u_len);
135}
136
Maxaafff962016-04-20 15:57:14 +0200137bool si2q_size_check(const struct gsm_bts *bts)
138{
139 const struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
140 const uint16_t *u = bts->si_common.data.uarfcn_list,
141 *sc = bts->si_common.data.scramble_list;
142 size_t len = bts->si_common.uarfcn_length;
143 unsigned e_sz = e ? earfcn_size(e) : 1,
144 u_sz = len ? uarfcn_size(u, sc, len) : 1;
145 /* 2 bits are used in between UARFCN and EARFCN structs */
146 if (SI2Q_MIN_LEN + u_sz + 2 + e_sz > SI2Q_MAX_LEN)
147 return false;
148 return true;
149}
150
Max26679e02016-04-20 15:57:13 +0200151/* 3GPP TS 44.018, Table 9.1.54.1 - prepend diversity bit to scrambling code */
152uint16_t encode_fdd(uint16_t scramble, bool diversity)
153{
154 if (diversity)
155 return scramble | (1 << 9);
156 return scramble;
157}
158
159int bts_uarfcn_del(struct gsm_bts *bts, uint16_t arfcn, uint16_t scramble)
160{
161 uint16_t sc0 = encode_fdd(scramble, false), sc1 = encode_fdd(scramble, true),
162 *ual = bts->si_common.data.uarfcn_list,
163 *scl = bts->si_common.data.scramble_list;
164 size_t len = bts->si_common.uarfcn_length, i;
165 for (i = 0; i < len; i++) {
166 if (arfcn == ual[i] && (sc0 == scl[i] || sc1 == scl[i])) {
167 /* we rely on the assumption that (uarfcn, scramble)
168 tuple is unique in the lists */
169 if (i != len - 1) { /* move the tail if necessary */
170 memmove(ual + i, ual + i + 1, 2 * (len - i + 1));
171 memmove(scl + i, scl + i + 1, 2 * (len - i + 1));
172 }
173 break;
174 }
175 }
176
177 if (i == len)
178 return -EINVAL;
179
180 bts->si_common.uarfcn_length--;
181 return 0;
182}
183
184int bts_uarfcn_add(struct gsm_bts *bts, uint16_t arfcn, uint16_t scramble,
185 bool diversity)
186{
187 size_t len = bts->si_common.uarfcn_length, i, k;
188 uint16_t scr, chk,
189 *ual = bts->si_common.data.uarfcn_list,
190 *scl = bts->si_common.data.scramble_list,
191 scramble1 = encode_fdd(scramble, true),
192 scramble0 = encode_fdd(scramble, false);
193
194 scr = diversity ? scramble1 : scramble0;
195 chk = diversity ? scramble0 : scramble1;
196
197 if (len == MAX_EARFCN_LIST)
198 return -ENOMEM;
199
200 for (i = 0, k = 0; i < len; i++) {
201 if (arfcn == ual[i] && (scr == scl[i] || chk == scl[i]))
202 return -EADDRINUSE;
203 if (scr > scl[i])
204 k = i + 1;
205 }
206 /* we keep lists sorted by scramble code:
207 insert into appropriate position and move the tail */
208 if (len - k) {
209 memmove(ual + k + 1, ual + k, (len - k) * 2);
210 memmove(scl + k + 1, scl + k, (len - k) * 2);
211 }
212 ual[k] = arfcn;
213 scl[k] = scr;
214 bts->si_common.uarfcn_length++;
Maxaafff962016-04-20 15:57:14 +0200215
216 if (si2q_size_check(bts))
217 return 0;
218
219 bts_uarfcn_del(bts, arfcn, scramble);
220 return -ENOSPC;
Max26679e02016-04-20 15:57:13 +0200221}
222
Max5fa7e362016-04-15 16:04:45 +0200223static inline int use_arfcn(const struct gsm_bts *bts, const bool bis, const bool ter,
224 const bool pgsm, const int arfcn)
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100225{
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100226 if (bts->force_combined_si)
227 return !bis && !ter;
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +0100228 if (!bis && !ter && band_compatible(bts, arfcn))
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100229 return 1;
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100230 /* Correct but somehow broken with either the nanoBTS or the iPhone5 */
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +0100231 if (bis && pgsm && band_compatible(bts, arfcn) && (arfcn < 1 || arfcn > 124))
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100232 return 1;
Holger Hans Peter Freytherd4d1d5e2013-01-17 13:49:39 +0100233 if (ter && !band_compatible(bts, arfcn))
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100234 return 1;
235 return 0;
236}
237
Harald Welteda760d32009-12-14 20:25:05 +0100238/* Frequency Lists as per TS 04.08 10.5.2.13 */
239
240/* 10.5.2.13.2: Bit map 0 format */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200241static int freq_list_bm0_set_arfcn(uint8_t *chan_list, unsigned int arfcn)
Harald Weltea43f7892009-12-01 18:04:30 +0530242{
243 unsigned int byte, bit;
244
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100245 if (arfcn > 124 || arfcn < 1) {
246 LOGP(DRR, LOGL_ERROR, "Bitmap 0 only supports ARFCN 1...124\n");
Harald Weltea43f7892009-12-01 18:04:30 +0530247 return -EINVAL;
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100248 }
Harald Weltea43f7892009-12-01 18:04:30 +0530249
Harald Welteda760d32009-12-14 20:25:05 +0100250 /* the bitmask is from 1..124, not from 0..123 */
251 arfcn--;
252
Harald Weltea43f7892009-12-01 18:04:30 +0530253 byte = arfcn / 8;
254 bit = arfcn % 8;
255
Harald Welteda760d32009-12-14 20:25:05 +0100256 chan_list[GSM48_CELL_CHAN_DESC_SIZE-1-byte] |= (1 << bit);
Harald Weltea43f7892009-12-01 18:04:30 +0530257
258 return 0;
259}
260
Harald Welteda760d32009-12-14 20:25:05 +0100261/* 10.5.2.13.7: Variable bit map format */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200262static int freq_list_bmrel_set_arfcn(uint8_t *chan_list, unsigned int arfcn)
Harald Weltea43f7892009-12-01 18:04:30 +0530263{
264 unsigned int byte, bit;
265 unsigned int min_arfcn;
266 unsigned int bitno;
267
268 min_arfcn = (chan_list[0] & 1) << 9;
269 min_arfcn |= chan_list[1] << 1;
270 min_arfcn |= (chan_list[2] >> 7) & 1;
271
272 /* The lower end of our bitmaks is always implicitly included */
273 if (arfcn == min_arfcn)
274 return 0;
275
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100276 if (((arfcn - min_arfcn) & 1023) > 111) {
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100277 LOGP(DRR, LOGL_ERROR, "arfcn(%u) > min(%u) + 111\n", arfcn, min_arfcn);
Harald Weltea43f7892009-12-01 18:04:30 +0530278 return -EINVAL;
Harald Welte152b6262009-12-16 11:57:48 +0100279 }
Harald Weltea43f7892009-12-01 18:04:30 +0530280
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100281 bitno = (arfcn - min_arfcn) & 1023;
Harald Weltea43f7892009-12-01 18:04:30 +0530282 byte = bitno / 8;
283 bit = bitno % 8;
284
285 chan_list[2 + byte] |= 1 << (7 - bit);
286
287 return 0;
288}
289
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200290/* generate a variable bitmap */
Max5fa7e362016-04-15 16:04:45 +0200291static inline int enc_freq_lst_var_bitmap(uint8_t *chan_list,
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200292 struct bitvec *bv, const struct gsm_bts *bts,
Max5fa7e362016-04-15 16:04:45 +0200293 bool bis, bool ter, int min, bool pgsm)
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200294{
295 int i;
296
297 /* set it to 'Variable bitmap format' */
298 chan_list[0] = 0x8e;
299
300 chan_list[0] |= (min >> 9) & 1;
301 chan_list[1] = (min >> 1);
302 chan_list[2] = (min & 1) << 7;
303
304 for (i = 0; i < bv->data_len*8; i++) {
305 /* see notes in bitvec2freq_list */
306 if (bitvec_get_bit_pos(bv, i)
Harald Weltee18f78e2015-09-04 06:21:32 +0200307 && ((!bis && !ter && band_compatible(bts,i))
308 || (bis && pgsm && band_compatible(bts,i) && (i < 1 || i > 124))
309 || (ter && !band_compatible(bts, i)))) {
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200310 int rc = freq_list_bmrel_set_arfcn(chan_list, i);
311 if (rc < 0)
312 return rc;
313 }
314 }
315
316 return 0;
317}
318
319/* generate a frequency list with the range 512 format */
Max5fa7e362016-04-15 16:04:45 +0200320static inline int enc_freq_lst_range(uint8_t *chan_list,
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200321 struct bitvec *bv, const struct gsm_bts *bts,
Max5fa7e362016-04-15 16:04:45 +0200322 bool bis, bool ter, bool pgsm)
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200323{
324 int arfcns[RANGE_ENC_MAX_ARFCNS];
325 int w[RANGE_ENC_MAX_ARFCNS];
326 int f0_included = 0;
327 int arfcns_used = 0;
328 int i, rc, range, f0;
329
330 /*
331 * Select ARFCNs according to the rules in bitvec2freq_list
332 */
333 for (i = 0; i < bv->data_len * 8; ++i) {
334 /* More ARFCNs than the maximum */
335 if (arfcns_used > ARRAY_SIZE(arfcns))
336 return -1;
337 /* Check if we can select it? */
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100338 if (bitvec_get_bit_pos(bv, i) && use_arfcn(bts, bis, ter, pgsm, i))
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200339 arfcns[arfcns_used++] = i;
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200340 }
341
342 /*
343 * Check if the given list of ARFCNs can be encoded.
344 */
345 range = range_enc_determine_range(arfcns, arfcns_used, &f0);
346 if (range == ARFCN_RANGE_INVALID)
347 return -2;
348
349 /*
350 * Manipulate the ARFCN list according to the rules in J4 depending
351 * on the selected range.
352 */
Jacob Erlbeck45014a02014-01-14 10:42:58 +0100353 arfcns_used = range_enc_filter_arfcns(arfcns, arfcns_used,
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200354 f0, &f0_included);
355
356 memset(w, 0, sizeof(w));
357 rc = range_enc_arfcns(range, arfcns, arfcns_used, w, 0);
358 if (rc != 0)
359 return -3;
360
361 /* Select the range and the amount of bits needed */
362 switch (range) {
363 case ARFCN_RANGE_128:
364 return range_enc_range128(chan_list, f0, w);
365 break;
366 case ARFCN_RANGE_256:
367 return range_enc_range256(chan_list, f0, w);
368 break;
369 case ARFCN_RANGE_512:
370 return range_enc_range512(chan_list, f0, w);
371 break;
372 case ARFCN_RANGE_1024:
373 return range_enc_range1024(chan_list, f0, f0_included, w);
374 break;
375 default:
376 return -4;
377 };
378}
379
Harald Weltea43f7892009-12-01 18:04:30 +0530380/* generate a cell channel list as per Section 10.5.2.1b of 04.08 */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200381static int bitvec2freq_list(uint8_t *chan_list, struct bitvec *bv,
Max5fa7e362016-04-15 16:04:45 +0200382 const struct gsm_bts *bts, bool bis, bool ter)
Harald Weltea43f7892009-12-01 18:04:30 +0530383{
Max5fa7e362016-04-15 16:04:45 +0200384 int i, rc, min = -1, max = -1, arfcns = 0;
385 bool pgsm = false;
Harald Weltea43f7892009-12-01 18:04:30 +0530386 memset(chan_list, 0, 16);
387
Harald Welte29350342012-02-17 15:58:23 +0100388 if (bts->band == GSM_BAND_900
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100389 && bts->c0->arfcn >= 1 && bts->c0->arfcn <= 124)
Max5fa7e362016-04-15 16:04:45 +0200390 pgsm = true;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100391 /* P-GSM-only handsets only support 'bit map 0 format' */
392 if (!bis && !ter && pgsm) {
Harald Weltea43f7892009-12-01 18:04:30 +0530393 chan_list[0] = 0;
Harald Welte6c40def2009-12-14 22:07:14 +0100394
395 for (i = 0; i < bv->data_len*8; i++) {
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100396 if (i >= 1 && i <= 124
397 && bitvec_get_bit_pos(bv, i)) {
Harald Welte6c40def2009-12-14 22:07:14 +0100398 rc = freq_list_bm0_set_arfcn(chan_list, i);
399 if (rc < 0)
400 return rc;
401 }
Harald Weltea43f7892009-12-01 18:04:30 +0530402 }
403 return 0;
404 }
405
Harald Welte6c40def2009-12-14 22:07:14 +0100406 for (i = 0; i < bv->data_len*8; i++) {
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100407 /* in case of SI2 or SI5 allow all neighbours in same band
408 * in case of SI*bis, allow neighbours in same band ouside pgsm
409 * in case of SI*ter, allow neighbours in different bands
410 */
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100411 if (!bitvec_get_bit_pos(bv, i))
412 continue;
413 if (!use_arfcn(bts, bis, ter, pgsm, i))
414 continue;
415 /* count the arfcns we want to carry */
416 arfcns += 1;
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200417
Holger Hans Peter Freyther9e1952a2013-01-17 12:04:17 +0100418 /* 955..1023 < 0..885 */
419 if (min < 0)
420 min = i;
421 if (i >= 955 && min < 955)
422 min = i;
423 if (i >= 955 && min >= 955 && i < min)
424 min = i;
425 if (i < 955 && min < 955 && i < min)
426 min = i;
427 if (max < 0)
428 max = i;
429 if (i < 955 && max >= 955)
430 max = i;
431 if (i >= 955 && max >= 955 && i > max)
432 max = i;
433 if (i < 955 && max < 955 && i > max)
434 max = i;
Harald Weltea43f7892009-12-01 18:04:30 +0530435 }
436
Sylvain Munaut42a56522009-12-24 14:20:19 +0100437 if (max == -1) {
438 /* Empty set, use 'bit map 0 format' */
439 chan_list[0] = 0;
440 return 0;
441 }
442
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200443 /* Now find the best encoding */
444 if (((max - min) & 1023) <= 111)
445 return enc_freq_lst_var_bitmap(chan_list, bv, bts, bis,
446 ter, min, pgsm);
Harald Weltea43f7892009-12-01 18:04:30 +0530447
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200448 /* Attempt to do the range encoding */
449 rc = enc_freq_lst_range(chan_list, bv, bts, bis, ter, pgsm);
450 if (rc == 0)
451 return 0;
Harald Weltea43f7892009-12-01 18:04:30 +0530452
Holger Hans Peter Freyther511f9c32012-10-13 12:38:54 +0200453 LOGP(DRR, LOGL_ERROR, "min_arfcn=%u, max_arfcn=%u, arfcns=%d "
454 "can not generate ARFCN list", min, max, arfcns);
455 return -EINVAL;
Harald Weltea43f7892009-12-01 18:04:30 +0530456}
457
458/* generate a cell channel list as per Section 10.5.2.1b of 04.08 */
Dieter Spaar16646022011-07-28 00:01:50 +0200459/* static*/ int generate_cell_chan_list(uint8_t *chan_list, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530460{
Harald Weltea43f7892009-12-01 18:04:30 +0530461 struct gsm_bts_trx *trx;
Harald Welte6c40def2009-12-14 22:07:14 +0100462 struct bitvec *bv = &bts->si_common.cell_alloc;
Harald Weltea43f7892009-12-01 18:04:30 +0530463
Harald Weltea39b0f22010-06-14 22:26:10 +0200464 /* Zero-initialize the bit-vector */
Harald Weltec8794b52010-06-16 11:09:18 +0200465 memset(bv->data, 0, bv->data_len);
Harald Weltea39b0f22010-06-14 22:26:10 +0200466
Harald Welte6c40def2009-12-14 22:07:14 +0100467 /* first we generate a bitvec of all TRX ARFCN's in our BTS */
Harald Weltea39b0f22010-06-14 22:26:10 +0200468 llist_for_each_entry(trx, &bts->trx_list, list) {
469 unsigned int i, j;
470 /* Always add the TRX's ARFCN */
Harald Welte6c40def2009-12-14 22:07:14 +0100471 bitvec_set_bit_pos(bv, trx->arfcn, 1);
Harald Weltea39b0f22010-06-14 22:26:10 +0200472 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
473 struct gsm_bts_trx_ts *ts = &trx->ts[i];
474 /* Add any ARFCNs present in hopping channels */
475 for (j = 0; j < 1024; j++) {
476 if (bitvec_get_bit_pos(&ts->hopping.arfcns, j))
477 bitvec_set_bit_pos(bv, j, 1);
478 }
479 }
480 }
Harald Weltea43f7892009-12-01 18:04:30 +0530481
Harald Welte6c40def2009-12-14 22:07:14 +0100482 /* then we generate a GSM 04.08 frequency list from the bitvec */
Max5fa7e362016-04-15 16:04:45 +0200483 return bitvec2freq_list(chan_list, bv, bts, false, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530484}
485
Harald Welte6c40def2009-12-14 22:07:14 +0100486/* generate a cell channel list as per Section 10.5.2.1b of 04.08 */
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100487static int generate_bcch_chan_list(uint8_t *chan_list, struct gsm_bts *bts,
Max5fa7e362016-04-15 16:04:45 +0200488 bool si5, bool bis, bool ter)
Harald Welte6c40def2009-12-14 22:07:14 +0100489{
490 struct gsm_bts *cur_bts;
Harald Welte64c07d22011-02-15 11:43:27 +0100491 struct bitvec *bv;
492
493 if (si5 && bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP)
494 bv = &bts->si_common.si5_neigh_list;
495 else
496 bv = &bts->si_common.neigh_list;
Harald Welte6c40def2009-12-14 22:07:14 +0100497
Harald Welte32c09622011-01-11 23:44:56 +0100498 /* Generate list of neighbor cells if we are in automatic mode */
Harald Welte64c07d22011-02-15 11:43:27 +0100499 if (bts->neigh_list_manual_mode == NL_MODE_AUTOMATIC) {
Harald Welte21bbda22011-02-19 20:43:37 +0100500 /* Zero-initialize the bit-vector */
501 memset(bv->data, 0, bv->data_len);
502
Harald Welte32c09622011-01-11 23:44:56 +0100503 /* first we generate a bitvec of the BCCH ARFCN's in our BSC */
504 llist_for_each_entry(cur_bts, &bts->network->bts_list, list) {
505 if (cur_bts == bts)
506 continue;
507 bitvec_set_bit_pos(bv, cur_bts->c0->arfcn, 1);
508 }
Harald Welte6c40def2009-12-14 22:07:14 +0100509 }
510
511 /* then we generate a GSM 04.08 frequency list from the bitvec */
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100512 return bitvec2freq_list(chan_list, bv, bts, bis, ter);
513}
514
515static int list_arfcn(uint8_t *chan_list, uint8_t mask, char *text)
516{
517 int n = 0, i;
518 struct gsm_sysinfo_freq freq[1024];
519
520 memset(freq, 0, sizeof(freq));
521 gsm48_decode_freq_list(freq, chan_list, 16, 0xce, 1);
522 for (i = 0; i < 1024; i++) {
523 if (freq[i].mask) {
524 if (!n)
525 LOGP(DRR, LOGL_INFO, "%s", text);
526 LOGPC(DRR, LOGL_INFO, " %d", i);
527 n++;
528 }
529 }
530 if (n)
531 LOGPC(DRR, LOGL_INFO, "\n");
532
533 return n;
Harald Welte6c40def2009-12-14 22:07:14 +0100534}
535
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200536static int generate_si1(uint8_t *output, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530537{
538 int rc;
539 struct gsm48_system_information_type_1 *si1 =
540 (struct gsm48_system_information_type_1 *) output;
541
542 memset(si1, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
543
544 si1->header.l2_plen = (21 << 2) | 1;
545 si1->header.rr_protocol_discriminator = GSM48_PDISC_RR;
546 si1->header.skip_indicator = 0;
547 si1->header.system_information = GSM48_MT_RR_SYSINFO_1;
548
549 rc = generate_cell_chan_list(si1->cell_channel_description, bts);
550 if (rc < 0)
551 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100552 list_arfcn(si1->cell_channel_description, 0xce, "Serving cell:");
Harald Weltea43f7892009-12-01 18:04:30 +0530553
554 si1->rach_control = bts->si_common.rach_control;
555
Holger Hans Peter Freytherf876c392013-03-06 12:02:33 +0100556 /*
557 * SI1 Rest Octets (10.5.2.32), contains NCH position and band
558 * indicator but that is not in the 04.08.
559 */
560 rc = rest_octets_si1(si1->rest_octets, NULL, is_dcs_net(bts));
Harald Welte7401ae62010-06-15 16:44:12 +0200561
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100562 return sizeof(*si1) + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530563}
564
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200565static int generate_si2(uint8_t *output, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530566{
567 int rc;
568 struct gsm48_system_information_type_2 *si2 =
569 (struct gsm48_system_information_type_2 *) output;
570
571 memset(si2, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
572
573 si2->header.l2_plen = (22 << 2) | 1;
574 si2->header.rr_protocol_discriminator = GSM48_PDISC_RR;
575 si2->header.skip_indicator = 0;
576 si2->header.system_information = GSM48_MT_RR_SYSINFO_2;
577
Max5fa7e362016-04-15 16:04:45 +0200578 rc = generate_bcch_chan_list(si2->bcch_frequency_list, bts, false, false, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530579 if (rc < 0)
580 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100581 list_arfcn(si2->bcch_frequency_list, 0xce,
Harald Weltee5ba92e2015-09-04 06:22:46 +0200582 "SI2 Neighbour cells in same band:");
Harald Weltea43f7892009-12-01 18:04:30 +0530583
584 si2->ncc_permitted = bts->si_common.ncc_permitted;
585 si2->rach_control = bts->si_common.rach_control;
586
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100587 return sizeof(*si2);
Harald Weltea43f7892009-12-01 18:04:30 +0530588}
589
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100590static int generate_si2bis(uint8_t *output, struct gsm_bts *bts)
591{
592 int rc;
593 struct gsm48_system_information_type_2bis *si2b =
594 (struct gsm48_system_information_type_2bis *) output;
595 int n;
596
597 memset(si2b, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
598
599 si2b->header.l2_plen = (22 << 2) | 1;
600 si2b->header.rr_protocol_discriminator = GSM48_PDISC_RR;
601 si2b->header.skip_indicator = 0;
602 si2b->header.system_information = GSM48_MT_RR_SYSINFO_2bis;
603
Max5fa7e362016-04-15 16:04:45 +0200604 rc = generate_bcch_chan_list(si2b->bcch_frequency_list, bts, false, true, false);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100605 if (rc < 0)
606 return rc;
607 n = list_arfcn(si2b->bcch_frequency_list, 0xce,
608 "Neighbour cells in same band, but outside P-GSM:");
609 if (n) {
610 /* indicate in SI2 and SI2bis: there is an extension */
611 struct gsm48_system_information_type_2 *si2 =
612 (struct gsm48_system_information_type_2 *)
613 bts->si_buf[SYSINFO_TYPE_2];
614 si2->bcch_frequency_list[0] |= 0x20;
615 si2b->bcch_frequency_list[0] |= 0x20;
616 } else
617 bts->si_valid &= ~(1 << SYSINFO_TYPE_2bis);
618
619 si2b->rach_control = bts->si_common.rach_control;
620
621 return sizeof(*si2b);
622}
623
624static int generate_si2ter(uint8_t *output, struct gsm_bts *bts)
625{
626 int rc;
627 struct gsm48_system_information_type_2ter *si2t =
628 (struct gsm48_system_information_type_2ter *) output;
629 int n;
630
631 memset(si2t, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
632
633 si2t->header.l2_plen = (22 << 2) | 1;
634 si2t->header.rr_protocol_discriminator = GSM48_PDISC_RR;
635 si2t->header.skip_indicator = 0;
636 si2t->header.system_information = GSM48_MT_RR_SYSINFO_2ter;
637
Max5fa7e362016-04-15 16:04:45 +0200638 rc = generate_bcch_chan_list(si2t->ext_bcch_frequency_list, bts, false, false, true);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100639 if (rc < 0)
640 return rc;
641 n = list_arfcn(si2t->ext_bcch_frequency_list, 0x8e,
642 "Neighbour cells in different band:");
643 if (!n)
644 bts->si_valid &= ~(1 << SYSINFO_TYPE_2ter);
645
646 return sizeof(*si2t);
647}
648
Max59a1bf32016-04-15 16:04:46 +0200649static int generate_si2quater(uint8_t *output, struct gsm_bts *bts)
650{
651 int rc;
652 struct gsm48_system_information_type_2quater *si2q =
653 (struct gsm48_system_information_type_2quater *) output;
654
655 memset(si2q, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
656
657 si2q->header.l2_plen = GSM48_LEN2PLEN(22);
658 si2q->header.rr_protocol_discriminator = GSM48_PDISC_RR;
659 si2q->header.skip_indicator = 0;
660 si2q->header.system_information = GSM48_MT_RR_SYSINFO_2quater;
661
662 rc = rest_octets_si2quater(si2q->rest_octets,
Max26679e02016-04-20 15:57:13 +0200663 &bts->si_common.si2quater_neigh_list,
664 bts->si_common.data.uarfcn_list,
665 bts->si_common.data.scramble_list,
666 bts->si_common.uarfcn_length);
Max59a1bf32016-04-15 16:04:46 +0200667 if (rc < 0)
668 return rc;
669
670 return sizeof(*si2q) + rc;
671}
672
Harald Welte1f893292010-03-14 23:46:48 +0800673static struct gsm48_si_ro_info si_info = {
Harald Weltea43f7892009-12-01 18:04:30 +0530674 .selection_params = {
675 .present = 0,
676 },
677 .power_offset = {
678 .present = 0,
679 },
680 .si2ter_indicator = 0,
681 .early_cm_ctrl = 1,
682 .scheduling = {
683 .present = 0,
684 },
685 .gprs_ind = {
686 .si13_position = 0,
687 .ra_colour = 0,
Harald Welte97a282b2010-03-14 15:37:43 +0800688 .present = 1,
Harald Weltea43f7892009-12-01 18:04:30 +0530689 },
Maxf3f35052016-04-15 16:04:44 +0200690 .si2quater_indicator = 0,
Harald Weltea43f7892009-12-01 18:04:30 +0530691 .lsa_params = {
692 .present = 0,
693 },
694 .cell_id = 0, /* FIXME: doesn't the bts have this? */
695 .break_ind = 0,
696};
697
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200698static int generate_si3(uint8_t *output, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530699{
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100700 int rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530701 struct gsm48_system_information_type_3 *si3 =
702 (struct gsm48_system_information_type_3 *) output;
703
704 memset(si3, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
705
706 si3->header.l2_plen = (18 << 2) | 1;
707 si3->header.rr_protocol_discriminator = GSM48_PDISC_RR;
708 si3->header.skip_indicator = 0;
709 si3->header.system_information = GSM48_MT_RR_SYSINFO_3;
710
711 si3->cell_identity = htons(bts->cell_identity);
Harald Welteafedeab2010-03-04 10:55:40 +0100712 gsm48_generate_lai(&si3->lai, bts->network->country_code,
713 bts->network->network_code,
714 bts->location_area_code);
Harald Weltea43f7892009-12-01 18:04:30 +0530715 si3->control_channel_desc = bts->si_common.chan_desc;
716 si3->cell_options = bts->si_common.cell_options;
717 si3->cell_sel_par = bts->si_common.cell_sel_par;
718 si3->rach_control = bts->si_common.rach_control;
719
Maxc08ee712016-05-11 12:45:13 +0200720 /* allow/disallow DTXu */
721 gsm48_set_dtx(&si3->cell_options, bts->dtxu, bts->dtxu, true);
722
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100723 if ((bts->si_valid & (1 << SYSINFO_TYPE_2ter))) {
724 LOGP(DRR, LOGL_INFO, "SI 2ter is included.\n");
725 si_info.si2ter_indicator = 1;
726 } else {
727 si_info.si2ter_indicator = 0;
728 }
Maxf3f35052016-04-15 16:04:44 +0200729 if ((bts->si_valid & (1 << SYSINFO_TYPE_2quater))) {
730 LOGP(DRR, LOGL_INFO, "SI 2quater is included.\n");
731 si_info.si2quater_indicator = 1;
732 } else {
733 si_info.si2quater_indicator = 0;
734 }
Harald Weltea43f7892009-12-01 18:04:30 +0530735 /* SI3 Rest Octets (10.5.2.34), containing
736 CBQ, CELL_RESELECT_OFFSET, TEMPORARY_OFFSET, PENALTY_TIME
737 Power Offset, 2ter Indicator, Early Classmark Sending,
738 Scheduling if and WHERE, GPRS Indicator, SI13 position */
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100739 rc = rest_octets_si3(si3->rest_octets, &si_info);
Harald Weltea43f7892009-12-01 18:04:30 +0530740
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100741 return sizeof(*si3) + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530742}
743
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200744static int generate_si4(uint8_t *output, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530745{
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +0100746 int rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530747 struct gsm48_system_information_type_4 *si4 =
748 (struct gsm48_system_information_type_4 *) output;
Harald Welte30f1f372014-12-28 15:00:45 +0100749 struct gsm_lchan *cbch_lchan;
750 uint8_t *restoct = si4->data;
Harald Weltea43f7892009-12-01 18:04:30 +0530751
752 /* length of all IEs present except SI4 rest octets and l2_plen */
753 int l2_plen = sizeof(*si4) - 1;
754
755 memset(si4, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
756
757 si4->header.rr_protocol_discriminator = GSM48_PDISC_RR;
758 si4->header.skip_indicator = 0;
759 si4->header.system_information = GSM48_MT_RR_SYSINFO_4;
760
Harald Welteafedeab2010-03-04 10:55:40 +0100761 gsm48_generate_lai(&si4->lai, bts->network->country_code,
762 bts->network->network_code,
763 bts->location_area_code);
Harald Weltea43f7892009-12-01 18:04:30 +0530764 si4->cell_sel_par = bts->si_common.cell_sel_par;
765 si4->rach_control = bts->si_common.rach_control;
766
767 /* Optional: CBCH Channel Description + CBCH Mobile Allocation */
Harald Welte142d12d2014-12-29 17:47:08 +0100768 cbch_lchan = gsm_bts_get_cbch(bts);
Harald Welte30f1f372014-12-28 15:00:45 +0100769 if (cbch_lchan) {
770 struct gsm48_chan_desc cd;
771 gsm48_lchan2chan_desc(&cd, cbch_lchan);
Daniel Willmann695675f2014-12-30 12:10:25 +0100772 tv_fixed_put(si4->data, GSM48_IE_CBCH_CHAN_DESC, 3,
Harald Welte30f1f372014-12-28 15:00:45 +0100773 (uint8_t *) &cd);
Daniel Willmann695675f2014-12-30 12:10:25 +0100774 l2_plen += 3 + 1;
775 restoct += 3 + 1;
Harald Welte30f1f372014-12-28 15:00:45 +0100776 /* we don't use hopping and thus don't need a CBCH MA */
777 }
Harald Weltea43f7892009-12-01 18:04:30 +0530778
779 si4->header.l2_plen = (l2_plen << 2) | 1;
780
781 /* SI4 Rest Octets (10.5.2.35), containing
782 Optional Power offset, GPRS Indicator,
783 Cell Identity, LSA ID, Selection Parameter */
Holger Hans Peter Freyther7ff77ec2010-12-29 23:06:22 +0100784 rc = rest_octets_si4(restoct, &si_info, output + GSM_MACBLOCK_LEN - restoct);
Harald Weltea43f7892009-12-01 18:04:30 +0530785
Harald Welte30f1f372014-12-28 15:00:45 +0100786 return l2_plen + 1 + rc;
Harald Weltea43f7892009-12-01 18:04:30 +0530787}
788
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200789static int generate_si5(uint8_t *output, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530790{
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100791 struct gsm48_system_information_type_5 *si5;
792 int rc, l2_plen = 18;
Harald Weltea43f7892009-12-01 18:04:30 +0530793
Holger Hans Peter Freyther17d81e22010-01-06 07:52:55 +0100794 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
795
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100796 /* ip.access nanoBTS needs l2_plen!! */
Harald Weltefd355a32011-03-04 13:41:31 +0100797 switch (bts->type) {
798 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +0200799 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100800 *output++ = (l2_plen << 2) | 1;
801 l2_plen++;
Harald Weltefd355a32011-03-04 13:41:31 +0100802 break;
803 default:
804 break;
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100805 }
806
807 si5 = (struct gsm48_system_information_type_5 *) output;
Harald Weltea43f7892009-12-01 18:04:30 +0530808
809 /* l2 pseudo length, not part of msg: 18 */
810 si5->rr_protocol_discriminator = GSM48_PDISC_RR;
811 si5->skip_indicator = 0;
812 si5->system_information = GSM48_MT_RR_SYSINFO_5;
Max5fa7e362016-04-15 16:04:45 +0200813 rc = generate_bcch_chan_list(si5->bcch_frequency_list, bts, true, false, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530814 if (rc < 0)
815 return rc;
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100816 list_arfcn(si5->bcch_frequency_list, 0xce,
Harald Weltee5ba92e2015-09-04 06:22:46 +0200817 "SI5 Neighbour cells in same band:");
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100818
819 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
820 return l2_plen;
821}
822
823static int generate_si5bis(uint8_t *output, struct gsm_bts *bts)
824{
825 struct gsm48_system_information_type_5bis *si5b;
826 int rc, l2_plen = 18;
827 int n;
828
829 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
830
831 /* ip.access nanoBTS needs l2_plen!! */
832 switch (bts->type) {
833 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +0200834 case GSM_BTS_TYPE_OSMO_SYSMO:
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100835 *output++ = (l2_plen << 2) | 1;
836 l2_plen++;
837 break;
838 default:
839 break;
840 }
841
842 si5b = (struct gsm48_system_information_type_5bis *) output;
843
844 /* l2 pseudo length, not part of msg: 18 */
845 si5b->rr_protocol_discriminator = GSM48_PDISC_RR;
846 si5b->skip_indicator = 0;
847 si5b->system_information = GSM48_MT_RR_SYSINFO_5bis;
Max5fa7e362016-04-15 16:04:45 +0200848 rc = generate_bcch_chan_list(si5b->bcch_frequency_list, bts, true, true, false);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100849 if (rc < 0)
850 return rc;
851 n = list_arfcn(si5b->bcch_frequency_list, 0xce,
852 "Neighbour cells in same band, but outside P-GSM:");
853 if (n) {
854 /* indicate in SI5 and SI5bis: there is an extension */
855 struct gsm48_system_information_type_5 *si5 =
856 (struct gsm48_system_information_type_5 *)
857 bts->si_buf[SYSINFO_TYPE_5];
858 si5->bcch_frequency_list[0] |= 0x20;
859 si5b->bcch_frequency_list[0] |= 0x20;
860 } else
861 bts->si_valid &= ~(1 << SYSINFO_TYPE_5bis);
862
863 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
864 return l2_plen;
865}
866
867static int generate_si5ter(uint8_t *output, struct gsm_bts *bts)
868{
869 struct gsm48_system_information_type_5ter *si5t;
870 int rc, l2_plen = 18;
871 int n;
872
873 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
874
875 /* ip.access nanoBTS needs l2_plen!! */
876 switch (bts->type) {
877 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +0200878 case GSM_BTS_TYPE_OSMO_SYSMO:
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100879 *output++ = (l2_plen << 2) | 1;
880 l2_plen++;
881 break;
882 default:
883 break;
884 }
885
886 si5t = (struct gsm48_system_information_type_5ter *) output;
887
888 /* l2 pseudo length, not part of msg: 18 */
889 si5t->rr_protocol_discriminator = GSM48_PDISC_RR;
890 si5t->skip_indicator = 0;
891 si5t->system_information = GSM48_MT_RR_SYSINFO_5ter;
Max5fa7e362016-04-15 16:04:45 +0200892 rc = generate_bcch_chan_list(si5t->bcch_frequency_list, bts, true, false, true);
Andreas Eversbergc50543b2012-02-29 09:04:07 +0100893 if (rc < 0)
894 return rc;
895 n = list_arfcn(si5t->bcch_frequency_list, 0x8e,
896 "Neighbour cells in different band:");
897 if (!n)
898 bts->si_valid &= ~(1 << SYSINFO_TYPE_5ter);
Harald Weltea43f7892009-12-01 18:04:30 +0530899
900 /* 04.08 9.1.37: L2 Pseudo Length of 18 */
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100901 return l2_plen;
Harald Weltea43f7892009-12-01 18:04:30 +0530902}
903
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200904static int generate_si6(uint8_t *output, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530905{
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100906 struct gsm48_system_information_type_6 *si6;
907 int l2_plen = 11;
Harald Weltea43f7892009-12-01 18:04:30 +0530908
Holger Hans Peter Freyther17d81e22010-01-06 07:52:55 +0100909 memset(output, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
910
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100911 /* ip.access nanoBTS needs l2_plen!! */
Harald Weltefd355a32011-03-04 13:41:31 +0100912 switch (bts->type) {
913 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +0200914 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100915 *output++ = (l2_plen << 2) | 1;
916 l2_plen++;
Harald Weltefd355a32011-03-04 13:41:31 +0100917 break;
918 default:
919 break;
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100920 }
921
922 si6 = (struct gsm48_system_information_type_6 *) output;
Harald Weltea43f7892009-12-01 18:04:30 +0530923
924 /* l2 pseudo length, not part of msg: 11 */
925 si6->rr_protocol_discriminator = GSM48_PDISC_RR;
926 si6->skip_indicator = 0;
927 si6->system_information = GSM48_MT_RR_SYSINFO_6;
928 si6->cell_identity = htons(bts->cell_identity);
Harald Welteafedeab2010-03-04 10:55:40 +0100929 gsm48_generate_lai(&si6->lai, bts->network->country_code,
930 bts->network->network_code,
931 bts->location_area_code);
Harald Weltea43f7892009-12-01 18:04:30 +0530932 si6->cell_options = bts->si_common.cell_options;
933 si6->ncc_permitted = bts->si_common.ncc_permitted;
Maxc08ee712016-05-11 12:45:13 +0200934 /* allow/disallow DTXu */
Maxea8e9832016-05-23 17:28:13 +0200935 gsm48_set_dtx(&si6->cell_options, bts->dtxu, bts->dtxu, false);
Harald Weltea43f7892009-12-01 18:04:30 +0530936
937 /* SI6 Rest Octets: 10.5.2.35a: PCH / NCH info, VBS/VGCS options */
938
Harald Weltee2d0d5f2009-12-19 21:26:54 +0100939 return l2_plen;
Harald Weltea43f7892009-12-01 18:04:30 +0530940}
941
942static struct gsm48_si13_info si13_default = {
943 .cell_opts = {
Harald Welte85849182010-06-02 12:19:21 +0200944 .nmo = GPRS_NMO_II,
Harald Weltea4b16652010-05-31 12:54:23 +0200945 .t3168 = 2000,
Andreas Eversbergbecc89a2012-09-23 08:14:51 +0200946 .t3192 = 1500,
Harald Welte97a282b2010-03-14 15:37:43 +0800947 .drx_timer_max = 3,
Harald Weltea43f7892009-12-01 18:04:30 +0530948 .bs_cv_max = 15,
Sylvain Munaut851f1202011-10-17 13:56:02 +0200949 .ext_info_present = 0,
Harald Welteda0586a2010-04-18 14:49:05 +0200950 .ext_info = {
951 /* The values below are just guesses ! */
Harald Weltea06fea02010-04-18 15:53:40 +0200952 .egprs_supported = 0,
Harald Welteda0586a2010-04-18 14:49:05 +0200953 .use_egprs_p_ch_req = 1,
Harald Weltea4b16652010-05-31 12:54:23 +0200954 .bep_period = 5,
Harald Welteda0586a2010-04-18 14:49:05 +0200955 .pfc_supported = 0,
956 .dtm_supported = 0,
957 .bss_paging_coordination = 0,
958 },
Harald Weltea43f7892009-12-01 18:04:30 +0530959 },
960 .pwr_ctrl_pars = {
Harald Weltec15d0ac2012-10-08 21:22:08 +0200961 .alpha = 0, /* a = 0.0 */
Harald Weltea4b16652010-05-31 12:54:23 +0200962 .t_avg_w = 16,
963 .t_avg_t = 16,
Harald Weltea43f7892009-12-01 18:04:30 +0530964 .pc_meas_chan = 0, /* downling measured on CCCH */
Harald Weltea4b16652010-05-31 12:54:23 +0200965 .n_avg_i = 8,
Harald Weltea43f7892009-12-01 18:04:30 +0530966 },
Harald Welte97a282b2010-03-14 15:37:43 +0800967 .bcch_change_mark = 1,
Harald Weltea43f7892009-12-01 18:04:30 +0530968 .si_change_field = 0,
969 .pbcch_present = 0,
970 {
971 .no_pbcch = {
Harald Welte97a282b2010-03-14 15:37:43 +0800972 .rac = 0, /* needs to be patched */
Harald Weltea43f7892009-12-01 18:04:30 +0530973 .spgc_ccch_sup = 0,
974 .net_ctrl_ord = 0,
Harald Welte97a282b2010-03-14 15:37:43 +0800975 .prio_acc_thr = 6,
Harald Weltea43f7892009-12-01 18:04:30 +0530976 },
977 },
978};
979
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200980static int generate_si13(uint8_t *output, struct gsm_bts *bts)
Harald Weltea43f7892009-12-01 18:04:30 +0530981{
982 struct gsm48_system_information_type_13 *si13 =
983 (struct gsm48_system_information_type_13 *) output;
984 int ret;
985
986 memset(si13, GSM_MACBLOCK_PADDING, GSM_MACBLOCK_LEN);
987
988 si13->header.rr_protocol_discriminator = GSM48_PDISC_RR;
989 si13->header.skip_indicator = 0;
990 si13->header.system_information = GSM48_MT_RR_SYSINFO_13;
991
Harald Welte97a282b2010-03-14 15:37:43 +0800992 si13_default.no_pbcch.rac = bts->gprs.rac;
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +0100993 si13_default.no_pbcch.net_ctrl_ord = bts->gprs.net_ctrl_ord;
Harald Welte97a282b2010-03-14 15:37:43 +0800994
Holger Hans Peter Freytherb92a5382014-11-21 10:00:39 +0100995 /* Information about the other SIs */
996 si13_default.bcch_change_mark = bts->bcch_change_mark;
997
Harald Weltea43f7892009-12-01 18:04:30 +0530998 ret = rest_octets_si13(si13->rest_octets, &si13_default);
999 if (ret < 0)
1000 return ret;
1001
Holger Hans Peter Freyther1c6f3942010-06-16 12:05:56 +08001002 /* length is coded in bit 2 an up */
1003 si13->header.l2_plen = 0x01;
Harald Weltea43f7892009-12-01 18:04:30 +05301004
Holger Hans Peter Freyther7ec448d2010-01-06 07:52:31 +01001005 return sizeof (*si13) + ret;
Harald Weltea43f7892009-12-01 18:04:30 +05301006}
1007
Harald Welte7401ae62010-06-15 16:44:12 +02001008typedef int (*gen_si_fn_t)(uint8_t *output, struct gsm_bts *bts);
1009
1010static const gen_si_fn_t gen_si_fn[_MAX_SYSINFO_TYPE] = {
1011 [SYSINFO_TYPE_1] = &generate_si1,
1012 [SYSINFO_TYPE_2] = &generate_si2,
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001013 [SYSINFO_TYPE_2bis] = &generate_si2bis,
1014 [SYSINFO_TYPE_2ter] = &generate_si2ter,
Max59a1bf32016-04-15 16:04:46 +02001015 [SYSINFO_TYPE_2quater] = &generate_si2quater,
Harald Welte7401ae62010-06-15 16:44:12 +02001016 [SYSINFO_TYPE_3] = &generate_si3,
1017 [SYSINFO_TYPE_4] = &generate_si4,
1018 [SYSINFO_TYPE_5] = &generate_si5,
Andreas Eversbergc50543b2012-02-29 09:04:07 +01001019 [SYSINFO_TYPE_5bis] = &generate_si5bis,
1020 [SYSINFO_TYPE_5ter] = &generate_si5ter,
Harald Welte7401ae62010-06-15 16:44:12 +02001021 [SYSINFO_TYPE_6] = &generate_si6,
1022 [SYSINFO_TYPE_13] = &generate_si13,
1023};
1024
Harald Welte7401ae62010-06-15 16:44:12 +02001025int gsm_generate_si(struct gsm_bts *bts, enum osmo_sysinfo_type si_type)
1026{
1027 gen_si_fn_t gen_si;
1028
Harald Welte4511d892010-04-18 15:51:20 +02001029 switch (bts->gprs.mode) {
1030 case BTS_GPRS_EGPRS:
Harald Weltea06fea02010-04-18 15:53:40 +02001031 si13_default.cell_opts.ext_info_present = 1;
1032 si13_default.cell_opts.ext_info.egprs_supported = 1;
1033 /* fallthrough */
Harald Welte4511d892010-04-18 15:51:20 +02001034 case BTS_GPRS_GPRS:
1035 si_info.gprs_ind.present = 1;
1036 break;
1037 case BTS_GPRS_NONE:
1038 si_info.gprs_ind.present = 0;
1039 break;
1040 }
Harald Welte1f893292010-03-14 23:46:48 +08001041
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001042 memcpy(&si_info.selection_params,
1043 &bts->si_common.cell_ro_sel_par,
1044 sizeof(struct gsm48_si_selection_params));
1045
Harald Welte7401ae62010-06-15 16:44:12 +02001046 gen_si = gen_si_fn[si_type];
1047 if (!gen_si)
Harald Weltea43f7892009-12-01 18:04:30 +05301048 return -EINVAL;
Harald Weltea43f7892009-12-01 18:04:30 +05301049
Harald Welte7401ae62010-06-15 16:44:12 +02001050 return gen_si(bts->si_buf[si_type], bts);
Harald Weltea43f7892009-12-01 18:04:30 +05301051}