blob: a658f1c7789091f1a2cac28cef1dc4ade41f5d88 [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,
50};
51
Neels Hofmeyre6d8e912018-08-23 16:36:48 +020052#define MGCP_X_OSMO_IGN_HEADER "X-Osmo-IGN:"
53
54/* Values should be bitwise-OR-able */
55enum mgcp_x_osmo_ign {
56 MGCP_X_OSMO_IGN_NONE = 0,
57 MGCP_X_OSMO_IGN_CALLID = 1,
58};
59
Neels Hofmeyrd95ab1e2017-09-22 00:52:54 +020060/* Ensure that the msg->l2h is NUL terminated. */
61static inline int mgcp_msg_terminate_nul(struct msgb *msg)
62{
63 unsigned char *tail = msg->l2h + msgb_l2len(msg); /* char after l2 data */
64 if (tail[-1] == '\0')
65 /* nothing to do */;
66 else if (msgb_tailroom(msg) > 0)
67 tail[0] = '\0';
68 else if (tail[-1] == '\r' || tail[-1] == '\n')
69 tail[-1] = '\0';
70 else {
71 LOGP(DLMGCP, LOGL_ERROR, "Cannot NUL terminate MGCP message: "
72 "Length: %d, Buffer size: %d\n",
73 msgb_l2len(msg), msg->data_len);
74 return -ENOTSUP;
75 }
76 return 0;
77}
78
Philipp Maierabe8c892018-01-20 00:15:12 +010079/* Maximum length of the comment field */
80#define MGCP_COMMENT_MAXLEN 256
81
Neels Hofmeyr55e0dcf2018-09-03 21:36:56 +020082/* Maximum allowed String length of Connection Identifiers as per spec
83 * (see also RFC3435 2.1.3.2 Names of Connections), plus one for '\0'. */
84#define MGCP_CONN_ID_MAXLEN 32+1
85
86/* Deprecated: old name of MGCP_CONN_ID_MAXLEN. */
87#define MGCP_CONN_ID_LENGTH MGCP_CONN_ID_MAXLEN
Philipp Maier01d24a32017-11-21 17:26:09 +010088
Philipp Maier6efb43a2018-01-15 13:59:10 +010089/* String length of Endpoint Identifiers.
90/ (see also RFC3435 section 3.2.1.3) */
91#define MGCP_ENDPOINT_MAXLEN (255*2+1+1)
92
Philipp Maier7f0966c2018-01-17 18:18:12 +010093/* A prefix to denote the virtual trunk (RTP on both ends) */
94#define MGCP_ENDPOINT_PREFIX_VIRTUAL_TRUNK "rtpbridge/"
95
Philipp Maierbc0346e2018-06-07 09:52:16 +020096/* Maximal number of payload types / codecs that can be negotiated via SDP at
97 * at once. */
98#define MGCP_MAX_CODECS 10
99
Neels Hofmeyrd95ab1e2017-09-22 00:52:54 +0200100#endif