blob: 7ee68cc79b2e43015704dfee74787745d6bca406 [file] [log] [blame]
Harald Welte9b455bf2010-03-14 15:45:01 +08001#ifndef _GPRS_SGSN_H
2#define _GPRS_SGSN_H
3
Harald Welteeaa614c2010-05-02 11:26:34 +02004#include <stdint.h>
Harald Welted193cb32010-05-17 22:58:03 +02005#include <netinet/in.h>
6
Holger Hans Peter Freyther26d0fe32012-01-06 17:29:06 +01007#include <osmocom/core/timer.h>
8
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +01009#include <osmocom/gsm/gsm48.h>
Harald Welteeaa614c2010-05-02 11:26:34 +020010
Harald Welte496aee42010-06-30 19:59:55 +020011#include <osmocom/crypt/gprs_cipher.h>
12
Harald Welte2720e732010-05-17 00:44:57 +020013#define GSM_IMSI_LENGTH 17
14#define GSM_IMEI_LENGTH 17
15#define GSM_EXTENSION_LENGTH 15
16
Harald Welte807a5d82010-06-01 11:53:01 +020017struct gprs_llc_lle;
Holger Hans Peter Freythera2730302014-03-23 18:08:26 +010018struct ctrl_handle;
Harald Welte807a5d82010-06-01 11:53:01 +020019
Harald Welte9b455bf2010-03-14 15:45:01 +080020/* TS 04.08 4.1.3.3 GMM mobility management states on the network side */
21enum gprs_mm_state {
22 GMM_DEREGISTERED, /* 4.1.3.3.1.1 */
23 GMM_COMMON_PROC_INIT, /* 4.1.3.3.1.2 */
24 GMM_REGISTERED_NORMAL, /* 4.1.3.3.2.1 */
25 GMM_REGISTERED_SUSPENDED, /* 4.1.3.3.2.2 */
26 GMM_DEREGISTERED_INIT, /* 4.1.3.3.1.4 */
27};
28
Harald Weltec2e8cc42010-05-31 20:23:38 +020029enum gprs_mm_ctr {
Harald Welte8acd88f2010-05-18 10:57:45 +020030 GMM_CTR_PKTS_SIG_IN,
31 GMM_CTR_PKTS_SIG_OUT,
32 GMM_CTR_PKTS_UDATA_IN,
33 GMM_CTR_PKTS_UDATA_OUT,
34 GMM_CTR_BYTES_UDATA_IN,
35 GMM_CTR_BYTES_UDATA_OUT,
36 GMM_CTR_PDP_CTX_ACT,
37 GMM_CTR_SUSPEND,
38 GMM_CTR_PAGING_PS,
39 GMM_CTR_PAGING_CS,
40 GMM_CTR_RA_UPDATE,
41};
42
Harald Welteefbdee92010-06-10 00:20:12 +020043enum gprs_pdp_ctx {
44 PDP_CTR_PKTS_UDATA_IN,
45 PDP_CTR_PKTS_UDATA_OUT,
46 PDP_CTR_BYTES_UDATA_IN,
47 PDP_CTR_BYTES_UDATA_OUT,
48};
49
Harald Weltec2e8cc42010-05-31 20:23:38 +020050enum gprs_t3350_mode {
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +010051 GMM_T3350_MODE_NONE,
Harald Weltec2e8cc42010-05-31 20:23:38 +020052 GMM_T3350_MODE_ATT,
53 GMM_T3350_MODE_RAU,
54 GMM_T3350_MODE_PTMSI_REALL,
55};
56
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +020057/* Authorization/ACL handling */
58enum sgsn_auth_state {
59 SGSN_AUTH_UNKNOWN,
60 SGSN_AUTH_ACCEPTED,
61 SGSN_AUTH_REJECTED
62};
63
Harald Welte9b455bf2010-03-14 15:45:01 +080064#define MS_RADIO_ACCESS_CAPA
65
66/* According to TS 03.60, Table 5: SGSN MM and PDP Contexts */
Harald Weltef533e132010-05-01 16:45:46 +020067/* Extended by 3GPP TS 23.060, Table 6: SGSN MM and PDP Contexts */
Harald Welte9b455bf2010-03-14 15:45:01 +080068struct sgsn_mm_ctx {
69 struct llist_head list;
70
71 char imsi[GSM_IMSI_LENGTH];
72 enum gprs_mm_state mm_state;
Harald Welteeaa614c2010-05-02 11:26:34 +020073 uint32_t p_tmsi;
Harald Weltec2e8cc42010-05-31 20:23:38 +020074 uint32_t p_tmsi_old; /* old P-TMSI before new is confirmed */
Harald Welteeaa614c2010-05-02 11:26:34 +020075 uint32_t p_tmsi_sig;
Harald Welte9b455bf2010-03-14 15:45:01 +080076 char imei[GSM_IMEI_LENGTH];
Harald Weltef533e132010-05-01 16:45:46 +020077 /* Opt: Software Version Numbber / TS 23.195 */
Harald Welte9b455bf2010-03-14 15:45:01 +080078 char msisdn[GSM_EXTENSION_LENGTH];
79 struct gprs_ra_id ra;
Harald Welteeaa614c2010-05-02 11:26:34 +020080 uint16_t cell_id;
81 uint32_t cell_id_age;
82 uint16_t sac; /* Iu: Service Area Code */
83 uint32_t sac_age;/* Iu: Service Area Code age */
Harald Welte9b455bf2010-03-14 15:45:01 +080084 /* VLR number */
Harald Welteeaa614c2010-05-02 11:26:34 +020085 uint32_t new_sgsn_addr;
Harald Welte9b455bf2010-03-14 15:45:01 +080086 /* Authentication Triplets */
87 /* Kc */
Harald Weltef533e132010-05-01 16:45:46 +020088 /* Iu: CK, IK, KSI */
Harald Welte9b455bf2010-03-14 15:45:01 +080089 /* CKSN */
90 enum gprs_ciph_algo ciph_algo;
91 struct {
Harald Welteeaa614c2010-05-02 11:26:34 +020092 uint8_t len;
Alexander Chemeris84402c02013-07-03 10:12:23 +040093 uint8_t buf[50]; /* GSM 04.08 10.5.5.12a, extended in TS 24.008 */
Harald Welte9b455bf2010-03-14 15:45:01 +080094 } ms_radio_access_capa;
95 struct {
Harald Welteeaa614c2010-05-02 11:26:34 +020096 uint8_t len;
Alexander Chemeris84402c02013-07-03 10:12:23 +040097 uint8_t buf[8]; /* GSM 04.08 10.5.5.12, extended in TS 24.008 */
Harald Welte9b455bf2010-03-14 15:45:01 +080098 } ms_network_capa;
Harald Welteeaa614c2010-05-02 11:26:34 +020099 uint16_t drx_parms;
Harald Welte9b455bf2010-03-14 15:45:01 +0800100 int mnrg; /* MS reported to HLR? */
101 int ngaf; /* MS reported to MSC/VLR? */
102 int ppf; /* paging for GPRS + non-GPRS? */
103 /* SMS Parameters */
104 int recovery;
Harald Welteba850c52010-05-02 14:40:32 +0200105 uint8_t radio_prio_sms;
Harald Welte9b455bf2010-03-14 15:45:01 +0800106
107 struct llist_head pdp_list;
108
109 /* Additional bits not present in the GSM TS */
Harald Welte807a5d82010-06-01 11:53:01 +0200110 struct gprs_llc_llme *llme;
Harald Welteeaa614c2010-05-02 11:26:34 +0200111 uint32_t tlli;
Harald Welte807a5d82010-06-01 11:53:01 +0200112 uint32_t tlli_new;
Harald Welte6abf94e2010-05-18 10:35:06 +0200113 uint16_t nsei;
114 uint16_t bvci;
Harald Welte8acd88f2010-05-18 10:57:45 +0200115 struct rate_ctr_group *ctrg;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200116 struct osmo_timer_list timer;
Harald Weltec2e8cc42010-05-31 20:23:38 +0200117 unsigned int T; /* Txxxx number */
118 unsigned int num_T_exp; /* number of consecutive T expirations */
119
120 enum gprs_t3350_mode t3350_mode;
121 uint8_t t3370_id_type;
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100122 uint8_t pending_req; /* the request's message type */
123 /* TODO: There isn't much semantic difference between t3350_mode
124 * (refers to the timer) and pending_req (refers to the procedure),
125 * where mm->T == 3350 => mm->t3350_mode == f(mm->pending_req). Check
126 * whether one of them can be dropped. */
Jacob Erlbeck0c06f982014-10-29 22:12:20 +0100127
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200128 enum sgsn_auth_state auth_state;
Harald Welte9b455bf2010-03-14 15:45:01 +0800129};
130
Daniel Willmannb15ceec2014-09-03 15:57:49 +0200131#define LOGMMCTXP(level, mm, fmt, args...) \
Jacob Erlbeck5a38f642014-10-21 13:09:55 +0200132 LOGP(DMM, level, "MM(%s/%08x) " fmt, (mm) ? (mm)->imsi : "---", \
133 (mm) ? (mm)->p_tmsi : GSM_RESERVED_TMSI, ## args)
Daniel Willmannb15ceec2014-09-03 15:57:49 +0200134
Harald Welte9b455bf2010-03-14 15:45:01 +0800135/* look-up a SGSN MM context based on TLLI + RAI */
Harald Welteeaa614c2010-05-02 11:26:34 +0200136struct sgsn_mm_ctx *sgsn_mm_ctx_by_tlli(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800137 const struct gprs_ra_id *raid);
Harald Welteeaa614c2010-05-02 11:26:34 +0200138struct sgsn_mm_ctx *sgsn_mm_ctx_by_ptmsi(uint32_t tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800139struct sgsn_mm_ctx *sgsn_mm_ctx_by_imsi(const char *imsi);
140
141/* Allocate a new SGSN MM context */
Harald Welteeaa614c2010-05-02 11:26:34 +0200142struct sgsn_mm_ctx *sgsn_mm_ctx_alloc(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800143 const struct gprs_ra_id *raid);
Harald Weltec728eea2010-12-24 23:07:18 +0100144void sgsn_mm_ctx_free(struct sgsn_mm_ctx *mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800145
Harald Welted193cb32010-05-17 22:58:03 +0200146
147enum pdp_ctx_state {
148 PDP_STATE_NONE,
Harald Welte6abf94e2010-05-18 10:35:06 +0200149 PDP_STATE_CR_REQ,
150 PDP_STATE_CR_CONF,
Harald Weltea9b473a2010-12-24 21:13:26 +0100151
152 /* 04.08 / Figure 6.2 / 6.1.2.2 */
153 PDP_STATE_INACT_PEND,
154 PDP_STATE_INACTIVE = PDP_STATE_NONE,
Harald Welted193cb32010-05-17 22:58:03 +0200155};
156
157enum pdp_type {
158 PDP_TYPE_NONE,
Harald Welte6abf94e2010-05-18 10:35:06 +0200159 PDP_TYPE_ETSI_PPP,
160 PDP_TYPE_IANA_IPv4,
161 PDP_TYPE_IANA_IPv6,
Harald Welted193cb32010-05-17 22:58:03 +0200162};
163
164struct sgsn_pdp_ctx {
165 struct llist_head list; /* list_head for mmctx->pdp_list */
166 struct llist_head g_list; /* list_head for global list */
167 struct sgsn_mm_ctx *mm; /* back pointer to MM CTX */
168 struct sgsn_ggsn_ctx *ggsn; /* which GGSN serves this PDP */
Harald Welteefbdee92010-06-10 00:20:12 +0200169 struct rate_ctr_group *ctrg;
Harald Welted193cb32010-05-17 22:58:03 +0200170
171 //unsigned int id;
172 struct pdp_t *lib; /* pointer to libgtp PDP ctx */
173 enum pdp_ctx_state state;
174 enum pdp_type type;
175 uint32_t address;
176 char *apn_subscribed;
177 //char *apn_used;
Harald Welte6abf94e2010-05-18 10:35:06 +0200178 uint16_t nsapi; /* SNDCP */
179 uint16_t sapi; /* LLC */
Harald Welted193cb32010-05-17 22:58:03 +0200180 uint8_t ti; /* transaction identifier */
181 int vplmn_allowed;
182 uint32_t qos_profile_subscr;
183 //uint32_t qos_profile_req;
184 //uint32_t qos_profile_neg;
185 uint8_t radio_prio;
186 uint32_t tx_npdu_nr;
187 uint32_t rx_npdu_nr;
188 uint32_t tx_gtp_snd;
189 uint32_t rx_gtp_snu;
190 //uint32_t charging_id;
191 int reordering_reqd;
Harald Weltea9b473a2010-12-24 21:13:26 +0100192
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200193 struct osmo_timer_list timer;
Harald Weltea9b473a2010-12-24 21:13:26 +0100194 unsigned int T; /* Txxxx number */
195 unsigned int num_T_exp; /* number of consecutive T expirations */
Harald Welted193cb32010-05-17 22:58:03 +0200196};
197
Daniel Willmannb15ceec2014-09-03 15:57:49 +0200198#define LOGPDPCTXP(level, pdp, fmt, args...) \
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200199 LOGP(DGPRS, level, "PDP(%s/%u) " \
200 fmt, (pdp)->mm ? (pdp)->mm->imsi : "---", (pdp)->ti, ## args)
Harald Welted193cb32010-05-17 22:58:03 +0200201
Harald Welte96df6062010-06-03 06:37:26 +0200202/* look up PDP context by MM context and NSAPI */
Harald Welted193cb32010-05-17 22:58:03 +0200203struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_nsapi(const struct sgsn_mm_ctx *mm,
204 uint8_t nsapi);
Harald Welte96df6062010-06-03 06:37:26 +0200205/* look up PDP context by MM context and transaction ID */
Harald Welte77289c22010-05-18 14:32:29 +0200206struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_tid(const struct sgsn_mm_ctx *mm,
207 uint8_t tid);
Harald Welte96df6062010-06-03 06:37:26 +0200208
Harald Welted193cb32010-05-17 22:58:03 +0200209struct sgsn_pdp_ctx *sgsn_pdp_ctx_alloc(struct sgsn_mm_ctx *mm,
210 uint8_t nsapi);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200211void sgsn_pdp_ctx_terminate(struct sgsn_pdp_ctx *pdp);
Harald Welted193cb32010-05-17 22:58:03 +0200212void sgsn_pdp_ctx_free(struct sgsn_pdp_ctx *pdp);
213
214
Harald Welte77289c22010-05-18 14:32:29 +0200215struct sgsn_ggsn_ctx {
Harald Welted193cb32010-05-17 22:58:03 +0200216 struct llist_head list;
217 uint32_t id;
218 unsigned int gtp_version;
219 struct in_addr remote_addr;
Harald Weltea9b473a2010-12-24 21:13:26 +0100220 int remote_restart_ctr;
Harald Welted193cb32010-05-17 22:58:03 +0200221 struct gsn_t *gsn;
222};
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200223struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_alloc(uint32_t id);
224struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_id(uint32_t id);
Harald Weltea9b473a2010-12-24 21:13:26 +0100225struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_addr(struct in_addr *addr);
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200226struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_find_alloc(uint32_t id);
Harald Welted193cb32010-05-17 22:58:03 +0200227
228struct apn_ctx {
229 struct llist_head list;
Harald Welte77289c22010-05-18 14:32:29 +0200230 struct sgsn_ggsn_ctx *ggsn;
Harald Welted193cb32010-05-17 22:58:03 +0200231 char *name;
232 char *description;
233};
234
235extern struct llist_head sgsn_mm_ctxts;
236extern struct llist_head sgsn_ggsn_ctxts;
237extern struct llist_head sgsn_apn_ctxts;
238extern struct llist_head sgsn_pdp_ctxts;
239
Harald Welte6463c072010-05-18 17:04:55 +0200240uint32_t sgsn_alloc_ptmsi(void);
241
Harald Weltea9b473a2010-12-24 21:13:26 +0100242/* High-level function to be called in case a GGSN has disappeared or
243 * ottherwise lost state (recovery procedure) */
244int drop_all_pdp_for_ggsn(struct sgsn_ggsn_ctx *ggsn);
245
Holger Hans Peter Freythera2730302014-03-23 18:08:26 +0100246char *gprs_pdpaddr2str(uint8_t *pdpa, uint8_t len);
247
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200248/* Force re-attachment based on msgb meta data */
249int sgsn_force_reattach_oldmsg(struct msgb *oldmsg);
250
Holger Hans Peter Freythera2730302014-03-23 18:08:26 +0100251/*
252 * ctrl interface related work
253 */
254struct gsm_network;
255struct ctrl_handle *sgsn_controlif_setup(struct gsm_network *, uint16_t port);
256int sgsn_ctrl_cmds_install(void);
257
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200258/*
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200259 * Authorization/ACL handling
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200260 */
Jacob Erlbeck3b5d4072014-10-24 15:11:03 +0200261struct imsi_acl_entry {
262 struct llist_head list;
263 char imsi[16+1];
264};
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200265
266struct sgsn_subscriber_data {
267 enum sgsn_auth_state auth_state;
268};
269
Jacob Erlbeck3b5d4072014-10-24 15:11:03 +0200270struct sgsn_config;
271struct sgsn_instance;
Jacob Erlbeckf951a012014-11-07 14:17:44 +0100272extern const struct value_string *sgsn_auth_state_names;
Jacob Erlbeck3b5d4072014-10-24 15:11:03 +0200273
Jacob Erlbecka0b6efb2014-11-13 10:48:39 +0100274void sgsn_auth_init(void);
Jacob Erlbeck3b5d4072014-10-24 15:11:03 +0200275struct imsi_acl_entry *sgsn_acl_lookup(const char *imsi, struct sgsn_config *cfg);
276int sgsn_acl_add(const char *imsi, struct sgsn_config *cfg);
277int sgsn_acl_del(const char *imsi, struct sgsn_config *cfg);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200278/* Request authorization */
Jacob Erlbecka0b6efb2014-11-13 10:48:39 +0100279int sgsn_auth_request(struct sgsn_mm_ctx *mm);
280enum sgsn_auth_state sgsn_auth_state(struct sgsn_mm_ctx *mm);
281void sgsn_auth_update(struct sgsn_mm_ctx *mm);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200282
283/* Called on subscriber data updates */
Jacob Erlbeckf951a012014-11-07 14:17:44 +0100284void sgsn_update_subscriber_data(struct sgsn_mm_ctx *mmctx);
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200285
Holger Hans Peter Freyther90e9a442014-04-04 12:51:28 +0200286int gprs_sndcp_vty_init(void);
287struct sgsn_instance;
288int sgsn_gtp_init(struct sgsn_instance *sgi);
289
Harald Welte9b455bf2010-03-14 15:45:01 +0800290#endif /* _GPRS_SGSN_H */