/* (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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static size_t llsk_audio_prim_size_tbl[4][_HNB_AUDIO_PRIM_MAX] = { [PRIM_OP_REQUEST] = { [HNB_AUDIO_PRIM_CONN_ESTABLISH] = sizeof(struct hnb_audio_conn_establish_req_param), [HNB_AUDIO_PRIM_CONN_RELEASE] = sizeof(struct hnb_audio_conn_release_req_param), [HNB_AUDIO_PRIM_CONN_DATA] = sizeof(struct hnb_audio_conn_data_req_param), }, [PRIM_OP_RESPONSE] = {}, [PRIM_OP_INDICATION] = { [HNB_AUDIO_PRIM_CONN_DATA] = sizeof(struct hnb_audio_conn_data_ind_param), }, [PRIM_OP_CONFIRM] = { [HNB_AUDIO_PRIM_CONN_ESTABLISH] = sizeof(struct hnb_audio_conn_establish_cnf_param), }, }; static inline size_t llsk_audio_prim_size(enum hnb_audio_prim_type ptype, enum osmo_prim_operation op) { size_t val = llsk_audio_prim_size_tbl[op][ptype]; if (val == 0) { LOGP(DLLSK, LOGL_FATAL, "Expected prim_size != 0 for ptype=%u op=%u\n", ptype, op); osmo_panic("Expected prim_size != 0 for ptype=%u op=%u\n", ptype, op); } return val; } const struct value_string hnb_audio_prim_type_names[] = { OSMO_VALUE_STRING(HNB_AUDIO_PRIM_CONN_ESTABLISH), OSMO_VALUE_STRING(HNB_AUDIO_PRIM_CONN_RELEASE), OSMO_VALUE_STRING(HNB_AUDIO_PRIM_CONN_DATA), { 0, NULL } }; int llsk_audio_sapi_version_confirmed(uint16_t sapi_version) { /* Update primitive size expectancies based on SAPI version: */ switch (sapi_version) { case 0: llsk_audio_prim_size_tbl[PRIM_OP_REQUEST][HNB_AUDIO_PRIM_CONN_ESTABLISH] = sizeof(struct hnb_audio_conn_establish_req_param_v0); break; case 1: llsk_audio_prim_size_tbl[PRIM_OP_REQUEST][HNB_AUDIO_PRIM_CONN_ESTABLISH] = sizeof(struct hnb_audio_conn_establish_req_param_v1); break; default: return -1; } return 0; } static struct hnb_audio_prim *hnb_audio_prim_alloc(enum hnb_audio_prim_type ptype, enum osmo_prim_operation op, size_t extra_len) { struct osmo_prim_hdr *oph; size_t len = llsk_audio_prim_size(ptype, op); oph = osmo_prim_msgb_alloc(HNB_PRIM_SAPI_AUDIO, ptype, op, sizeof(*oph) + len + extra_len); if (!oph) return NULL; msgb_put(oph->msg, len); return (struct hnb_audio_prim *)oph; } static struct hnb_audio_prim *hnb_audio_makeprim_conn_establish_cnf(uint32_t context_id, uint32_t audio_conn_id, uint8_t error_code, uint16_t local_rtp_port, uint8_t local_rtp_address_type, const union u_addr *local_rtp_addr) { struct hnb_audio_prim *audio_prim; audio_prim = hnb_audio_prim_alloc(HNB_AUDIO_PRIM_CONN_ESTABLISH, PRIM_OP_CONFIRM, 0); audio_prim->u.conn_establish_cnf.context_id = context_id; audio_prim->u.conn_establish_cnf.audio_conn_id = audio_conn_id; audio_prim->u.conn_establish_cnf.local_rtp_port = local_rtp_port; audio_prim->u.conn_establish_cnf.error_code = error_code; audio_prim->u.conn_establish_cnf.local_rtp_address_type = local_rtp_address_type; if (local_rtp_addr) audio_prim->u.conn_establish_cnf.local_rtp_addr = *local_rtp_addr; return audio_prim; } static struct hnb_audio_prim *hnb_audio_makeprim_conn_data_ind(uint32_t audio_conn_id, uint8_t frame_nr, uint8_t fqc, uint8_t rfci, const uint8_t *data, uint32_t data_len) { struct hnb_audio_prim *audio_prim; audio_prim = hnb_audio_prim_alloc(HNB_AUDIO_PRIM_CONN_DATA, PRIM_OP_INDICATION, data_len); audio_prim->u.conn_data_ind.audio_conn_id = audio_conn_id; audio_prim->u.conn_data_ind.frame_nr = frame_nr; audio_prim->u.conn_data_ind.fqc = fqc; audio_prim->u.conn_data_ind.rfci = rfci; audio_prim->u.conn_data_ind.data_len = data_len; if (data_len) { msgb_put(audio_prim->hdr.msg, data_len); memcpy(audio_prim->u.conn_data_ind.data, data, data_len); } return audio_prim; } int llsk_audio_tx_conn_data_ind(struct rtp_conn *conn, uint8_t frame_nr, uint8_t fqc, uint8_t rfci, const uint8_t *payload, uint32_t len) { struct hnb_audio_prim *audio_prim; int rc; LOGUE(conn->ue, DLLSK, LOGL_DEBUG, "Tx AUDIO-CONN_DATA.ind conn_id=%u fn=%u fqc=%u rfci=%u data_len=%u\n", conn->id, frame_nr, fqc, rfci, len); audio_prim = hnb_audio_makeprim_conn_data_ind(conn->id, frame_nr, fqc, rfci, payload, len); if ((rc = osmo_prim_srv_send(conn->ue->hnb->llsk.srv, audio_prim->hdr.msg)) < 0) LOGUE(conn->ue, DLLSK, LOGL_ERROR, "Failed sending AUDIO-CONN_DATA.ind\n"); return rc; } static int _send_conn_establish_cnf_failed(struct hnb *hnb, uint32_t context_id, uint8_t error_code) { struct hnb_audio_prim *audio_prim; int rc; LOGP(DLLSK, LOGL_ERROR, "Tx AUDIO-CONN_ESTABLISH.cnf: ctx=%u error_code=%u\n", context_id, error_code); audio_prim = hnb_audio_makeprim_conn_establish_cnf(context_id, 0, error_code, 0, HNB_PRIM_ADDR_TYPE_UNSPEC, NULL); if ((rc = osmo_prim_srv_send(hnb->llsk.srv, audio_prim->hdr.msg)) < 0) { LOGP(DLLSK, LOGL_ERROR, "Failed sending AUDIO-CONN_ESTABLISH.cnf context_id=%u error_code=%u\n", context_id, error_code); } return rc; } static int llsk_rx_audio_conn_establish_req(struct hnb *hnb, struct hnb_audio_conn_establish_req_param *ce_req) { struct hnb_ue *ue; int rc = 0; struct hnb_audio_prim *audio_prim; int af; char rem_addrstr[INET6_ADDRSTRLEN+32]; struct osmo_sockaddr rem_osa = {0}; union u_addr loc_uaddr = {0}; uint16_t loc_port = 0; struct rtp_conn *conn = NULL; struct hnb_audio_conn_establish_req_param_v0 *v0 = &ce_req->v0; rc = ll_addr2osa(v0->remote_rtp_address_type, &v0->remote_rtp_addr, v0->remote_rtp_port, &rem_osa); if (rc < 0) { LOGP(DLLSK, LOGL_ERROR, "Rx AUDIO-CONN_ESTABLISH.req: ctx=%u with unexpected address type %u\n", v0->context_id, v0->remote_rtp_address_type); return _send_conn_establish_cnf_failed(hnb, v0->context_id, 1); } osmo_sockaddr_to_str_buf(rem_addrstr, sizeof(rem_addrstr), &rem_osa); LOGP(DLLSK, LOGL_INFO, "Rx AUDIO-CONN_ESTABLISH.req ctx=%u rem_addr=%s\n", v0->context_id, rem_addrstr); if ((af = ll_addr_type2af(v0->remote_rtp_address_type)) < 0) { LOGP(DLLSK, LOGL_ERROR, "Rx AUDIO-CONN_ESTABLISH.req: ctx=%u with unexpected address type %u\n", v0->context_id, v0->remote_rtp_address_type); return _send_conn_establish_cnf_failed(hnb, v0->context_id, 1); } ue = hnb_find_ue_by_id(hnb, v0->context_id); if (!ue) { LOGP(DLLSK, LOGL_ERROR, "Rx AUDIO-CONN_ESTABLISH.req: UE not found! ctx=%u rem_addr=%s\n", v0->context_id, rem_addrstr); return _send_conn_establish_cnf_failed(hnb, v0->context_id, 2); } if (!ue->conn_cs.active) { LOGUE(ue, DLLSK, LOGL_ERROR, "Rx AUDIO-CONN_ESTABLISH.req: CS chan not active! rem_addr=%s\n", rem_addrstr); return _send_conn_establish_cnf_failed(hnb, v0->context_id, 3); } /* Create the socket: */ conn = rtp_conn_alloc(ue); if ((rc = rtp_conn_setup(conn, hnb->iuh.local_addr, &rem_osa, ce_req)) < 0) { LOGUE(ue, DLLSK, LOGL_ERROR, "Rx AUDIO-CONN_ESTABLISH.req: Failed to set up audio socket rem_addr=%s\n", rem_addrstr); return _send_conn_establish_cnf_failed(hnb, v0->context_id, 4); } /* Convert resulting local address back to LLSK format: */ if (osa2_ll_addr(&conn->loc_addr, &loc_uaddr, &loc_port) != v0->remote_rtp_address_type) { LOGUE(ue, DLLSK, LOGL_ERROR, "Rx AUDIO-CONN_ESTABLISH.req: Failed to provide proper local address rem_addr=%s\n", rem_addrstr); rc = _send_conn_establish_cnf_failed(hnb, v0->context_id, 4); goto release_sock; } /* Submit successful confirmation */ LOGUE(ue, DLLSK, LOGL_INFO, "Tx AUDIO-CONN_ESTABLISH.cnf: error_code=0 rem_addr=%s loc_addr=%s\n", rem_addrstr, osmo_sockaddr_to_str(&conn->loc_addr)); audio_prim = hnb_audio_makeprim_conn_establish_cnf(v0->context_id, conn->id, 0, loc_port, v0->remote_rtp_address_type, &loc_uaddr); if ((rc = osmo_prim_srv_send(hnb->llsk.srv, audio_prim->hdr.msg)) < 0) { LOGUE(ue, DLLSK, LOGL_ERROR, "Failed sending AUDIO-CONN_ESTABLISH.cnf error_code=0\n"); goto release_sock; } return rc; release_sock: rtp_conn_free(conn); return rc; } static int llsk_rx_audio_conn_release_req(struct hnb *hnb, struct hnb_audio_conn_release_req_param *rel_req) { struct rtp_conn *conn; LOGP(DLLSK, LOGL_DEBUG, "Rx AUDIO-CONN_RELEASE.req id=%u\n", rel_req->audio_conn_id); conn = hnb_find_rtp_conn_by_id(hnb, rel_req->audio_conn_id); if (!conn) { LOGP(DLLSK, LOGL_ERROR, "Rx AUDIO-CONN_RELEASE.req: RTP conn not found! id=%u\n", rel_req->audio_conn_id); return -EINVAL; } /* Release RTP socket: */ rtp_conn_free(conn); return 0; } static int llsk_rx_audio_conn_data_req(struct hnb *hnb, struct hnb_audio_conn_data_req_param *data_req) { struct rtp_conn *conn; int rc = 0; LOGP(DLLSK, LOGL_DEBUG, "Rx AUDIO-CONN_DATA.req id=%u data_len=%u\n", data_req->audio_conn_id, data_req->data_len); conn = hnb_find_rtp_conn_by_id(hnb, data_req->audio_conn_id); if (!conn) { LOGP(DLLSK, LOGL_ERROR, "Rx AUDIO-CONN_DATA.req: RTP conn not found! id=%u data_len=%u\n", data_req->audio_conn_id, data_req->data_len); return -EINVAL; } /* Transmit data_req->data through RTP/Iu-UP socket */ rc = rtp_conn_tx_data(conn, data_req->frame_nr, data_req->fqc, data_req->rfci, data_req->data, data_req->data_len); return rc; } int llsk_rx_audio(struct hnb *hnb, struct osmo_prim_hdr *oph) { size_t prim_size = llsk_audio_prim_size(oph->primitive, oph->operation); if (msgb_length(oph->msg) < prim_size) { LOGP(DLLSK, LOGL_ERROR, "Rx AUDIO-%s.%s with length %u < %zu\n", get_value_string(hnb_audio_prim_type_names, oph->primitive), get_value_string(osmo_prim_op_names, oph->operation), msgb_length(oph->msg), prim_size); return -EINVAL; } switch (oph->operation) { case PRIM_OP_REQUEST: switch (oph->primitive) { case HNB_AUDIO_PRIM_CONN_ESTABLISH: return llsk_rx_audio_conn_establish_req(hnb, (struct hnb_audio_conn_establish_req_param *)msgb_data(oph->msg)); case HNB_AUDIO_PRIM_CONN_RELEASE: return llsk_rx_audio_conn_release_req(hnb, (struct hnb_audio_conn_release_req_param *)msgb_data(oph->msg)); case HNB_AUDIO_PRIM_CONN_DATA: return llsk_rx_audio_conn_data_req(hnb, (struct hnb_audio_conn_data_req_param *)msgb_data(oph->msg)); default: LOGP(DLLSK, LOGL_ERROR, "Rx llsk-audio unknown primitive %u (len=%u)\n", oph->primitive, msgb_length(oph->msg)); return -EINVAL; } break; case PRIM_OP_RESPONSE: case PRIM_OP_INDICATION: case PRIM_OP_CONFIRM: default: LOGP(DLLSK, LOGL_ERROR, "Rx llsk-audio unexpected primitive operation %s::%s (len=%u)\n", get_value_string(hnb_audio_prim_type_names, oph->primitive), get_value_string(osmo_prim_op_names, oph->operation), msgb_length(oph->msg)); return -EINVAL; } }