blob: 1d336905ac6d4a0055535b5efecd292cf4a4de0e [file] [log] [blame]
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +02001#pragma once
2
3#include <stdint.h>
Philipp Maier1dc6be62017-10-05 18:25:37 +02004#include <arpa/inet.h>
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +02005
Pau Espin Pedrol8e8d59f2023-06-13 19:41:44 +02006#include <osmocom/mgcp_client/defs.h>
Neels Hofmeyrd95ab1e2017-09-22 00:52:54 +02007#include <osmocom/mgcp_client/mgcp_common.h>
8
Philipp Maieraf8e00f2018-07-27 16:04:41 +02009/* See also: RFC 3435, chapter 3.5 Transmission over UDP */
Pau Espin Pedrolee2f33b2020-08-31 19:36:31 +020010#define MGCP_CLIENT_LOCAL_ADDR_DEFAULT NULL /* INADDR(6)_ANY */
Pau Espin Pedrol8e74c632022-10-17 19:20:45 +020011#define MGCP_CLIENT_LOCAL_PORT_DEFAULT 0
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +020012#define MGCP_CLIENT_REMOTE_ADDR_DEFAULT "127.0.0.1"
13#define MGCP_CLIENT_REMOTE_PORT_DEFAULT 2427
Pau Espin Pedrol563386e2023-06-14 12:20:49 +020014#define MGCP_CLIENT_KEEPALIVE_DEFAULT_ENDP "null"
Neels Hofmeyre6d8e912018-08-23 16:36:48 +020015#define MGCP_CLIENT_MGW_STR "Configure MGCP connection to Media Gateway\n"
16
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +020017struct msgb;
18struct vty;
19struct mgcp_client;
20
21struct mgcp_client_conf {
22 const char *local_addr;
23 int local_port;
24 const char *remote_addr;
25 int remote_port;
Neels Hofmeyrac69ea92018-12-19 00:27:50 +010026
27 /* By default, we are always addressing the MGW with e.g. 'rtpbridge/123@mgw'.
28 * If this is nonempty, the contained name will be used instead of 'mgw'. */
29 char endpoint_domain_name[MGCP_ENDPOINT_MAXLEN];
Philipp Maier3f2c15f2021-07-22 11:53:07 +020030
31 /* The user may configure certain endpoint names that are reset via DLCX
32 * on startup. Usually this will be one wildcarded endpoint e.g.
33 * 'rtpbridge/(wildcard)' or a number of specific E1 like e.g.
34 * 'ds/e1-0/s-3/su16-4' */
35 struct llist_head reset_epnames;
Philipp Maierdf9192e2021-09-03 17:50:51 +020036
37 /* human readable name / description */
38 char *description;
Pau Espin Pedrol563386e2023-06-14 12:20:49 +020039
40 struct {
41 uint32_t timeout_sec;
42 uint32_t req_interval_sec;
43 char req_endpoint_name[MGCP_ENDPOINT_MAXLEN];
44 } keepalive;
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +020045};
46
47typedef unsigned int mgcp_trans_id_t;
48
Philipp Maier704c4f02018-06-07 18:51:31 +020049/*! Enumeration of the codec types that mgcp_client is able to handle. */
50enum mgcp_codecs {
51 CODEC_PCMU_8000_1 = 0,
52 CODEC_GSM_8000_1 = 3,
53 CODEC_PCMA_8000_1 = 8,
54 CODEC_G729_8000_1 = 18,
Philipp Maier14da3a32023-05-23 12:03:16 +020055 CODEC_GSMEFR_8000_1 = 110, /* 3GPP TS 48.103 table 5.4.2.2.1 */
56 CODEC_GSMHR_8000_1 = 111, /* 3GPP TS 48.103 table 5.4.2.2.1 */
57 CODEC_AMR_8000_1 = 112, /* 3GPP TS 48.103 table 5.4.2.2.1 */
58 CODEC_AMRWB_16000_1 = 113, /* 3GPP TS 48.103 table 5.4.2.2.1 */
Philipp Maier1de5ed62021-12-21 14:38:14 +010059 CODEC_IUFP = 96,
Philipp Maier14da3a32023-05-23 12:03:16 +020060 CODEC_CLEARMODE = 120, /* 3GPP TS 48.103 table 5.4.2.2.1 */
Philipp Maier704c4f02018-06-07 18:51:31 +020061};
62/* Note: when new codec types are added, the corresponding value strings
63 * in mgcp_client.c (codec_table) must be updated as well. Enumerations
64 * in enum mgcp_codecs must correspond to a valid payload type. However,
65 * this is an internal assumption that is made to avoid lookup tables.
66 * The API-User should not rely on this coincidence! */
67
Neels Hofmeyr47642f22019-02-27 05:56:53 +010068extern const struct value_string osmo_mgcpc_codec_names[];
69static inline const char *osmo_mgcpc_codec_name(enum mgcp_codecs val)
70{ return get_value_string(osmo_mgcpc_codec_names, val); }
71
Philipp Maier704c4f02018-06-07 18:51:31 +020072/*! Structure to build a payload type map to allow the defiition custom payload
73 * types. */
74struct ptmap {
Neels Hofmeyr8838c622018-06-26 00:05:53 +020075 /*! codec for which a payload type number should be defined */
Philipp Maier704c4f02018-06-07 18:51:31 +020076 enum mgcp_codecs codec;
77
Neels Hofmeyr8838c622018-06-26 00:05:53 +020078 /*! payload type number (96-127) */
Philipp Maier704c4f02018-06-07 18:51:31 +020079 unsigned int pt;
80};
81
Neels Hofmeyrcc2f7932023-12-07 03:46:46 +010082int ptmap_cmp(const struct ptmap *a, const struct ptmap *b);
83
Philipp Maier1dc6be62017-10-05 18:25:37 +020084enum mgcp_verb {
85 MGCP_VERB_CRCX,
86 MGCP_VERB_MDCX,
87 MGCP_VERB_DLCX,
88 MGCP_VERB_AUEP,
89 MGCP_VERB_RSIP,
90};
91
Pau Espin Pedrol8e8d59f2023-06-13 19:41:44 +020092struct mgcp_client_conf *mgcp_client_conf_alloc(void *ctx);
93void mgcp_client_conf_init(struct mgcp_client_conf *conf) OSMO_DEPRECATED_OUTSIDE_LIBOSMOMGCPCLIENT("use mgcp_client_conf_alloc() (or even better, switch to the mgcp_client_pool API!)");
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +020094void mgcp_client_vty_init(void *talloc_ctx, int node, struct mgcp_client_conf *conf);
95int mgcp_client_config_write(struct vty *vty, const char *indent);
96struct mgcp_client_conf *mgcp_client_conf_actual(struct mgcp_client *mgcp);
97
98struct mgcp_client *mgcp_client_init(void *ctx,
99 struct mgcp_client_conf *conf);
100int mgcp_client_connect(struct mgcp_client *mgcp);
Pau Espin Pedrol8e74c632022-10-17 19:20:45 +0200101int mgcp_client_connect2(struct mgcp_client *mgcp, unsigned int retry_n_ports) OSMO_DEPRECATED("Use mgcp_client_connect() instead");
Philipp Maier3f4a4cb2021-07-26 13:20:05 +0200102void mgcp_client_disconnect(struct mgcp_client *mgcp);
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200103
104const char *mgcp_client_remote_addr_str(struct mgcp_client *mgcp);
105uint16_t mgcp_client_remote_port(struct mgcp_client *mgcp);
Pau Espin Pedrol74d0e5c2020-09-02 17:19:20 +0200106uint32_t mgcp_client_remote_addr_n(struct mgcp_client *mgcp) OSMO_DEPRECATED("deprecated, returns 0");
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200107
Neels Hofmeyrac69ea92018-12-19 00:27:50 +0100108const char *mgcp_client_endpoint_domain(const struct mgcp_client *mgcp);
109const char *mgcp_client_rtpbridge_wildcard(const struct mgcp_client *mgcp);
Philipp Maier48635912020-06-25 20:16:22 +0200110const char *mgcp_client_e1_epname(void *ctx, const struct mgcp_client *mgcp, uint8_t trunk_id, uint8_t ts,
111 uint8_t rate, uint8_t offset);
Neels Hofmeyrac69ea92018-12-19 00:27:50 +0100112
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200113enum mgcp_connection_mode;
114
Neels Hofmeyrd95ab1e2017-09-22 00:52:54 +0200115extern const struct value_string mgcp_client_connection_mode_strs[];
116static inline const char *mgcp_client_cmode_name(enum mgcp_connection_mode mode)
117{
118 return get_value_string(mgcp_client_connection_mode_strs, mode);
119}
Philipp Maier704c4f02018-06-07 18:51:31 +0200120
121enum mgcp_codecs map_str_to_codec(const char *str);
neelsc053e072024-01-11 19:40:27 +0000122unsigned int map_codec_to_pt(const struct ptmap *ptmap, unsigned int ptmap_len,
123 enum mgcp_codecs codec);
124enum mgcp_codecs map_pt_to_codec(struct ptmap *ptmap, unsigned int ptmap_len,
125 unsigned int pt);
Philipp Maierdf9192e2021-09-03 17:50:51 +0200126
127const char *mgcp_client_name(const struct mgcp_client *mgcp);