/* * (C) 2013-2015 by Holger Hans Peter Freyther * (C) 2013-2022 by sysmocom s.f.m.c. GmbH * * All Rights Reserved * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include static int location_equal(struct bts_location *a, struct bts_location *b) { return ((a->tstamp == b->tstamp) && (a->valid == b->valid) && (a->lat == b->lat) && (a->lon == b->lon) && (a->height == b->height)); } static void cleanup_locations(struct llist_head *locations) { struct bts_location *myloc, *tmp; int invalpos = 0, i = 0; LOGP(DCTRL, LOGL_DEBUG, "Checking position list.\n"); llist_for_each_entry_safe(myloc, tmp, locations, list) { i++; if (i > 3) { LOGP(DCTRL, LOGL_DEBUG, "Deleting old position.\n"); llist_del(&myloc->list); talloc_free(myloc); } else if (myloc->valid == BTS_LOC_FIX_INVALID) { /* Only capture the newest of subsequent invalid positions */ invalpos++; if (invalpos > 1) { LOGP(DCTRL, LOGL_DEBUG, "Deleting subsequent invalid position.\n"); invalpos--; i--; llist_del(&myloc->list); talloc_free(myloc); } } else { invalpos = 0; } } LOGP(DCTRL, LOGL_DEBUG, "Found %d positions.\n", i); } static int get_bts_loc(struct ctrl_cmd *cmd, void *data); void ctrl_generate_bts_location_state_trap(struct gsm_bts *bts, struct bsc_msc_data *msc) { struct ctrl_cmd *cmd; const char *oper, *admin, *policy; cmd = ctrl_cmd_create(msc, CTRL_TYPE_TRAP); if (!cmd) { LOGP(DCTRL, LOGL_ERROR, "Failed to create TRAP command.\n"); return; } cmd->id = "0"; cmd->variable = talloc_asprintf(cmd, "bts.%d.location-state", bts->nr); /* Prepare the location reply */ cmd->node = bts; get_bts_loc(cmd, NULL); oper = osmo_bsc_rf_get_opstate_name(osmo_bsc_rf_get_opstate_by_bts(bts)); admin = osmo_bsc_rf_get_adminstate_name(osmo_bsc_rf_get_adminstate_by_bts(bts)); policy = osmo_bsc_rf_get_policy_name(osmo_bsc_rf_get_policy_by_bts(bts)); cmd->reply = talloc_asprintf_append(cmd->reply, ",%s,%s,%s,%s,%s", oper, admin, policy, osmo_mcc_name(bts->network->plmn.mcc), osmo_mnc_name(bts->network->plmn.mnc, bts->network->plmn.mnc_3_digits)); osmo_bsc_send_trap(cmd, msc); talloc_free(cmd); } void bsc_gen_location_state_trap(struct gsm_bts *bts) { struct bsc_msc_data *msc; llist_for_each_entry(msc, &bts->network->mscs, entry) ctrl_generate_bts_location_state_trap(bts, msc); } CTRL_CMD_DEFINE(bts_loc, "location"); static int get_bts_loc(struct ctrl_cmd *cmd, void *data) { struct bts_location *curloc; struct gsm_bts *bts = (struct gsm_bts *) cmd->node; if (!bts) { cmd->reply = "bts not found."; return CTRL_CMD_ERROR; } if (llist_empty(&bts->loc_list)) { cmd->reply = talloc_asprintf(cmd, "0,invalid,0,0,0"); return CTRL_CMD_REPLY; } curloc = llist_entry(bts->loc_list.next, struct bts_location, list); cmd->reply = talloc_asprintf(cmd, "%lu,%s,%f,%f,%f", curloc->tstamp, get_value_string(bts_loc_fix_names, curloc->valid), curloc->lat, curloc->lon, curloc->height); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } static int set_bts_loc(struct ctrl_cmd *cmd, void *data) { char *saveptr, *lat, *lon, *height, *tstamp, *valid, *tmp; struct bts_location *curloc, *lastloc; int ret; struct gsm_bts *bts = (struct gsm_bts *) cmd->node; if (!bts) { cmd->reply = "bts not found."; return CTRL_CMD_ERROR; } tmp = talloc_strdup(cmd, cmd->value); if (!tmp) goto oom; tstamp = strtok_r(tmp, ",", &saveptr); valid = strtok_r(NULL, ",", &saveptr); lat = strtok_r(NULL, ",", &saveptr); lon = strtok_r(NULL, ",", &saveptr); height = strtok_r(NULL, "\0", &saveptr); /* Check if one of the strtok results was NULL. This will probably never occur since we will only see verified * input in this code path */ if ((tstamp == NULL) || (valid == NULL) || (lat == NULL) || (lon == NULL) || (height == NULL)) { talloc_free(tmp); cmd->reply = "parse error"; return CTRL_CMD_ERROR; } curloc = talloc_zero(tall_bsc_ctx, struct bts_location); if (!curloc) { talloc_free(tmp); goto oom; } INIT_LLIST_HEAD(&curloc->list); curloc->tstamp = atol(tstamp); curloc->valid = get_string_value(bts_loc_fix_names, valid); curloc->lat = atof(lat); curloc->lon = atof(lon); curloc->height = atof(height); talloc_free(tmp); lastloc = llist_entry(bts->loc_list.next, struct bts_location, list); /* Add location to the end of the list */ llist_add(&curloc->list, &bts->loc_list); ret = get_bts_loc(cmd, data); if (!location_equal(curloc, lastloc)) bsc_gen_location_state_trap(bts); cleanup_locations(&bts->loc_list); return ret; oom: cmd->reply = "OOM"; return CTRL_CMD_ERROR; } static int verify_bts_loc(struct ctrl_cmd *cmd, const char *value, void *data) { char *saveptr, *latstr, *lonstr, *heightstr, *tstampstr, *validstr, *tmp; time_t tstamp; int valid; double lat, lon, height __attribute__((unused)); tmp = talloc_strdup(cmd, value); if (!tmp) return 1; tstampstr = strtok_r(tmp, ",", &saveptr); validstr = strtok_r(NULL, ",", &saveptr); latstr = strtok_r(NULL, ",", &saveptr); lonstr = strtok_r(NULL, ",", &saveptr); heightstr = strtok_r(NULL, "\0", &saveptr); if ((tstampstr == NULL) || (validstr == NULL) || (latstr == NULL) || (lonstr == NULL) || (heightstr == NULL)) goto err; tstamp = atol(tstampstr); valid = get_string_value(bts_loc_fix_names, validstr); lat = atof(latstr); lon = atof(lonstr); height = atof(heightstr); talloc_free(tmp); tmp = NULL; if (((tstamp == 0) && (valid != BTS_LOC_FIX_INVALID)) || (lat < -90) || (lat > 90) || (lon < -180) || (lon > 180) || (valid < 0)) { goto err; } return 0; err: talloc_free(tmp); cmd->reply = talloc_strdup(cmd, "The format is ,(invalid|fix2d|fix3d),,,"); return 1; } /* BTS related commands below */ CTRL_CMD_DEFINE_RANGE(bts_lac, "location-area-code", struct gsm_bts, location_area_code, 0, 65535); CTRL_CMD_DEFINE_RANGE(bts_ci, "cell-identity", struct gsm_bts, cell_identity, 0, 65535); CTRL_CMD_DEFINE_RANGE(bts_bsic, "bsic", struct gsm_bts, bsic, 0, 63); CTRL_CMD_DEFINE_RANGE(bts_rach_max_delay, "rach-max-delay", struct gsm_bts, rach_max_delay, 1, 127); CTRL_CMD_DEFINE_RANGE(bts_rach_expiry_timeout, "rach-expiry-timeout", struct gsm_bts, rach_expiry_timeout, 4, 64); static int set_bts_apply_config(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; if (!is_ipa_abisip_bts(bts)) { cmd->reply = "BTS is not IPA Abis/IP based"; return CTRL_CMD_ERROR; } ipaccess_drop_oml(bts, "ctrl bts.apply-configuration"); cmd->reply = "Tried to drop the BTS"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_WO_NOVRF(bts_apply_config, "apply-configuration"); static int set_bts_si(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; int rc; rc = gsm_bts_set_system_infos(bts); if (rc != 0) { cmd->reply = "Failed to generate SI"; return CTRL_CMD_ERROR; } cmd->reply = "Generated new System Information"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_WO_NOVRF(bts_si, "send-new-system-informations"); static int set_bts_power_ctrl_defs(struct ctrl_cmd *cmd, void *data) { const struct gsm_bts *bts = cmd->node; const struct gsm_bts_trx *trx; if (bts->ms_power_ctrl.mode != GSM_PWR_CTRL_MODE_DYN_BTS) { cmd->reply = "BTS is not using dyn-bts mode"; return CTRL_CMD_ERROR; } if (bts->model->power_ctrl_send_def_params == NULL) { cmd->reply = "Not implemented for this BTS model"; return CTRL_CMD_ERROR; } llist_for_each_entry(trx, &bts->trx_list, list) { if (bts->model->power_ctrl_send_def_params(trx) != 0) { cmd->reply = "power_ctrl_send_def_params() failed"; return CTRL_CMD_ERROR; } } cmd->reply = "Default power control parameters have been sent"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_WO_NOVRF(bts_power_ctrl_defs, "send-power-control-defaults"); static int get_bts_chan_load(struct ctrl_cmd *cmd, void *data) { int i; struct pchan_load pl; struct gsm_bts *bts; const char *space = ""; bts = cmd->node; memset(&pl, 0, sizeof(pl)); bts_chan_load(&pl, bts); cmd->reply = talloc_strdup(cmd, ""); for (i = 0; i < ARRAY_SIZE(pl.pchan); ++i) { const struct load_counter *lc = &pl.pchan[i]; /* These can never have user load */ if (i == GSM_PCHAN_NONE) continue; if (i == GSM_PCHAN_CCCH) continue; if (i == GSM_PCHAN_PDCH) continue; if (i == GSM_PCHAN_UNKNOWN) continue; cmd->reply = talloc_asprintf_append(cmd->reply, "%s%s,%u,%u", space, gsm_pchan_name(i), lc->used, lc->total); if (!cmd->reply) goto error; space = " "; } return CTRL_CMD_REPLY; error: cmd->reply = "Memory allocation failure"; return CTRL_CMD_ERROR; } CTRL_CMD_DEFINE_RO(bts_chan_load, "channel-load"); static int get_bts_oml_conn(struct ctrl_cmd *cmd, void *data) { const struct gsm_bts *bts = cmd->node; cmd->reply = get_model_oml_status(bts); return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_RO(bts_oml_conn, "oml-connection-state"); static int get_bts_oml_up(struct ctrl_cmd *cmd, void *data) { const struct gsm_bts *bts = cmd->node; cmd->reply = talloc_asprintf(cmd, "%llu", bts_uptime(bts)); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_RO(bts_oml_up, "oml-uptime"); static int verify_bts_gprs_mode(struct ctrl_cmd *cmd, const char *value, void *_data) { int valid; enum bts_gprs_mode mode; struct gsm_bts *bts = cmd->node; mode = bts_gprs_mode_parse(value, &valid); if (!valid) { cmd->reply = "Mode is not known"; return 1; } if (!bts_gprs_mode_is_compat(bts, mode)) { cmd->reply = "bts does not support this mode"; return 1; } return 0; } static int get_bts_gprs_mode(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; cmd->reply = talloc_strdup(cmd, bts_gprs_mode_name(bts->gprs.mode)); return CTRL_CMD_REPLY; } static int set_bts_gprs_mode(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; bts->gprs.mode = bts_gprs_mode_parse(cmd->value, NULL); return get_bts_gprs_mode(cmd, data); } CTRL_CMD_DEFINE(bts_gprs_mode, "gprs-mode"); static int get_bts_rf_state(struct ctrl_cmd *cmd, void *data) { const char *oper, *admin, *policy; struct gsm_bts *bts = cmd->node; if (!bts) { cmd->reply = "bts not found."; return CTRL_CMD_ERROR; } oper = osmo_bsc_rf_get_opstate_name(osmo_bsc_rf_get_opstate_by_bts(bts)); admin = osmo_bsc_rf_get_adminstate_name(osmo_bsc_rf_get_adminstate_by_bts(bts)); policy = osmo_bsc_rf_get_policy_name(osmo_bsc_rf_get_policy_by_bts(bts)); cmd->reply = talloc_asprintf(cmd, "%s,%s,%s", oper, admin, policy); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_RO(bts_rf_state, "rf_state"); /* Return a list of the states of each TRX for a given BTS. * ,,,,,;,,...;...; * For details on the string, see bsc_rf_states_c(); */ static int get_bts_rf_states(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; if (!bts) { cmd->reply = "bts not found."; return CTRL_CMD_ERROR; } cmd->reply = bsc_rf_states_of_bts_c(cmd, bts); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_RO(bts_rf_states, "rf_states"); static int verify_bts_c0_power_red(struct ctrl_cmd *cmd, const char *value, void *_data) { const int red = atoi(value); if (red < 0 || red > 6) { cmd->reply = "Value is out of range"; return 1; } else if (red % 2 != 0) { cmd->reply = "Value must be even"; return 1; } return 0; } static int get_bts_c0_power_red(struct ctrl_cmd *cmd, void *data) { const struct gsm_bts *bts = cmd->node; cmd->reply = talloc_asprintf(cmd, "%u", bts->c0_max_power_red_db); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } static int set_bts_c0_power_red(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; const int red = atoi(cmd->value); int rc; rc = gsm_bts_set_c0_power_red(bts, red); switch (rc) { case 0: /* success */ return get_bts_c0_power_red(cmd, data); case -ENOTCONN: cmd->reply = "BTS is offline"; return CTRL_CMD_ERROR; case -ENOTSUP: cmd->reply = "BCCH carrier power reduction is not supported"; return CTRL_CMD_ERROR; default: cmd->reply = "Failed to enable BCCH carrier power reduction"; return CTRL_CMD_ERROR; } } CTRL_CMD_DEFINE(bts_c0_power_red, "c0-power-reduction"); static int get_bts_neighbor_list(struct ctrl_cmd *cmd, const struct bitvec *neigh_list) { int i; char *pos; /* The length of "1 2 3 ... 1023" is 4009, so 4096 is enough */ cmd->reply = talloc_size(cmd, 4096); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } cmd->reply[0] = '\0'; pos = cmd->reply; for (i = 0; i < neigh_list->data_len * 8; i++) { if (!bitvec_get_bit_pos(neigh_list, i)) continue; pos += sprintf(pos, i == 0 ? "%u" : " %u", i); } return CTRL_CMD_REPLY; } static int get_bts_neighbor_list_si2(struct ctrl_cmd *cmd, void *data) { const struct gsm_bts *bts = cmd->node; return get_bts_neighbor_list(cmd, &bts->si_common.neigh_list); } CTRL_CMD_DEFINE_RO(bts_neighbor_list_si2, "neighbor-list si2"); static int get_bts_neighbor_list_si5(struct ctrl_cmd *cmd, void *data) { const struct gsm_bts *bts = cmd->node; return get_bts_neighbor_list(cmd, &bts->si_common.si5_neigh_list); } CTRL_CMD_DEFINE_RO(bts_neighbor_list_si5, "neighbor-list si5"); static int verify_bts_neighbor_list_add_del(struct ctrl_cmd *cmd, const char *value, void *_data) { int arfcn; if (osmo_str_to_int(&arfcn, value, 10, 0, 1023) < 0) { cmd->reply = "Invalid ARFCN value"; return 1; } return 0; } static int set_bts_neighbor_list_add_del(struct ctrl_cmd *cmd, void *data, bool add, struct bitvec *neigh_list) { int arfcn_int; uint16_t arfcn; enum gsm_band unused; if (osmo_str_to_int(&arfcn_int, cmd->value, 10, 0, 1023) < 0) { cmd->reply = "Failed to parse ARFCN value"; return CTRL_CMD_ERROR; } arfcn = (uint16_t) arfcn_int; if (gsm_arfcn2band_rc(arfcn, &unused) < 0) { cmd->reply = "Invalid arfcn detected"; return CTRL_CMD_ERROR; } if (add) bitvec_set_bit_pos(neigh_list, arfcn, 1); else bitvec_set_bit_pos(neigh_list, arfcn, 0); cmd->reply = "OK"; return CTRL_CMD_REPLY; } static int verify_bts_neighbor_list_add(struct ctrl_cmd *cmd, const char *value, void *_data) { return verify_bts_neighbor_list_add_del(cmd, value, _data); } static int set_bts_neighbor_list_add(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; if (bts->neigh_list_manual_mode == NL_MODE_AUTOMATIC) { cmd->reply = "Neighbor list not in manual mode"; return CTRL_CMD_ERROR; } return set_bts_neighbor_list_add_del(cmd, data, true, &bts->si_common.neigh_list); } CTRL_CMD_DEFINE_WO(bts_neighbor_list_add, "neighbor-list add"); static int verify_bts_neighbor_list_del(struct ctrl_cmd *cmd, const char *value, void *_data) { return verify_bts_neighbor_list_add_del(cmd, value, _data); } static int set_bts_neighbor_list_del(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; if (bts->neigh_list_manual_mode == NL_MODE_AUTOMATIC) { cmd->reply = "Neighbor list not in manual mode"; return CTRL_CMD_ERROR; } return set_bts_neighbor_list_add_del(cmd, data, false, &bts->si_common.neigh_list); } CTRL_CMD_DEFINE_WO(bts_neighbor_list_del, "neighbor-list del"); static int verify_bts_neighbor_list_si5_add(struct ctrl_cmd *cmd, const char *value, void *_data) { return verify_bts_neighbor_list_add_del(cmd, value, _data); } static int set_bts_neighbor_list_si5_add(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; if (bts->neigh_list_manual_mode != NL_MODE_MANUAL_SI5SEP) { cmd->reply = "Neighbor list not in manual mode with separate SI5"; return CTRL_CMD_ERROR; } return set_bts_neighbor_list_add_del(cmd, data, true, &bts->si_common.si5_neigh_list); } CTRL_CMD_DEFINE_WO(bts_neighbor_list_si5_add, "neighbor-list si5-add"); static int verify_bts_neighbor_list_si5_del(struct ctrl_cmd *cmd, const char *value, void *_data) { return verify_bts_neighbor_list_add_del(cmd, value, _data); } static int set_bts_neighbor_list_si5_del(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; if (bts->neigh_list_manual_mode != NL_MODE_MANUAL_SI5SEP) { cmd->reply = "Neighbor list not in manual mode with separate SI5"; return CTRL_CMD_ERROR; } return set_bts_neighbor_list_add_del(cmd, data, false, &bts->si_common.si5_neigh_list); } CTRL_CMD_DEFINE_WO(bts_neighbor_list_si5_del, "neighbor-list si5-del"); static int verify_bts_neighbor_list_mode(struct ctrl_cmd *cmd, const char *value, void *_data) { if (!strcmp(value, "automatic")) return 0; if (!strcmp(value, "manual")) return 0; if (!strcmp(value, "manual-si5")) return 0; cmd->reply = "Invalid mode"; return 1; } static int set_bts_neighbor_list_mode(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; int mode = NL_MODE_AUTOMATIC; if (!strcmp(cmd->value, "automatic")) mode = NL_MODE_AUTOMATIC; else if (!strcmp(cmd->value, "manual")) mode = NL_MODE_MANUAL; else if (!strcmp(cmd->value, "manual-si5")) mode = NL_MODE_MANUAL_SI5SEP; switch (mode) { case NL_MODE_MANUAL_SI5SEP: case NL_MODE_MANUAL: /* make sure we clear the current list when switching to * manual mode */ if (bts->neigh_list_manual_mode == 0) memset(&bts->si_common.data.neigh_list, 0, sizeof(bts->si_common.data.neigh_list)); break; default: break; } bts->neigh_list_manual_mode = mode; cmd->reply = "OK"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_WO(bts_neighbor_list_mode, "neighbor-list mode"); /* si2quater neighbor management: delete an EARFCN. * Format: bts.<0-255>.si2quater-neighbor-list.del.earfcn EARFCN * EARFCN is in range 0..65535 */ static int set_bts_si2quater_neighbor_list_del_earfcn(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = (struct gsm_bts *)cmd->node; int earfcn; if (osmo_str_to_int(&earfcn, cmd->value, 10, 0, 65535) < 0) { cmd->reply = "Failed to parse neighbor EARFCN value"; return CTRL_CMD_ERROR; } if (bts_earfcn_del(bts, earfcn) < 0) { cmd->reply = "Failed to delete a (not existent?) neighbor EARFCN"; return CTRL_CMD_ERROR; } cmd->reply = "OK"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_WO_NOVRF(bts_si2quater_neighbor_list_del_earfcn, "si2quater-neighbor-list del earfcn"); /* si2quater neighbor management: delete an UARFCN * Format: bts.<0-255>.si2quater-neighbor-list.del.uarfcn UARFCN,SCRAMBLE * UARFCN is in range 0..16383, SCRAMBLE is in range 0..511 */ static int set_bts_si2quater_neighbor_list_del_uarfcn(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = (struct gsm_bts *)cmd->node; char *uarfcn_str, *scramble_str; char *tmp, *saveptr; int uarfcn, scramble; tmp = talloc_strdup(OTC_SELECT, cmd->value); if (!tmp) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } uarfcn_str = strtok_r(tmp, ",", &saveptr); scramble_str = strtok_r(NULL, ",", &saveptr); if (!uarfcn_str || osmo_str_to_int(&uarfcn, uarfcn_str, 10, 0, 16383) < 0) { cmd->reply = "Failed to parse neighbor UARFCN value"; return CTRL_CMD_ERROR; } if (!scramble_str || osmo_str_to_int(&scramble, scramble_str, 10, 0, 511) < 0) { cmd->reply = "Failed to parse neighbor scrambling code"; return CTRL_CMD_ERROR; } if (bts_uarfcn_del(bts, uarfcn, scramble) < 0) { cmd->reply = "Failed to delete a (not existent?) neighbor UARFCN"; return CTRL_CMD_ERROR; } cmd->reply = "OK"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_WO_NOVRF(bts_si2quater_neighbor_list_del_uarfcn, "si2quater-neighbor-list del uarfcn"); static int verify_bts_si2quater_neighbor_list_add_earfcn(struct ctrl_cmd *cmd, const char *value, void *_data) { char *earfcn_str, *thresh_hi_str, *thresh_lo_str, *prio_str, *qrxlv_str, *meas_str, *saveptr, *tmp; int earfcn, thresh_hi, thresh_lo, prio, qrxlv, meas; tmp = talloc_strdup(cmd, value); if (!tmp) return 1; earfcn_str = strtok_r(tmp, ",", &saveptr); thresh_hi_str = strtok_r(NULL, ",", &saveptr); thresh_lo_str = strtok_r(NULL, ",", &saveptr); prio_str = strtok_r(NULL, ",", &saveptr); qrxlv_str = strtok_r(NULL, ",", &saveptr); meas_str = strtok_r(NULL, "\0", &saveptr); if (!earfcn_str || osmo_str_to_int(&earfcn, earfcn_str, 10, 0, 65535) < 0) { cmd->reply = "Failed to parse neighbor EARFCN value"; return 1; } if (!thresh_hi_str || osmo_str_to_int(&thresh_hi, thresh_hi_str, 10, 0, 31) < 0) { cmd->reply = "Failed to parse neighbor threshold high bits value"; return 1; } if (!thresh_lo_str || osmo_str_to_int(&thresh_lo, thresh_lo_str, 10, 0, 32) < 0) { cmd->reply = "Failed to parse neighbor threshold low bits value"; return 1; } if (!prio_str || osmo_str_to_int(&prio, prio_str, 10, 0, 8) < 0) { cmd->reply = "Failed to parse neighbor priority value"; return 1; } if (!qrxlv_str || osmo_str_to_int(&qrxlv, qrxlv_str, 10, 0, 32) < 0) { cmd->reply = "Failed to parse neighbor QRXLEVMIN value"; return 1; } if (!meas_str || osmo_str_to_int(&meas, meas_str, 10, 0, 8) < 0) { cmd->reply = "Failed to parse neighbor measurement bandwidth"; return 1; } return 0; } /* si2quater neighbor management: add an EARFCN * Format: bts.<0-255>.si2quater-neighbor-list.add.earfcn ,,,,, * EARFCN is in range 0..65535, thresh-hi is in range 0..31, thresh-hi is in range 0..32, * priority is in range 0..8, QRXLEVMIN is in range 0..32, measurement bandwidth is in range 0..8 */ static int set_bts_si2quater_neighbor_list_add_earfcn(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = (struct gsm_bts *)cmd->node; char *earfcn_str, *thresh_hi_str, *thresh_lo_str, *prio_str, *qrxlv_str, *meas_str, *saveptr, *tmp; int earfcn, thresh_hi, thresh_lo, prio, qrxlv, meas, result; tmp = talloc_strdup(cmd, cmd->value); if (!tmp) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } earfcn_str = strtok_r(tmp, ",", &saveptr); thresh_hi_str = strtok_r(NULL, ",", &saveptr); thresh_lo_str = strtok_r(NULL, ",", &saveptr); prio_str = strtok_r(NULL, ",", &saveptr); qrxlv_str = strtok_r(NULL, ",", &saveptr); meas_str = strtok_r(NULL, "\0", &saveptr); if (!earfcn_str || osmo_str_to_int(&earfcn, earfcn_str, 10, 0, 65535) < 0) { cmd->reply = "Failed to parse neighbor EARFCN value"; return CTRL_CMD_ERROR; } if (!thresh_hi_str || osmo_str_to_int(&thresh_hi, thresh_hi_str, 10, 0, 31) < 0) { cmd->reply = "Failed to parse neighbor threshold high bits value"; return CTRL_CMD_ERROR; } if (!thresh_lo_str || osmo_str_to_int(&thresh_lo, thresh_lo_str, 10, 0, 32) < 0) { cmd->reply = "Failed to parse neighbor threshold low bits value"; return CTRL_CMD_ERROR; } if (!prio_str || osmo_str_to_int(&prio, prio_str, 10, 0, 8) < 0) { cmd->reply = "Failed to parse neighbor priority value"; return CTRL_CMD_ERROR; } if (!qrxlv_str || osmo_str_to_int(&qrxlv, qrxlv_str, 10, 0, 32) < 0) { cmd->reply = "Failed to parse neighbor QRXLEVMIN value"; return CTRL_CMD_ERROR; } if (!meas_str || osmo_str_to_int(&meas, meas_str, 10, 0, 8) < 0) { cmd->reply = "Failed to parse neighbor measurement bandwidth"; return CTRL_CMD_ERROR; } result = bts_earfcn_add(bts, earfcn, thresh_hi, thresh_lo, prio, qrxlv, meas); if ((result == 0) && (si2q_num(bts) <= SI2Q_MAX_NUM)) { cmd->reply = "OK"; return CTRL_CMD_REPLY; } switch (result) { case 0: cmd->reply = talloc_asprintf(cmd, "Not enough space in SI2quater (%u/%u used)", bts->si2q_count, SI2Q_MAX_NUM); if (!cmd->reply) cmd->reply = "OOM"; break; case 1: cmd->reply = "Multiple threshold-high are not supported"; break; case EARFCN_THRESH_LOW_INVALID: cmd->reply = "Multiple threshold-low are not supported"; break; case EARFCN_QRXLV_INVALID + 1: cmd->reply = "Multiple QRXLEVMIN are not supported"; break; case EARFCN_PRIO_INVALID: cmd->reply = "Multiple priorities are not supported"; break; default: cmd->reply = talloc_asprintf(cmd, "Unable to add EARFCN: %s", strerror(-result)); if (!cmd->reply) cmd->reply = "OOM"; } if (bts_earfcn_del(bts, earfcn) != 0) cmd->reply = "Failed to roll-back adding EARFCN"; return CTRL_CMD_ERROR; } CTRL_CMD_DEFINE_WO(bts_si2quater_neighbor_list_add_earfcn, "si2quater-neighbor-list add earfcn"); static int verify_bts_si2quater_neighbor_list_add_uarfcn(struct ctrl_cmd *cmd, const char *value, void *_data) { char *uarfcn_str, *scramble_str, *diversity_str, *saveptr, *tmp; int uarfcn, scramble; tmp = talloc_strdup(cmd, value); if (!tmp) return 1; uarfcn_str = strtok_r(tmp, ",", &saveptr); scramble_str = strtok_r(NULL, ",", &saveptr); diversity_str = strtok_r(NULL, "\0", &saveptr); if (!uarfcn_str || osmo_str_to_int(&uarfcn, uarfcn_str, 10, 0, 16383) < 0) { cmd->reply = "Failed to parse neighbor UARFCN value"; return 1; } if (!scramble_str || osmo_str_to_int(&scramble, scramble_str, 10, 0, 511) < 0) { cmd->reply = "Failed to parse neighbor scrambling code"; return 1; } if (!diversity_str || ((strcmp(diversity_str, "1") != 0) && (strcmp(diversity_str, "0") != 0))) { cmd->reply = "Failed to parse neighbor diversity bit"; return 1; } return 0; } /* si2quater neighbor management: add an UARFCN * Format: bts.<0-255>.si2quater-neighbor-list.add.uarfcn ,, * UARFCN is in range 0..16383, scrambling code is in range 0..511 */ static int set_bts_si2quater_neighbor_list_add_uarfcn(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = (struct gsm_bts *)cmd->node; char *uarfcn_str, *scramble_str, *diversity_str, *saveptr, *tmp; int uarfcn, scramble; bool diversity; tmp = talloc_strdup(cmd, cmd->value); if (!tmp) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } uarfcn_str = strtok_r(tmp, ",", &saveptr); scramble_str = strtok_r(NULL, ",", &saveptr); diversity_str = strtok_r(NULL, "\0", &saveptr); if (!uarfcn_str || osmo_str_to_int(&uarfcn, uarfcn_str, 10, 0, 16383) < 0) { cmd->reply = "Failed to parse neighbor UARFCN value"; return CTRL_CMD_ERROR; } if (!scramble_str || osmo_str_to_int(&scramble, scramble_str, 10, 0, 511) < 0) { cmd->reply = "Failed to parse neighbor scrambling code"; return CTRL_CMD_ERROR; } diversity = strcmp(diversity_str, "1") == 0; switch (bts_uarfcn_add(bts, uarfcn, scramble, diversity)) { case -ENOMEM: cmd->reply = "max number of UARFCNs reached"; return CTRL_CMD_ERROR; case -ENOSPC: cmd->reply = "not enough space in SI2quater"; return CTRL_CMD_ERROR; } cmd->reply = "OK"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_WO(bts_si2quater_neighbor_list_add_uarfcn, "si2quater-neighbor-list add uarfcn"); static int verify_bts_cell_reselection_offset(struct ctrl_cmd *cmd, const char *value, void *_data) { const int cell_reselection_offset = atoi(value); if (cell_reselection_offset < 0 || cell_reselection_offset > 126) { cmd->reply = "Value is out of range"; return 1; } else if (cell_reselection_offset % 2 != 0) { cmd->reply = "Value must be even"; return 1; } return 0; } static int get_bts_cell_reselection_offset(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; if (!bts->si_common.cell_ro_sel_par.present) { cmd->reply = "0"; return CTRL_CMD_REPLY; } cmd->reply = talloc_asprintf(cmd, "%u", bts->si_common.cell_ro_sel_par.cell_resel_off * 2); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } static int set_bts_cell_reselection_offset(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; bts->si_common.cell_ro_sel_par.present = 1; bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(cmd->value) / 2; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE(bts_cell_reselection_offset, "cell-reselection-offset"); static int verify_bts_cell_reselection_penalty_time(struct ctrl_cmd *cmd, const char *value, void *_data) { int penalty_time; if (strcmp(value, "reserved") == 0) return 0; penalty_time = atoi(value); if (penalty_time < 20 || penalty_time > 620) { cmd->reply = "Value is out of range"; return 1; } else if (penalty_time % 20 != 0) { cmd->reply = "Value must be a multiple of 20"; return 1; } return 0; } /* According to 3GPP TS 45.008, PENALTY_TIME in the Control parameters section */ static int get_bts_cell_reselection_penalty_time(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; if (!bts->si_common.cell_ro_sel_par.present) { cmd->reply = "0"; return CTRL_CMD_REPLY; } if (bts->si_common.cell_ro_sel_par.penalty_time == 31) { cmd->reply = "reserved"; return CTRL_CMD_REPLY; } /* Calculate the penalty time in seconds */ cmd->reply = talloc_asprintf(cmd, "%u", (bts->si_common.cell_ro_sel_par.penalty_time * 20) + 20); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } static int set_bts_cell_reselection_penalty_time(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; bts->si_common.cell_ro_sel_par.present = 1; if (strcmp(cmd->value, "reserved") == 0) bts->si_common.cell_ro_sel_par.penalty_time = 31; else bts->si_common.cell_ro_sel_par.penalty_time = (atoi(cmd->value) - 20) / 20; cmd->reply = "OK"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE(bts_cell_reselection_penalty_time, "cell-reselection-penalty-time"); static int verify_bts_cell_reselection_hysteresis(struct ctrl_cmd *cmd, const char *value, void *_data) { const int cell_reselection_hysteresis = atoi(value); if (cell_reselection_hysteresis < 0 || cell_reselection_hysteresis > 14) { cmd->reply = "Value is out of range"; return 1; } else if (cell_reselection_hysteresis % 2 != 0) { cmd->reply = "Value must be even"; return 1; } return 0; } static int get_bts_cell_reselection_hysteresis(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; cmd->reply = talloc_asprintf(cmd, "%u", bts->si_common.cell_sel_par.cell_resel_hyst * 2); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } static int set_bts_cell_reselection_hysteresis(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; bts->si_common.cell_sel_par.cell_resel_hyst = atoi(cmd->value) / 2; cmd->reply = "OK"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE(bts_cell_reselection_hysteresis, "cell-reselection-hysteresis"); static int verify_bts_radio_link_timeout(struct ctrl_cmd *cmd, const char *value, void *_data) { int radio_link_timeout; struct gsm_bts *bts = cmd->node; if (strcmp(value, "infinite") == 0) { if (bts->type != GSM_BTS_TYPE_OSMOBTS) { cmd->reply = "Infinite radio link timeout not supported by BTS"; return 1; } return 0; } radio_link_timeout = atoi(cmd->value); if (radio_link_timeout < 0 || radio_link_timeout > 64) { cmd->reply = "Value is out of range"; return 1; } else if (radio_link_timeout % 4 != 0) { cmd->reply = "Value must be a multiple of 4"; return 1; } return 0; } static int get_bts_radio_link_timeout(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; cmd->reply = talloc_asprintf(cmd, "%u", gsm_bts_get_radio_link_timeout(bts)); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } static int set_bts_radio_link_timeout(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; gsm_bts_set_radio_link_timeout(bts, atoi(cmd->value)); cmd->reply = "OK"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE(bts_radio_link_timeout, "radio-link-timeout"); static int verify_bts_rxlev_access_min(struct ctrl_cmd *cmd, const char *value, void *_data) { int rxlev_access_min = atoi(cmd->value); if (rxlev_access_min < 0 || rxlev_access_min > 63) { cmd->reply = "Value is out of range"; return 1; } return 0; } static int get_bts_rxlev_access_min(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; cmd->reply = talloc_asprintf(cmd, "%u", bts->si_common.cell_sel_par.rxlev_acc_min); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } static int set_bts_rxlev_access_min(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; bts->si_common.cell_sel_par.rxlev_acc_min = atoi(cmd->value); cmd->reply = "OK"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE(bts_rxlev_access_min, "rach-rxlev-access-min"); /* Return space concatenated set of pairs , */ static int get_bts_rach_access_control_class(struct ctrl_cmd *cmd, void *data) { int i; const struct gsm_bts *bts = cmd->node; cmd->reply = talloc_strdup(cmd, ""); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } for (i = 0; i < 8; i++) { cmd->reply = talloc_asprintf_append(cmd->reply, i == 0 ? "%u,%s" : " %u,%s", i, bts->si_common.rach_control.t3 & (0x1 << i) ? "barred" : "allowed"); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } } for (i = 0; i < 8; i++) { if (i != 2) cmd->reply = talloc_asprintf_append(cmd->reply, " %u,%s", i + 8, bts->si_common.rach_control.t2 & (0x1 << i) ? "barred" : "allowed"); else cmd->reply = talloc_asprintf_append(cmd->reply, " emergency,%s", bts->si_common.rach_control.t2 & (0x1 << i) ? "barred" : "allowed"); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } } return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_RO(bts_rach_access_control_class, "rach-access-control-classes"); static int verify_access_control_class(struct ctrl_cmd *cmd, const char *value) { int acc; if (strcmp(value, "emergency") == 0) return 0; acc = atoi(value); if (acc < 0 || acc > 15) { cmd->reply = "Value is out of range"; return 1; } else if (acc == 10) { cmd->reply = "Access control class 10 does not exist, consider using \"emergency\" instead"; return 1; } return 0; } static int set_access_control_class(struct ctrl_cmd *cmd, bool allow) { int acc; struct gsm_bts *bts = cmd->node; if (strcmp(cmd->value, "emergency") == 0) { if (allow) bts->si_common.rach_control.t2 &= ~0x4; else bts->si_common.rach_control.t2 |= 0x4; cmd->reply = "OK"; return CTRL_CMD_REPLY; } acc = atoi(cmd->value); if (acc < 8) if (allow) bts->si_common.rach_control.t3 &= ~(0x1 << acc); else bts->si_common.rach_control.t3 |= (0x1 << acc); else if (allow) bts->si_common.rach_control.t2 &= ~(0x1 << (acc - 8)); else bts->si_common.rach_control.t2 |= (0x1 << (acc - 8)); if (acc < 10) acc_mgr_perm_subset_changed(&bts->acc_mgr, &bts->si_common.rach_control); cmd->reply = "OK"; return CTRL_CMD_REPLY; } static int verify_bts_rach_access_control_class_bar(struct ctrl_cmd *cmd, const char *value, void *_data) { return verify_access_control_class(cmd, value); } static int set_bts_rach_access_control_class_bar(struct ctrl_cmd *cmd, void *data) { return set_access_control_class(cmd, false); } CTRL_CMD_DEFINE_WO(bts_rach_access_control_class_bar, "rach-access-control-class bar"); static int verify_bts_rach_access_control_class_allow(struct ctrl_cmd *cmd, const char *value, void *_data) { return verify_access_control_class(cmd, value); } static int set_bts_rach_access_control_class_allow(struct ctrl_cmd *cmd, void *data) { return set_access_control_class(cmd, true); } CTRL_CMD_DEFINE_WO(bts_rach_access_control_class_allow, "rach-access-control-class allow"); static int verify_bts_rach_cell_barred(struct ctrl_cmd *cmd, const char *value, void *_data) { int bar = atoi(cmd->value); if ((bar != 0) && (bar != 1)) return 1; return 0; } static int get_bts_rach_cell_barred(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; cmd->reply = talloc_asprintf(cmd, "%u", bts->si_common.rach_control.cell_bar); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } return CTRL_CMD_REPLY; } static int set_bts_rach_cell_barred(struct ctrl_cmd *cmd, void *data) { struct gsm_bts *bts = cmd->node; bts->si_common.rach_control.cell_bar = atoi(cmd->value); cmd->reply = "OK"; return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE(bts_rach_cell_barred, "rach-cell-barred"); /* Return space concatenated set of tuples ,, */ static int get_bts_neighbor_list_si2quater_uarfcn(struct ctrl_cmd *cmd, void *data) { int i; const struct gsm_bts *bts = cmd->node; cmd->reply = talloc_strdup(cmd, ""); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } for (i = 0; i < bts->si_common.uarfcn_length; i++) { cmd->reply = talloc_asprintf_append(cmd->reply, i == 0 ? "%u,%u,%u" : " %u,%u,%u", bts->si_common.data.uarfcn_list[i], bts->si_common.data.scramble_list[i] & ~(1 << 9), (bts->si_common.data.scramble_list[i] >> 9) & 1); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } } return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_RO(bts_neighbor_list_si2quater_uarfcn, "neighbor-list si2quater uarfcns"); /* Return space concatenated set of tuples ,,,,, */ static int get_bts_neighbor_list_si2quater_earfcn(struct ctrl_cmd *cmd, void *data) { int i; bool first_earfcn = true; const struct gsm_bts *bts = cmd->node; const struct osmo_earfcn_si2q *neighbors = &bts->si_common.si2quater_neigh_list; cmd->reply = talloc_strdup(cmd, ""); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } for (i = 0; i < MAX_EARFCN_LIST; i++) { if (neighbors->arfcn[i] == OSMO_EARFCN_INVALID) continue; cmd->reply = talloc_asprintf_append(cmd->reply, first_earfcn ? "%u,%u,%u,%u,%u,%u" : " %u,%u,%u,%u,%u,%u", neighbors->arfcn[i], neighbors->thresh_hi, neighbors->thresh_lo_valid ? neighbors->thresh_lo : 32, neighbors->prio_valid ? neighbors->prio : 8, neighbors->qrxlm_valid ? neighbors->qrxlm : 32, (neighbors->meas_bw[i] != OSMO_EARFCN_MEAS_INVALID) ? neighbors->meas_bw[i] : 8); if (!cmd->reply) { cmd->reply = "OOM"; return CTRL_CMD_ERROR; } first_earfcn = false; } return CTRL_CMD_REPLY; } CTRL_CMD_DEFINE_RO(bts_neighbor_list_si2quater_earfcn, "neighbor-list si2quater earfcns"); int bsc_bts_ctrl_cmds_install(void) { int rc = 0; rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_loc); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_lac); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_ci); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_bsic); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rach_max_delay); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rach_expiry_timeout); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_apply_config); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_si); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_power_ctrl_defs); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_chan_load); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_oml_conn); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_oml_up); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_gprs_mode); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rf_state); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rf_states); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_c0_power_red); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_neighbor_list_si2); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_neighbor_list_si5); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_neighbor_list_add); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_neighbor_list_del); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_neighbor_list_si5_add); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_neighbor_list_si5_del); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_neighbor_list_mode); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_si2quater_neighbor_list_del_earfcn); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_si2quater_neighbor_list_del_uarfcn); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_si2quater_neighbor_list_add_earfcn); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_si2quater_neighbor_list_add_uarfcn); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_cell_reselection_offset); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_cell_reselection_penalty_time); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_cell_reselection_hysteresis); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_radio_link_timeout); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rxlev_access_min); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rach_access_control_class); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rach_access_control_class_bar); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rach_access_control_class_allow); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_rach_cell_barred); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_neighbor_list_si2quater_uarfcn); rc |= ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_neighbor_list_si2quater_earfcn); rc |= neighbor_ident_ctrl_init(); rc = bsc_bts_trx_ctrl_cmds_install(); return rc; }