libosmo-sigtran 2.2.1.115-81f7d
Osmocom SIGTRAN library
ss7_as.h
Go to the documentation of this file.
1#pragma once
2
3#include "config.h"
4
5#include <stdint.h>
6#include <osmocom/core/linuxlist.h>
7#include <osmocom/core/fsm.h>
8#include <osmocom/core/hashtable.h>
9#include <osmocom/core/msgb.h>
10#include <osmocom/core/tdef.h>
11#include <osmocom/netif/stream.h>
12
14
15#include "ss7_internal.h"
16#include "xua_msg.h"
17
18/***********************************************************************
19 * SS7 Application Server
20 ***********************************************************************/
21
23struct osmo_ss7_asp;
25struct xua_msg;
26
28 OSMO_SS7_PATCH_NONE, /* no patching of SCCP */
29 OSMO_SS7_PATCH_BOTH, /* patch both OPC and DPC into SCCP addresses */
30};
31
68#ifdef WITH_TCAP_LOADSHARING
69 SS7_AS_CTR_RX_TCAP_DECODED,
70 SS7_AS_CTR_RX_TCAP_FAILED,
71 SS7_AS_CTR_TCAP_ASP_SELECTED,
72 SS7_AS_CTR_TCAP_ASP_FALLBACK,
73 SS7_AS_CTR_TCAP_ASP_FAILED,
74 SS7_AS_CTR_TCAP_ASP_MISS,
75#endif /* WITH_TCAP_LOADSHARING */
76};
77
78/* when receiving an TCAP Continue/End/Abort which can't be assosiated to a node (either by sesssion tracking or by DTID over TCAP ranges,
79 * how to handle those */
83};
84extern struct value_string osmo_ss7_as_tcap_unroutable_vals[];
85
86#define NUM_AS_EXT_SLS 128
87typedef uint8_t as_ext_sls_t; /* range: 0-127, 7 bit */
89 /* ITU Q.704 4.2.1: "normal signallink link" */
91 /* ITU Q.704 4.2.1: "alternative signallink link" */
93};
94
96 /* Entry in (struct osmo_ss7_as*)->assoc_asp_list */
97 struct llist_head as_entry;
98 /* Entry in (struct osmo_ss7_asp*)->assoc_as_list */
99 struct llist_head asp_entry;
100 struct osmo_ss7_as *as; /* backpointer */
101 struct osmo_ss7_asp *asp; /* backpointer */
102};
103
106 struct llist_head list;
108
110 struct osmo_fsm_inst *fi;
111
114
117
119 struct rate_ctr_group *ctrg;
120
121 /* ASP loadshare: */
123
124#ifdef WITH_TCAP_LOADSHARING
125 struct {
126 /* optimisation: true if tid_ranges contains PCs (not only wildcards) */
127 bool contains_pc;
128 /* optimisation: true if tid_ranges contains SSNs (not only wildcards (0)) */
129 bool contains_ssn;
130 DECLARE_HASHTABLE(tid_ranges, 10);
131 /* gargabe collector timer */
132 struct osmo_timer_list gc_timer;
133 /* TODO: the hash tables size might not be optimal */
134 DECLARE_HASHTABLE(trans_track_own, 10);
135 DECLARE_HASHTABLE(trans_track_peer, 10);
137 } tcap;
138#endif /* WITH_TCAP_LOADSHARING */
139
140 /* used for load-sharing traffic mode (round robin implementation) */
143
144 struct llist_head assoc_asp_list; /* list of struct ss7_as_asp_assoc */
145 unsigned int num_assoc_asps; /* amount of ss7_as_asp_assoc/ss7_asp in assoc_asp_list */
146
147 struct {
148 char *name;
153 /* traffic mode was configured by VTY / config file */
155 /* traffic mode was configured by RKM (routing key management) or first ASPAC */
158 uint8_t qos_class;
159 struct {
162 uint32_t opc;
163 uint32_t dpc;
166
167 struct {
168 /* How many bits from ITU SLS field (starting from least-significant-bit)
169 * to skip for routing decisions.
170 * range 0-3, defaults to 0, which means take all 4 bits. */
171 uint8_t sls_shift;
172 /* Whether to generate a extended-SLS with OPC information, see opc_shift below. */
174 /* How many bits from ITU OPC field (starting from least-significant-bit)
175 * to skip for routing decisions (always takes 12 bits).
176 * range 0-2, defaults to 0, which means take least significant 12 bits. */
177 uint8_t opc_shift;
178#ifdef WITH_TCAP_LOADSHARING
179 /* Should we do load-sharing based on tcap ids? */
180 struct {
181 bool enabled;
182 unsigned int timeout_s;
183 enum ss7_as_tcap_unroutable unroutable_tcap_msg;
184 } tcap;
185#endif /* WITH_TCAP_LOADSHARING */
188};
189struct osmo_ss7_as *ss7_as_alloc(struct osmo_ss7_instance *inst, const char *name,
191struct osmo_ss7_asp *ss7_as_select_asp(struct osmo_ss7_as *as, const struct xua_msg *xua);
192
193int ss7_as_add_asp(struct osmo_ss7_as *as, struct osmo_ss7_asp *asp);
194int ss7_as_del_asp(struct osmo_ss7_as *as, struct osmo_ss7_asp *asp);
195int ss7_as_get_local_role(const struct osmo_ss7_as *as);
196struct osmo_ss7_asp *ss7_as_find_asp_by_remote_asp_id(const struct osmo_ss7_as *as, uint32_t asp_id,
197 const struct osmo_ss7_asp *excl_asp);
199
200void ss7_as_del_asp_update_llist_round_robin(struct osmo_ss7_as *as, struct osmo_ss7_asp *asp, struct ss7_as_asp_assoc **state);
201#define ss7_as_asp_assoc_llist_round_robin(as, state) \
202 ss7_llist_round_robin(&(as)->assoc_asp_list, (void **)state, struct ss7_as_asp_assoc, as_entry)
203
204#define LOGPAS(as, subsys, level, fmt, args ...) \
205 _LOGSS7((as)->inst, subsys, level, "AS(%s) " fmt, (as)->cfg.name, ## args)
osmo_ss7_asp_protocol
Definition: osmo_ss7.h:157
osmo_ss7_as_traffic_mode
Definition: osmo_ss7.h:183
osmo_ss7_as_patch_sccp_mode
Definition: ss7_as.h:27
@ OSMO_SS7_PATCH_BOTH
Definition: ss7_as.h:29
@ OSMO_SS7_PATCH_NONE
Definition: ss7_as.h:28
void ss7_as_loadshare_binding_table_reset(struct osmo_ss7_as *as)
Definition: ss7_as.c:504
struct value_string osmo_ss7_as_tcap_unroutable_vals[]
Definition: ss7_as.c:96
uint8_t as_ext_sls_t
Definition: ss7_as.h:87
int ss7_as_get_local_role(const struct osmo_ss7_as *as)
Definition: ss7_as.c:414
#define NUM_AS_EXT_SLS
Definition: ss7_as.h:86
int ss7_as_add_asp(struct osmo_ss7_as *as, struct osmo_ss7_asp *asp)
Add given ASP to given AS.
Definition: ss7_as.c:214
struct osmo_ss7_as * ss7_as_alloc(struct osmo_ss7_instance *inst, const char *name, enum osmo_ss7_asp_protocol proto)
Allocate an Application Server.
Definition: ss7_as.c:163
struct osmo_ss7_asp * ss7_as_select_asp(struct osmo_ss7_as *as, const struct xua_msg *xua)
Select an AS to transmit a message, according to AS configuration and ASP availability.
Definition: ss7_as.c:640
ss7_as_ctr
Definition: ss7_as.h:32
@ SS7_AS_CTR_TX_MSU_SLS_8
Definition: ss7_as.h:60
@ SS7_AS_CTR_TX_MSU_SLS_15
Definition: ss7_as.h:67
@ SS7_AS_CTR_RX_MSU_SLS_10
Definition: ss7_as.h:45
@ SS7_AS_CTR_RX_MSU_TOTAL
Definition: ss7_as.h:34
@ SS7_AS_CTR_TX_MSU_SLS_14
Definition: ss7_as.h:66
@ SS7_AS_CTR_TX_MSU_SLS_7
Definition: ss7_as.h:59
@ SS7_AS_CTR_RX_MSU_SLS_15
Definition: ss7_as.h:50
@ SS7_AS_CTR_RX_MSU_SLS_1
Definition: ss7_as.h:36
@ SS7_AS_CTR_TX_MSU_SLS_5
Definition: ss7_as.h:57
@ SS7_AS_CTR_RX_MSU_SLS_2
Definition: ss7_as.h:37
@ SS7_AS_CTR_TX_MSU_SLS_3
Definition: ss7_as.h:55
@ SS7_AS_CTR_RX_MSU_SLS_5
Definition: ss7_as.h:40
@ SS7_AS_CTR_TX_MSU_SLS_10
Definition: ss7_as.h:62
@ SS7_AS_CTR_RX_MSU_SLS_8
Definition: ss7_as.h:43
@ SS7_AS_CTR_TX_MSU_SLS_12
Definition: ss7_as.h:64
@ SS7_AS_CTR_RX_MSU_SLS_4
Definition: ss7_as.h:39
@ SS7_AS_CTR_TX_MSU_SLS_9
Definition: ss7_as.h:61
@ SS7_AS_CTR_TX_MSU_SLS_2
Definition: ss7_as.h:54
@ SS7_AS_CTR_TX_MSU_SLS_0
Definition: ss7_as.h:52
@ SS7_AS_CTR_TX_MSU_TOTAL
Definition: ss7_as.h:51
@ SS7_AS_CTR_RX_MSU_SLS_7
Definition: ss7_as.h:42
@ SS7_AS_CTR_RX_MSU_DISCARD
Definition: ss7_as.h:33
@ SS7_AS_CTR_TX_MSU_SLS_11
Definition: ss7_as.h:63
@ SS7_AS_CTR_TX_MSU_SLS_6
Definition: ss7_as.h:58
@ SS7_AS_CTR_RX_MSU_SLS_6
Definition: ss7_as.h:41
@ SS7_AS_CTR_RX_MSU_SLS_14
Definition: ss7_as.h:49
@ SS7_AS_CTR_RX_MSU_SLS_9
Definition: ss7_as.h:44
@ SS7_AS_CTR_TX_MSU_SLS_13
Definition: ss7_as.h:65
@ SS7_AS_CTR_RX_MSU_SLS_13
Definition: ss7_as.h:48
@ SS7_AS_CTR_RX_MSU_SLS_12
Definition: ss7_as.h:47
@ SS7_AS_CTR_TX_MSU_SLS_1
Definition: ss7_as.h:53
@ SS7_AS_CTR_RX_MSU_SLS_3
Definition: ss7_as.h:38
@ SS7_AS_CTR_RX_MSU_SLS_11
Definition: ss7_as.h:46
@ SS7_AS_CTR_RX_MSU_SLS_0
Definition: ss7_as.h:35
@ SS7_AS_CTR_TX_MSU_SLS_4
Definition: ss7_as.h:56
void ss7_as_del_asp_update_llist_round_robin(struct osmo_ss7_as *as, struct osmo_ss7_asp *asp, struct ss7_as_asp_assoc **state)
Definition: ss7_as.c:275
struct osmo_ss7_asp * ss7_as_find_asp_by_remote_asp_id(const struct osmo_ss7_as *as, uint32_t asp_id, const struct osmo_ss7_asp *excl_asp)
Find ASP with a given announced remote ASP Id.
Definition: ss7_as.c:394
int ss7_as_del_asp(struct osmo_ss7_as *as, struct osmo_ss7_asp *asp)
Delete given ASP from given AS.
Definition: ss7_as.c:298
ss7_as_tcap_unroutable
Definition: ss7_as.h:80
@ SS7_AS_TCAP_UNROUTABLE_REJECT_UDTS
Definition: ss7_as.h:81
@ SS7_AS_TCAP_UNROUTABLE_LOAD_SHARE_AS
reject the unroutable TCAP message with a UDTS
Definition: ss7_as.h:82
Definition: mtp_sap.h:42
Definition: ss7_as.h:88
struct osmo_ss7_asp * normal_asp
Definition: ss7_as.h:90
struct osmo_ss7_asp * alt_asp
Definition: ss7_as.h:92
Definition: ss7_as.h:104
struct ss7_as_asp_assoc * last_asp_idx_sent
Definition: ss7_as.h:142
struct osmo_ss7_routing_key routing_key
Definition: ss7_as.h:151
unsigned int num_assoc_asps
Definition: ss7_as.h:145
uint8_t opc_shift
Definition: ss7_as.h:177
uint8_t sls_shift
Definition: ss7_as.h:171
uint32_t recovery_timeout_msec
Definition: ss7_as.h:157
struct osmo_ss7_as_esls_entry aesls_table[NUM_AS_EXT_SLS]
Definition: ss7_as.h:122
bool opc_enabled
Definition: ss7_as.h:160
struct llist_head list
entry in 'ref osmo_ss7_instance.as_list
Definition: ss7_as.h:106
char * description
Definition: ss7_as.h:149
struct ss7_as_asp_assoc * last_asp_idx_assigned
Definition: ss7_as.h:141
bool rkm_dyn_allocated
Were we dynamically allocated by RKM?
Definition: ss7_as.h:113
struct osmo_ss7_as::@23::@25 loadshare
struct rate_ctr_group * ctrg
Rate Counter Group.
Definition: ss7_as.h:119
char * name
Definition: ss7_as.h:148
uint32_t opc
Definition: ss7_as.h:162
bool mode_set_by_vty
Definition: ss7_as.h:154
struct osmo_fsm_inst * fi
AS FSM.
Definition: ss7_as.h:110
bool simple_client_allocated
Were we allocated by "simple client" support?
Definition: ss7_as.h:116
uint32_t dpc
Definition: ss7_as.h:163
bool opc_sls
Definition: ss7_as.h:173
enum osmo_ss7_as_traffic_mode mode
Definition: ss7_as.h:152
struct llist_head assoc_asp_list
Definition: ss7_as.h:144
enum osmo_ss7_asp_protocol proto
Definition: ss7_as.h:150
enum osmo_ss7_as_patch_sccp_mode sccp_mode
Definition: ss7_as.h:164
struct osmo_ss7_instance * inst
Definition: ss7_as.h:107
struct osmo_ss7_as::@23 cfg
bool mode_set_by_peer
Definition: ss7_as.h:156
uint8_t qos_class
Definition: ss7_as.h:158
struct osmo_ss7_as::@23::@24 pc_override
bool dpc_enabled
Definition: ss7_as.h:161
Definition: ss7_asp.h:55
Definition: ss7_instance.h:47
Definition: osmo_ss7.h:142
Definition: ss7_as.h:95
struct osmo_ss7_as * as
Definition: ss7_as.h:100
struct llist_head asp_entry
Definition: ss7_as.h:99
struct osmo_ss7_asp * asp
Definition: ss7_as.h:101
struct llist_head as_entry
Definition: ss7_as.h:97
Definition: xua_msg.h:31