blob: 7de45f90273ec2cf15b27b94fae293e063a51ddd [file] [log] [blame]
Neels Hofmeyrd95ab1e2017-09-22 00:52:54 +02001/* MGCP common implementations.
2 * These are used in libosmo-mgcp as well as libosmo-mgcp-client.
3 * To avoid interdependency, these are implemented in .h file only. */
4
5/*
6 * (C) 2017 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
7 * (C) 2009-2012 by Holger Hans Peter Freyther <zecke@selfish.org>
8 * (C) 2009-2012 by On-Waves
9 * All Rights Reserved
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Affero General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Affero General Public License for more details.
20 *
21 * You should have received a copy of the GNU Affero General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 *
24 */
25
26/* Two copies of this file are kept in osmocom/mgcp/ and osmocom/mgcp_client/.
27 * Since both are by definition identical, use the old header exclusion ifdefs
28 * instead of '#pragma once' to avoid including both of these files.
29 * Though at the time of writing there are no such users, this allows including
30 * both libosmo-mgcp and libosmo-mgcp-client headers in the same file. */
31#ifndef OSMO_MGCP_COMMON_H
32#define OSMO_MGCP_COMMON_H
33
34#include <string.h>
35#include <errno.h>
36
37#include <osmocom/core/msgb.h>
38#include <osmocom/core/logging.h>
39
40#define for_each_non_empty_line(line, save) \
41 for (line = strtok_r(NULL, "\r\n", &save); line; \
42 line = strtok_r(NULL, "\r\n", &save))
43
44enum mgcp_connection_mode {
45 MGCP_CONN_NONE = 0,
46 MGCP_CONN_RECV_ONLY = 1,
47 MGCP_CONN_SEND_ONLY = 2,
48 MGCP_CONN_RECV_SEND = MGCP_CONN_RECV_ONLY | MGCP_CONN_SEND_ONLY,
49 MGCP_CONN_LOOPBACK = 4 | MGCP_CONN_RECV_SEND,
Andreas Eversbergdc7dfd02023-07-05 12:36:49 +020050 MGCP_CONN_CONFECHO = 8 | MGCP_CONN_RECV_SEND,
Neels Hofmeyrd95ab1e2017-09-22 00:52:54 +020051};
52
Neels Hofmeyre6d8e912018-08-23 16:36:48 +020053#define MGCP_X_OSMO_IGN_HEADER "X-Osmo-IGN:"
Pau Espin Pedrol900cd652019-04-24 22:06:22 +020054#define MGCP_X_OSMO_OSMUX_HEADER "X-Osmux:"
Neels Hofmeyre6d8e912018-08-23 16:36:48 +020055
56/* Values should be bitwise-OR-able */
57enum mgcp_x_osmo_ign {
58 MGCP_X_OSMO_IGN_NONE = 0,
59 MGCP_X_OSMO_IGN_CALLID = 1,
60};
61
Philipp Maier228e5912019-03-05 13:56:59 +010062/* Codec parameters (communicated via SDP/fmtp) */
63struct mgcp_codec_param {
64 bool amr_octet_aligned_present;
65 bool amr_octet_aligned;
66};
67
Neels Hofmeyrd95ab1e2017-09-22 00:52:54 +020068/* Ensure that the msg->l2h is NUL terminated. */
69static inline int mgcp_msg_terminate_nul(struct msgb *msg)
70{
71 unsigned char *tail = msg->l2h + msgb_l2len(msg); /* char after l2 data */
72 if (tail[-1] == '\0')
73 /* nothing to do */;
74 else if (msgb_tailroom(msg) > 0)
75 tail[0] = '\0';
76 else if (tail[-1] == '\r' || tail[-1] == '\n')
77 tail[-1] = '\0';
78 else {
79 LOGP(DLMGCP, LOGL_ERROR, "Cannot NUL terminate MGCP message: "
80 "Length: %d, Buffer size: %d\n",
81 msgb_l2len(msg), msg->data_len);
82 return -ENOTSUP;
83 }
84 return 0;
85}
86
Philipp Maierabe8c892018-01-20 00:15:12 +010087/* Maximum length of the comment field */
88#define MGCP_COMMENT_MAXLEN 256
89
Neels Hofmeyr55e0dcf2018-09-03 21:36:56 +020090/* Maximum allowed String length of Connection Identifiers as per spec
91 * (see also RFC3435 2.1.3.2 Names of Connections), plus one for '\0'. */
92#define MGCP_CONN_ID_MAXLEN 32+1
93
94/* Deprecated: old name of MGCP_CONN_ID_MAXLEN. */
95#define MGCP_CONN_ID_LENGTH MGCP_CONN_ID_MAXLEN
Philipp Maier01d24a32017-11-21 17:26:09 +010096
Philipp Maier6efb43a2018-01-15 13:59:10 +010097/* String length of Endpoint Identifiers.
98/ (see also RFC3435 section 3.2.1.3) */
99#define MGCP_ENDPOINT_MAXLEN (255*2+1+1)
100
Philipp Maier7f0966c2018-01-17 18:18:12 +0100101/* A prefix to denote the virtual trunk (RTP on both ends) */
102#define MGCP_ENDPOINT_PREFIX_VIRTUAL_TRUNK "rtpbridge/"
103
Philipp Maierc66ab2c2020-06-02 20:55:34 +0200104/* A prefix to denote the e1 trunk
105 * (see also RFC3435 section E.2) */
106#define MGCP_ENDPOINT_PREFIX_E1_TRUNK "ds/e1-"
107
Philipp Maierbc0346e2018-06-07 09:52:16 +0200108/* Maximal number of payload types / codecs that can be negotiated via SDP at
109 * at once. */
110#define MGCP_MAX_CODECS 10
111
Neels Hofmeyrd95ab1e2017-09-22 00:52:54 +0200112#endif