blob: 81b42a6991894ecb2dc5cb251e86bc243ae6fa73 [file] [log] [blame]
Alexander Couzens841817e2020-11-19 00:41:29 +01001/*! \file frame_relay.h */
2
3/* (C) 2020 Harald Welte <laforge@gnumonks.org>
4 * (C) 2020 sysmocom - s.f.m.c. GmbH
5 * Author: Alexander Couzens <lynxis@fe80.eu>
6 *
7 * All Rights Reserved
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 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 General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 *
24 */
25
26#pragma once
27
28#include <osmocom/core/linuxlist.h>
29#include <osmocom/core/timer.h>
30#include <osmocom/core/utils.h>
31
32#include <stdint.h>
33
34struct osmo_tdef;
35struct msgb;
Harald Welte069967b2021-03-30 12:05:31 +020036struct vty;
Alexander Couzens841817e2020-11-19 00:41:29 +010037
38enum osmo_fr_role {
39 FR_ROLE_USER_EQUIPMENT,
40 FR_ROLE_NETWORK_EQUIPMENT,
41};
42
Alexander Couzens4f1128f2021-01-20 17:42:48 +010043/* 48.016 ยง 6.1.4.2 default maximum information field size of 1600 octets */
44#define FRAME_RELAY_MTU 1600
45/* FR DLC header is 2 byte */
46#define FRAME_RELAY_SDU (FRAME_RELAY_MTU - 2)
47
Alexander Couzens841817e2020-11-19 00:41:29 +010048extern const struct value_string osmo_fr_role_names[];
49
50static inline const char *osmo_fr_role_str(enum osmo_fr_role role) {
51 return get_value_string(osmo_fr_role_names, role);
52}
53
54struct osmo_fr_network {
55 struct llist_head links;
56
57 unsigned int n391; /* full status polling counter */
58 unsigned int n392; /* error threshold */
59 unsigned int n393; /* monitored events count */
60
61 struct osmo_tdef *T_defs; /* T391, T392 */
62};
63
64struct osmo_fr_dlc;
65
66/* Frame Relay Link */
67struct osmo_fr_link {
68 /* list in osmo_fr_network.links */
69 struct llist_head list;
70 struct osmo_fr_network *net;
71 enum osmo_fr_role role;
72 /* human-readable name */
73 const char *name;
74
75 /* value of the last received send sequence number field in the
76 * link integrity verification information element */
77 uint8_t last_rx_seq;
78
79 /* value of the send sequence number field of the last link
80 * integrity verification information element sent */
81 uint8_t last_tx_seq;
82
83 struct osmo_timer_list t391;
84 struct osmo_timer_list t392;
85
86 unsigned int polling_count;
87 unsigned int err_count;
88 unsigned int succeed;
89 /* the type of the last status enquiry */
90 uint8_t expected_rep;
91 bool state;
92
93 /* list of data link connections at this link */
94 struct llist_head dlc_list;
95
Harald Welte2cc1d4d2021-01-31 18:33:31 +010096 /* optional call-back to be called for each PDU received on an unknown DLC */
Alexander Couzens841817e2020-11-19 00:41:29 +010097 int (*unknown_dlc_rx_cb)(void *cb_data, struct msgb *msg);
98 void *unknown_dlc_rx_cb_data;
99
Harald Welte2cc1d4d2021-01-31 18:33:31 +0100100 /* call-back to be called for transmitting on the underlying hardware */
Alexander Couzens841817e2020-11-19 00:41:29 +0100101 int (*tx_cb)(void *data, struct msgb *msg);
Harald Welte2cc1d4d2021-01-31 18:33:31 +0100102 /* optional call-back to be called each time the status changes active/inactive */
103 void (*status_cb)(struct osmo_fr_link *link, void *cb_data, bool active);
104 void *cb_data;
Alexander Couzens841817e2020-11-19 00:41:29 +0100105};
106
107/* Frame Relay Data Link Connection */
108struct osmo_fr_dlc {
109 /* entry in fr_link.dlc_list */
110 struct llist_head list;
111 struct osmo_fr_link *link;
112
113 uint16_t dlci;
114
115 /* is this DLC marked active for traffic? */
116 bool active;
117 /* was this DLC newly added? */
118 bool add;
119 /* is this DLC about to be destroyed */
120 bool del;
121
Harald Weltea20248a2020-12-01 17:50:48 +0100122 /* The local state needs to be transferred to the USER;
123 * NET must wait until USER confirms it implicitly by a seq number check */
Alexander Couzens841817e2020-11-19 00:41:29 +0100124 bool state_send;
125
Harald Welte2cc1d4d2021-01-31 18:33:31 +0100126 /* call-back to be called for each PDU received on this DLC */
Alexander Couzens841817e2020-11-19 00:41:29 +0100127 int (*rx_cb)(void *cb_data, struct msgb *msg);
Harald Welte2cc1d4d2021-01-31 18:33:31 +0100128 /* optional call-back to be called each time the status changes active/inactive */
129 void (*status_cb)(struct osmo_fr_dlc *dlc, void *cb_data, bool active);
130 void *cb_data;
Alexander Couzens841817e2020-11-19 00:41:29 +0100131};
132
133/* allocate a frame relay network */
134struct osmo_fr_network *osmo_fr_network_alloc(void *ctx);
Harald Welte47cc55c2021-03-30 11:58:51 +0200135void osmo_fr_network_free(struct osmo_fr_network *net);
Harald Welte069967b2021-03-30 12:05:31 +0200136void osmo_fr_network_dump_vty(struct vty *vty, const struct osmo_fr_network *net);
Alexander Couzens841817e2020-11-19 00:41:29 +0100137
138/* allocate a frame relay link in a given network */
139struct osmo_fr_link *osmo_fr_link_alloc(struct osmo_fr_network *net, enum osmo_fr_role role, const char *name);
140
141/* free a frame link in a given network */
142void osmo_fr_link_free(struct osmo_fr_link *link);
143
144/* allocate a data link connectoin on a given framerelay link */
145struct osmo_fr_dlc *osmo_fr_dlc_alloc(struct osmo_fr_link *link, uint16_t dlci);
146void osmo_fr_dlc_free(struct osmo_fr_dlc *dlc);
147
148struct osmo_fr_dlc *osmo_fr_dlc_by_dlci(struct osmo_fr_link *link, uint16_t dlci);
149
150int osmo_fr_rx(struct msgb *msg);
151int osmo_fr_tx_dlc(struct msgb *msg);