aboutsummaryrefslogtreecommitdiffstats
path: root/include/linkset.h
blob: 1385cf1e595a2843a69e535413c2ee42330250f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* Everything related to linksets */
/*
 * (C) 2010-2013 by Holger Hans Peter Freyther <zecke@selfish.org>
 * (C) 2010-2013 by On-Waves
 * 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 <http://www.gnu.org/licenses/>.
 *
 */

#ifndef linkset_h
#define linkset_h

#include <osmocom/core/linuxlist.h>
#include <osmocom/core/timer.h>

#include <stdint.h>

struct msgb;

/**
 * The state of the mtp_link in terms of layer3 and upwards
 */
struct mtp_link_set {
	struct llist_head entry;
	int nr;
	char *name;

	/*
	 * Callbacks for the SS7 application
	 */
	void (*on_down) (struct mtp_link_set *set);
	void (*on_up) (struct mtp_link_set *set);
	void (*on_sccp) (struct mtp_link_set *set, struct msgb *msg, int sls);
	void (*on_isup) (struct mtp_link_set *set, struct msgb *msg, int sls);


	/**
	 * Routing is very limited. We can only forward to one
	 * other STP/Endpoint. For ISUP and SCCP we can statically
	 * send it to another destination. We need to follow Q.704
	 * more properly here.
	 * DPC/OPC are the ones for the linkset,
	 * sccp_dpc/isup_dpc are where we will send SCCP/ISUP messages
	 * sccp_opc/isup_opc are what we announce in the TFP
	 */
	int dpc, opc;
	int sccp_dpc, isup_dpc;
	int sccp_opc, isup_opc;
	int ni;
	int spare;


	/* internal state */
	/* the MTP1 link is up */
	int available;
	int running;
	int sccp_up;
	int linkset_up;

	int last_sls;

	struct llist_head links;
	int nr_links;
	struct mtp_link *slc[16];
	int sltm_once;

	/* ssn map */
	int supported_ssn[256];

	int pcap_fd;

	/* special handling */
	int pass_all_isup;

	/* statistics */
	struct rate_ctr_group *ctrg;

	/* statistics for routing */
	int timeout_t18;
	int timeout_t20;
	struct osmo_timer_list T18;
	struct osmo_timer_list T20;

	/* custom data */
	struct bsc_data *bsc;
	struct ss7_application *app;
};

void mtp_link_set_stop(struct mtp_link_set *set);
void mtp_link_set_reset(struct mtp_link_set *set);
int mtp_link_set_data(struct mtp_link *link, struct msgb *msg);
int mtp_link_handle_data(struct mtp_link *link, struct msgb *msg);
int mtp_link_set_submit_sccp_data(struct mtp_link_set *set, int sls, const uint8_t *data, unsigned int length);
int mtp_link_set_submit_isup_data(struct mtp_link_set *set, int sls, const uint8_t *data, unsigned int length);

void mtp_link_set_init_slc(struct mtp_link_set *set);

/* link management */
struct mtp_link_set *mtp_link_set_alloc(struct bsc_data *bsc);
struct mtp_link_set *mtp_link_set_num(struct bsc_data *bsc, int num);

/* to be implemented for MSU sending */
int mtp_link_set_send(struct mtp_link_set *set, struct msgb *msg);

/* internal routines */
struct msgb *mtp_msg_alloc(struct mtp_link_set *set);


#endif