blob: 0e9f7d685059fdf4e9ff279c6f7fd85513444c64 [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Harald Welte9ba50052010-03-14 15:45:01 +08002
Harald Welte8f9a3ee2010-05-02 11:26:34 +02003#include <stdint.h>
Harald Welted11c0592012-09-06 21:57:11 +02004#include <osmocom/core/timer.h>
5#include <osmocom/core/linuxlist.h>
Harald Welte8f9a3ee2010-05-02 11:26:34 +02006
Harald Welte73952e32012-06-16 14:59:56 +08007#include <osmocom/gsm/gsm48.h>
Harald Welte15a36432012-06-17 12:16:31 +08008#include <osmocom/gsm/prim.h>
Harald Welte73952e32012-06-16 14:59:56 +08009
Harald Welte8648e492012-06-17 13:12:51 +080010#include <osmocom/gprs/protocol/gsm_08_18.h>
11
Harald Welteaf086782010-05-11 10:01:17 +020012/* gprs_bssgp_util.c */
13extern struct gprs_ns_inst *bssgp_nsi;
14struct msgb *bssgp_msgb_alloc(void);
Jacob Erlbeckf78ec5c2015-11-17 09:53:23 +010015struct msgb *bssgp_msgb_copy(const struct msgb *msg, const char *name);
Harald Welteaf086782010-05-11 10:01:17 +020016const char *bssgp_cause_str(enum gprs_bssgp_cause cause);
Maxc0d9a6c2016-03-09 12:29:23 +010017const char *bssgp_pdu_str(enum bssgp_pdu_type pdu);
Harald Welteaf086782010-05-11 10:01:17 +020018/* Transmit a simple response such as BLOCK/UNBLOCK/RESET ACK/NACK */
19int bssgp_tx_simple_bvci(uint8_t pdu_type, uint16_t nsei,
20 uint16_t bvci, uint16_t ns_bvci);
21/* Chapter 10.4.14: Status */
22int bssgp_tx_status(uint8_t cause, uint16_t *bvci, struct msgb *orig_msg);
23
Harald Welte15a36432012-06-17 12:16:31 +080024enum bssgp_prim {
25 PRIM_BSSGP_DL_UD,
26 PRIM_BSSGP_UL_UD,
27 PRIM_BSSGP_PTM_UD,
28
29 PRIM_BSSGP_GMM_SUSPEND,
30 PRIM_BSSGP_GMM_RESUME,
31 PRIM_BSSGP_GMM_PAGING,
32
33 PRIM_NM_FLUSH_LL,
34 PRIM_NM_LLC_DISCARDED,
35 PRIM_NM_BVC_RESET,
36 PRIM_NM_BVC_BLOCK,
37 PRIM_NM_BVC_UNBLOCK,
Jacob Erlbeck36153dc2015-03-17 10:21:17 +010038 PRIM_NM_STATUS,
Harald Welte15a36432012-06-17 12:16:31 +080039};
40
41struct osmo_bssgp_prim {
42 struct osmo_prim_hdr oph;
43
44 /* common fields */
45 uint16_t nsei;
46 uint16_t bvci;
47 uint32_t tlli;
48 struct tlv_parsed *tp;
49 struct gprs_ra_id *ra_id;
50
51 /* specific fields */
52 union {
53 struct {
Holger Hans Peter Freytherd296f422012-08-03 09:59:20 +020054 uint8_t suspend_ref;
Harald Welte15a36432012-06-17 12:16:31 +080055 } resume;
56 } u;
57};
58
Harald Welteaf086782010-05-11 10:01:17 +020059/* gprs_bssgp.c */
60
Neels Hofmeyr87e45502017-06-20 00:17:59 +020061/*! BSSGP flow control (SGSN side) According to Section 8.2 */
Harald Welted11c0592012-09-06 21:57:11 +020062struct bssgp_flow_control {
Harald Weltebb826222012-09-07 10:22:01 +020063 uint32_t bucket_size_max; /*!< maximum size of the bucket (octets) */
64 uint32_t bucket_leak_rate; /*!< leak rate of the bucket (octets/sec) */
Harald Welted11c0592012-09-06 21:57:11 +020065
66 uint32_t bucket_counter; /*!< number of tokens in the bucket */
67 struct timeval time_last_pdu; /*!< timestamp of last PDU sent */
68
69 /* the built-in queue */
Harald Weltebb826222012-09-07 10:22:01 +020070 uint32_t max_queue_depth; /*!< how many packets to queue (mgs) */
71 uint32_t queue_depth; /*!< current length of queue (msgs) */
Harald Welted11c0592012-09-06 21:57:11 +020072 struct llist_head queue; /*!< linked list of msgb's */
73 struct osmo_timer_list timer; /*!< timer-based dequeueing */
74
75 /*! callback to be called at output of flow control */
76 int (*out_cb)(struct bssgp_flow_control *fc, struct msgb *msg,
77 uint32_t llc_pdu_len, void *priv);
78};
79
Harald Weltea78b9c22010-05-17 23:02:42 +020080#define BVC_S_BLOCKED 0x0001
81
82/* The per-BTS context that we keep on the SGSN side of the BSSGP link */
83struct bssgp_bvc_ctx {
84 struct llist_head list;
85
Harald Welteeb3ccf62011-11-25 08:15:42 +010086 struct gprs_ra_id ra_id; /*!< parsed RA ID of the remote BTS */
87 uint16_t cell_id; /*!< Cell ID of the remote BTS */
Harald Weltea78b9c22010-05-17 23:02:42 +020088
89 /* NSEI and BVCI of underlying Gb link. Together they
90 * uniquely identify a link to a BTS (5.4.4) */
91 uint16_t bvci;
92 uint16_t nsei;
93
94 uint32_t state;
95
96 struct rate_ctr_group *ctrg;
97
Harald Welted8b47692012-09-07 11:29:32 +020098 struct bssgp_flow_control *fc;
Harald Weltebb826222012-09-07 10:22:01 +020099 /*! default maximum size of per-MS bucket in octets */
Harald Welted11c0592012-09-06 21:57:11 +0200100 uint32_t bmax_default_ms;
Harald Weltebb826222012-09-07 10:22:01 +0200101 /*! default bucket leak rate of per-MS bucket in octests/s */
Harald Welted11c0592012-09-06 21:57:11 +0200102 uint32_t r_default_ms;
103
Harald Weltea78b9c22010-05-17 23:02:42 +0200104 /* we might want to add this as a shortcut later, avoiding the NSVC
105 * lookup for every packet, similar to a routing cache */
106 //struct gprs_nsvc *nsvc;
107};
108extern struct llist_head bssgp_bvc_ctxts;
109/* Find a BTS Context based on parsed RA ID and Cell ID */
110struct bssgp_bvc_ctx *btsctx_by_raid_cid(const struct gprs_ra_id *raid, uint16_t cid);
111/* Find a BTS context based on BVCI+NSEI tuple */
112struct bssgp_bvc_ctx *btsctx_by_bvci_nsei(uint16_t bvci, uint16_t nsei);
113
Harald Welte85fc3142011-11-25 08:58:40 +0100114#define BVC_F_BLOCKED 0x0001
115
116enum bssgp_ctr {
117 BSSGP_CTR_PKTS_IN,
118 BSSGP_CTR_PKTS_OUT,
119 BSSGP_CTR_BYTES_IN,
120 BSSGP_CTR_BYTES_OUT,
121 BSSGP_CTR_BLOCKED,
122 BSSGP_CTR_DISCARDED,
Jacob Erlbeck36153dc2015-03-17 10:21:17 +0100123 BSSGP_CTR_STATUS,
Harald Welte85fc3142011-11-25 08:58:40 +0100124};
125
126
Pablo Neira Ayusoff663232011-03-22 16:47:59 +0100127#include <osmocom/gsm/tlv.h>
Harald Welte605ac5d2012-06-16 16:09:52 +0800128#include <osmocom/gprs/gprs_msgb.h>
Harald Welte3771d092010-04-30 20:26:32 +0200129
Harald Welte61112342010-05-13 19:25:59 +0200130/* BSSGP-UL-UNITDATA.ind */
Harald Weltede4599c2012-06-17 13:04:02 +0800131int bssgp_rcvmsg(struct msgb *msg);
Harald Welte61112342010-05-13 19:25:59 +0200132
133/* BSSGP-DL-UNITDATA.req */
Harald Welte8ef54d12012-06-17 09:31:16 +0800134struct bssgp_lv {
135 uint16_t len;
136 uint8_t *v;
137};
138/* parameters for BSSGP downlink userdata transmission */
139struct bssgp_dl_ud_par {
140 uint32_t *tlli;
141 char *imsi;
Harald Welted11c0592012-09-06 21:57:11 +0200142 struct bssgp_flow_control *fc;
Harald Welte8ef54d12012-06-17 09:31:16 +0800143 uint16_t drx_parms;
144 /* FIXME: priority */
145 struct bssgp_lv ms_ra_cap;
146 uint8_t qos_profile[3];
147};
Harald Weltede4599c2012-06-17 13:04:02 +0800148int bssgp_tx_dl_ud(struct msgb *msg, uint16_t pdu_lifetime,
149 struct bssgp_dl_ud_par *dup);
Harald Welte61112342010-05-13 19:25:59 +0200150
Harald Weltea2ca4ed2010-05-02 11:54:55 +0200151uint16_t bssgp_parse_cell_id(struct gprs_ra_id *raid, const uint8_t *buf);
Harald Welte85fc3142011-11-25 08:58:40 +0100152int bssgp_create_cell_id(uint8_t *buf, const struct gprs_ra_id *raid,
153 uint16_t cid);
Harald Welte9ba50052010-03-14 15:45:01 +0800154
Harald Welte3771d092010-04-30 20:26:32 +0200155/* Wrapper around TLV parser to parse BSSGP IEs */
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200156static inline int bssgp_tlv_parse(struct tlv_parsed *tp, uint8_t *buf, int len)
Harald Welte3771d092010-04-30 20:26:32 +0200157{
158 return tlv_parse(tp, &tvlv_att_def, buf, len, 0, 0);
159}
160
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200161/*! BSSGP Paging mode */
Harald Welte68b4f032010-06-09 16:22:28 +0200162enum bssgp_paging_mode {
163 BSSGP_PAGING_PS,
164 BSSGP_PAGING_CS,
165};
166
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200167/*! BSSGP Paging scope */
Harald Welte68b4f032010-06-09 16:22:28 +0200168enum bssgp_paging_scope {
Harald Welteeb3ccf62011-11-25 08:15:42 +0100169 BSSGP_PAGING_BSS_AREA, /*!< all cells in BSS */
170 BSSGP_PAGING_LOCATION_AREA, /*!< all cells in LA */
171 BSSGP_PAGING_ROUTEING_AREA, /*!< all cells in RA */
172 BSSGP_PAGING_BVCI, /*!< one cell */
Harald Welte68b4f032010-06-09 16:22:28 +0200173};
174
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200175/*! BSSGP paging information */
Harald Welte68b4f032010-06-09 16:22:28 +0200176struct bssgp_paging_info {
Harald Welteeb3ccf62011-11-25 08:15:42 +0100177 enum bssgp_paging_mode mode; /*!< CS or PS paging */
178 enum bssgp_paging_scope scope; /*!< bssgp_paging_scope */
179 struct gprs_ra_id raid; /*!< RA Identifier */
180 uint16_t bvci; /*!< BVCI */
Harald Welte85fc3142011-11-25 08:58:40 +0100181 char *imsi; /*!< IMSI, if any */
Harald Welteeb3ccf62011-11-25 08:15:42 +0100182 uint32_t *ptmsi; /*!< P-TMSI, if any */
183 uint16_t drx_params; /*!< DRX parameters */
184 uint8_t qos[3]; /*!< QoS parameters */
Harald Welte68b4f032010-06-09 16:22:28 +0200185};
186
187/* Send a single GMM-PAGING.req to a given NSEI/NS-BVCI */
Harald Weltede4599c2012-06-17 13:04:02 +0800188int bssgp_tx_paging(uint16_t nsei, uint16_t ns_bvci,
189 struct bssgp_paging_info *pinfo);
Harald Welte68b4f032010-06-09 16:22:28 +0200190
Harald Weltebb826222012-09-07 10:22:01 +0200191void bssgp_fc_init(struct bssgp_flow_control *fc,
192 uint32_t bucket_size_max, uint32_t bucket_leak_rate,
193 uint32_t max_queue_depth,
194 int (*out_cb)(struct bssgp_flow_control *fc, struct msgb *msg,
195 uint32_t llc_pdu_len, void *priv));
196
Harald Welted11c0592012-09-06 21:57:11 +0200197/* input function of the flow control implementation, called first
198 * for the MM flow control, and then as the MM flow control output
199 * callback in order to perform BVC flow control */
200int bssgp_fc_in(struct bssgp_flow_control *fc, struct msgb *msg,
201 uint32_t llc_pdu_len, void *priv);
202
203/* Initialize the Flow Control parameters for a new MS according to
204 * default values for the BVC specified by BVCI and NSEI */
205int bssgp_fc_ms_init(struct bssgp_flow_control *fc_ms, uint16_t bvci,
Harald Weltebb826222012-09-07 10:22:01 +0200206 uint16_t nsei, uint32_t max_queue_depth);
Harald Welted11c0592012-09-06 21:57:11 +0200207
Harald Weltefdc73882010-05-18 08:02:36 +0200208/* gprs_bssgp_vty.c */
Harald Weltede4599c2012-06-17 13:04:02 +0800209int bssgp_vty_init(void);
210void bssgp_set_log_ss(int ss);
Harald Weltefdc73882010-05-18 08:02:36 +0200211
Harald Welte15a36432012-06-17 12:16:31 +0800212int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx);