/* (C) 2015 by Daniel Willmann * (C) 2021 by sysmocom - s.f.m.c. GmbH * Author: Pau Espin Pedrol * 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 "config.h" #include #include #include #include #include #include #include #include #include #include #include #include struct hnb *hnb_alloc(void *tall_ctx) { struct hnb *hnb; hnb = talloc_zero(tall_ctx, struct hnb); if (!hnb) return NULL; INIT_LLIST_HEAD(&hnb->ue_list); hnb->identity = talloc_strdup(hnb, "OsmoHNodeB"); hnb->plmn = (struct osmo_plmn_id){ .mcc = 1, .mnc = 1, }; hnb->rtp.jitter_adaptive = false; hnb->rtp.port_range_start = 16384; hnb->rtp.port_range_end = 17407; hnb->rtp.port_range_next = hnb->rtp.port_range_start; hnb->rtp.ip_dscp = -1; hnb->rtp.priority = -1; hnb->gtp.cfg_local_addr = talloc_strdup(hnb, "0.0.0.0"); osmo_wqueue_init(&hnb->gtp.wq1u, 1024); hnb->gtp.wq1u.bfd.data = hnb; hnb->gtp.wq1u.bfd.fd = -1; hnb->shutdown_fi = osmo_fsm_inst_alloc(&hnb_shutdown_fsm, hnb, hnb, LOGL_INFO, NULL); hnb_llsk_alloc(hnb); hnb_iuh_alloc(hnb); return hnb; } void hnb_free(struct hnb *hnb) { struct hnb_ue *ue, *ue_tmp; llist_for_each_entry_safe(ue, ue_tmp, &hnb->ue_list, list) hnb_ue_free(ue); if (hnb->shutdown_fi) { osmo_fsm_inst_free(hnb->shutdown_fi); hnb->shutdown_fi = NULL; } hnb_iuh_free(hnb); hnb_llsk_free(hnb); hnb_gtp_unbind(hnb); talloc_free(hnb); } struct hnb_ue *hnb_ue_alloc(struct hnb *hnb, uint32_t conn_id) { struct hnb_ue *ue; ue = talloc_zero(hnb, struct hnb_ue); if (!ue) return NULL; ue->hnb = hnb; ue->conn_id = conn_id; INIT_LLIST_HEAD(&ue->conn_cs.conn_list); INIT_LLIST_HEAD(&ue->conn_ps.conn_list); llist_add(&ue->list, &hnb->ue_list); return ue; } void hnb_ue_free(struct hnb_ue *ue) { hnb_ue_reset_chan(ue, true); hnb_ue_reset_chan(ue, false); llist_del(&ue->list); talloc_free(ue); } void hnb_ue_reset_chan(struct hnb_ue *ue, bool is_ps) { if (is_ps) { struct gtp_conn *conn, *conn_tmp; llist_for_each_entry_safe(conn, conn_tmp, &ue->conn_ps.conn_list, list) gtp_conn_free(conn); ue->conn_ps = (struct hnb_ue_ps_ctx){0}; INIT_LLIST_HEAD(&ue->conn_ps.conn_list); } else { struct rtp_conn *conn, *conn_tmp; llist_for_each_entry_safe(conn, conn_tmp, &ue->conn_cs.conn_list, list) rtp_conn_free(conn); ue->conn_cs = (struct hnb_ue_cs_ctx){0}; INIT_LLIST_HEAD(&ue->conn_cs.conn_list); } } struct hnb_ue *hnb_find_ue_by_id(const struct hnb *hnb, uint32_t conn_id) { struct hnb_ue *ue; llist_for_each_entry(ue, &hnb->ue_list, list) { if (ue->conn_id != conn_id) continue; return ue; } return NULL; } struct hnb_ue *hnb_find_ue_by_imsi(const struct hnb *hnb, char *imsi) { struct hnb_ue *ue; if (!imsi || imsi[0] == '\0') return NULL; llist_for_each_entry(ue, &hnb->ue_list, list) { if (ue->imsi[0] == '\0') continue; if (strncmp(&ue->imsi[0], imsi, ARRAY_SIZE(ue->imsi)) != 0) continue; return ue; } return NULL; } struct rtp_conn *hnb_find_rtp_conn_by_id(const struct hnb *hnb, uint32_t audio_conn_id) { struct hnb_ue *ue; llist_for_each_entry(ue, &hnb->ue_list, list) { struct rtp_conn *conn; if (!ue->conn_cs.active) continue; llist_for_each_entry(conn, &ue->conn_cs.conn_list, list) { if (conn->id == audio_conn_id) return conn; } } return NULL; } struct gtp_conn *hnb_find_gtp_conn_by_id(const struct hnb *hnb, uint32_t gtp_conn_id) { struct hnb_ue *ue; llist_for_each_entry(ue, &hnb->ue_list, list) { struct gtp_conn *conn; if (!ue->conn_ps.active) continue; llist_for_each_entry(conn, &ue->conn_ps.conn_list, list) { if (conn->id == gtp_conn_id) return conn; } } return NULL; }