blob: af21eaddb53722d8f4c177add59fcc54e781588d [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
Harald Welte9b455bf2010-03-14 15:45:01 +080057#define MS_RADIO_ACCESS_CAPA
58
59/* According to TS 03.60, Table 5: SGSN MM and PDP Contexts */
Harald Weltef533e132010-05-01 16:45:46 +020060/* Extended by 3GPP TS 23.060, Table 6: SGSN MM and PDP Contexts */
Harald Welte9b455bf2010-03-14 15:45:01 +080061struct sgsn_mm_ctx {
62 struct llist_head list;
63
64 char imsi[GSM_IMSI_LENGTH];
65 enum gprs_mm_state mm_state;
Harald Welteeaa614c2010-05-02 11:26:34 +020066 uint32_t p_tmsi;
Harald Weltec2e8cc42010-05-31 20:23:38 +020067 uint32_t p_tmsi_old; /* old P-TMSI before new is confirmed */
Harald Welteeaa614c2010-05-02 11:26:34 +020068 uint32_t p_tmsi_sig;
Harald Welte9b455bf2010-03-14 15:45:01 +080069 char imei[GSM_IMEI_LENGTH];
Harald Weltef533e132010-05-01 16:45:46 +020070 /* Opt: Software Version Numbber / TS 23.195 */
Harald Welte9b455bf2010-03-14 15:45:01 +080071 char msisdn[GSM_EXTENSION_LENGTH];
72 struct gprs_ra_id ra;
Harald Welteeaa614c2010-05-02 11:26:34 +020073 uint16_t cell_id;
74 uint32_t cell_id_age;
75 uint16_t sac; /* Iu: Service Area Code */
76 uint32_t sac_age;/* Iu: Service Area Code age */
Harald Welte9b455bf2010-03-14 15:45:01 +080077 /* VLR number */
Harald Welteeaa614c2010-05-02 11:26:34 +020078 uint32_t new_sgsn_addr;
Harald Welte9b455bf2010-03-14 15:45:01 +080079 /* Authentication Triplets */
80 /* Kc */
Harald Weltef533e132010-05-01 16:45:46 +020081 /* Iu: CK, IK, KSI */
Harald Welte9b455bf2010-03-14 15:45:01 +080082 /* CKSN */
83 enum gprs_ciph_algo ciph_algo;
84 struct {
Harald Welteeaa614c2010-05-02 11:26:34 +020085 uint8_t len;
Alexander Chemeris84402c02013-07-03 10:12:23 +040086 uint8_t buf[50]; /* GSM 04.08 10.5.5.12a, extended in TS 24.008 */
Harald Welte9b455bf2010-03-14 15:45:01 +080087 } ms_radio_access_capa;
88 struct {
Harald Welteeaa614c2010-05-02 11:26:34 +020089 uint8_t len;
Alexander Chemeris84402c02013-07-03 10:12:23 +040090 uint8_t buf[8]; /* GSM 04.08 10.5.5.12, extended in TS 24.008 */
Harald Welte9b455bf2010-03-14 15:45:01 +080091 } ms_network_capa;
Harald Welteeaa614c2010-05-02 11:26:34 +020092 uint16_t drx_parms;
Harald Welte9b455bf2010-03-14 15:45:01 +080093 int mnrg; /* MS reported to HLR? */
94 int ngaf; /* MS reported to MSC/VLR? */
95 int ppf; /* paging for GPRS + non-GPRS? */
96 /* SMS Parameters */
97 int recovery;
Harald Welteba850c52010-05-02 14:40:32 +020098 uint8_t radio_prio_sms;
Harald Welte9b455bf2010-03-14 15:45:01 +080099
100 struct llist_head pdp_list;
101
102 /* Additional bits not present in the GSM TS */
Harald Welte807a5d82010-06-01 11:53:01 +0200103 struct gprs_llc_llme *llme;
Harald Welteeaa614c2010-05-02 11:26:34 +0200104 uint32_t tlli;
Harald Welte807a5d82010-06-01 11:53:01 +0200105 uint32_t tlli_new;
Harald Welte6abf94e2010-05-18 10:35:06 +0200106 uint16_t nsei;
107 uint16_t bvci;
Harald Welte8acd88f2010-05-18 10:57:45 +0200108 struct rate_ctr_group *ctrg;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200109 struct osmo_timer_list timer;
Harald Weltec2e8cc42010-05-31 20:23:38 +0200110 unsigned int T; /* Txxxx number */
111 unsigned int num_T_exp; /* number of consecutive T expirations */
112
113 enum gprs_t3350_mode t3350_mode;
114 uint8_t t3370_id_type;
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100115 uint8_t pending_req; /* the request's message type */
116 /* TODO: There isn't much semantic difference between t3350_mode
117 * (refers to the timer) and pending_req (refers to the procedure),
118 * where mm->T == 3350 => mm->t3350_mode == f(mm->pending_req). Check
119 * whether one of them can be dropped. */
Jacob Erlbeck0c06f982014-10-29 22:12:20 +0100120
121 int is_authorized;
Harald Welte9b455bf2010-03-14 15:45:01 +0800122};
123
Daniel Willmannb15ceec2014-09-03 15:57:49 +0200124#define LOGMMCTXP(level, mm, fmt, args...) \
Jacob Erlbeck5a38f642014-10-21 13:09:55 +0200125 LOGP(DMM, level, "MM(%s/%08x) " fmt, (mm) ? (mm)->imsi : "---", \
126 (mm) ? (mm)->p_tmsi : GSM_RESERVED_TMSI, ## args)
Daniel Willmannb15ceec2014-09-03 15:57:49 +0200127
Harald Welte9b455bf2010-03-14 15:45:01 +0800128/* look-up a SGSN MM context based on TLLI + RAI */
Harald Welteeaa614c2010-05-02 11:26:34 +0200129struct sgsn_mm_ctx *sgsn_mm_ctx_by_tlli(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800130 const struct gprs_ra_id *raid);
Harald Welteeaa614c2010-05-02 11:26:34 +0200131struct sgsn_mm_ctx *sgsn_mm_ctx_by_ptmsi(uint32_t tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800132struct sgsn_mm_ctx *sgsn_mm_ctx_by_imsi(const char *imsi);
133
134/* Allocate a new SGSN MM context */
Harald Welteeaa614c2010-05-02 11:26:34 +0200135struct sgsn_mm_ctx *sgsn_mm_ctx_alloc(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800136 const struct gprs_ra_id *raid);
Harald Weltec728eea2010-12-24 23:07:18 +0100137void sgsn_mm_ctx_free(struct sgsn_mm_ctx *mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800138
Harald Welted193cb32010-05-17 22:58:03 +0200139
140enum pdp_ctx_state {
141 PDP_STATE_NONE,
Harald Welte6abf94e2010-05-18 10:35:06 +0200142 PDP_STATE_CR_REQ,
143 PDP_STATE_CR_CONF,
Harald Weltea9b473a2010-12-24 21:13:26 +0100144
145 /* 04.08 / Figure 6.2 / 6.1.2.2 */
146 PDP_STATE_INACT_PEND,
147 PDP_STATE_INACTIVE = PDP_STATE_NONE,
Harald Welted193cb32010-05-17 22:58:03 +0200148};
149
150enum pdp_type {
151 PDP_TYPE_NONE,
Harald Welte6abf94e2010-05-18 10:35:06 +0200152 PDP_TYPE_ETSI_PPP,
153 PDP_TYPE_IANA_IPv4,
154 PDP_TYPE_IANA_IPv6,
Harald Welted193cb32010-05-17 22:58:03 +0200155};
156
157struct sgsn_pdp_ctx {
158 struct llist_head list; /* list_head for mmctx->pdp_list */
159 struct llist_head g_list; /* list_head for global list */
160 struct sgsn_mm_ctx *mm; /* back pointer to MM CTX */
161 struct sgsn_ggsn_ctx *ggsn; /* which GGSN serves this PDP */
Harald Welteefbdee92010-06-10 00:20:12 +0200162 struct rate_ctr_group *ctrg;
Harald Welted193cb32010-05-17 22:58:03 +0200163
164 //unsigned int id;
165 struct pdp_t *lib; /* pointer to libgtp PDP ctx */
166 enum pdp_ctx_state state;
167 enum pdp_type type;
168 uint32_t address;
169 char *apn_subscribed;
170 //char *apn_used;
Harald Welte6abf94e2010-05-18 10:35:06 +0200171 uint16_t nsapi; /* SNDCP */
172 uint16_t sapi; /* LLC */
Harald Welted193cb32010-05-17 22:58:03 +0200173 uint8_t ti; /* transaction identifier */
174 int vplmn_allowed;
175 uint32_t qos_profile_subscr;
176 //uint32_t qos_profile_req;
177 //uint32_t qos_profile_neg;
178 uint8_t radio_prio;
179 uint32_t tx_npdu_nr;
180 uint32_t rx_npdu_nr;
181 uint32_t tx_gtp_snd;
182 uint32_t rx_gtp_snu;
183 //uint32_t charging_id;
184 int reordering_reqd;
Harald Weltea9b473a2010-12-24 21:13:26 +0100185
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200186 struct osmo_timer_list timer;
Harald Weltea9b473a2010-12-24 21:13:26 +0100187 unsigned int T; /* Txxxx number */
188 unsigned int num_T_exp; /* number of consecutive T expirations */
Harald Welted193cb32010-05-17 22:58:03 +0200189};
190
Daniel Willmannb15ceec2014-09-03 15:57:49 +0200191#define LOGPDPCTXP(level, pdp, fmt, args...) \
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200192 LOGP(DGPRS, level, "PDP(%s/%u) " \
193 fmt, (pdp)->mm ? (pdp)->mm->imsi : "---", (pdp)->ti, ## args)
Harald Welted193cb32010-05-17 22:58:03 +0200194
Harald Welte96df6062010-06-03 06:37:26 +0200195/* look up PDP context by MM context and NSAPI */
Harald Welted193cb32010-05-17 22:58:03 +0200196struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_nsapi(const struct sgsn_mm_ctx *mm,
197 uint8_t nsapi);
Harald Welte96df6062010-06-03 06:37:26 +0200198/* look up PDP context by MM context and transaction ID */
Harald Welte77289c22010-05-18 14:32:29 +0200199struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_tid(const struct sgsn_mm_ctx *mm,
200 uint8_t tid);
Harald Welte96df6062010-06-03 06:37:26 +0200201
Harald Welted193cb32010-05-17 22:58:03 +0200202struct sgsn_pdp_ctx *sgsn_pdp_ctx_alloc(struct sgsn_mm_ctx *mm,
203 uint8_t nsapi);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200204void sgsn_pdp_ctx_terminate(struct sgsn_pdp_ctx *pdp);
Harald Welted193cb32010-05-17 22:58:03 +0200205void sgsn_pdp_ctx_free(struct sgsn_pdp_ctx *pdp);
206
207
Harald Welte77289c22010-05-18 14:32:29 +0200208struct sgsn_ggsn_ctx {
Harald Welted193cb32010-05-17 22:58:03 +0200209 struct llist_head list;
210 uint32_t id;
211 unsigned int gtp_version;
212 struct in_addr remote_addr;
Harald Weltea9b473a2010-12-24 21:13:26 +0100213 int remote_restart_ctr;
Harald Welted193cb32010-05-17 22:58:03 +0200214 struct gsn_t *gsn;
215};
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200216struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_alloc(uint32_t id);
217struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_id(uint32_t id);
Harald Weltea9b473a2010-12-24 21:13:26 +0100218struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_addr(struct in_addr *addr);
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200219struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_find_alloc(uint32_t id);
Harald Welted193cb32010-05-17 22:58:03 +0200220
221struct apn_ctx {
222 struct llist_head list;
Harald Welte77289c22010-05-18 14:32:29 +0200223 struct sgsn_ggsn_ctx *ggsn;
Harald Welted193cb32010-05-17 22:58:03 +0200224 char *name;
225 char *description;
226};
227
228extern struct llist_head sgsn_mm_ctxts;
229extern struct llist_head sgsn_ggsn_ctxts;
230extern struct llist_head sgsn_apn_ctxts;
231extern struct llist_head sgsn_pdp_ctxts;
232
Harald Welte6463c072010-05-18 17:04:55 +0200233uint32_t sgsn_alloc_ptmsi(void);
234
Harald Weltea9b473a2010-12-24 21:13:26 +0100235/* High-level function to be called in case a GGSN has disappeared or
236 * ottherwise lost state (recovery procedure) */
237int drop_all_pdp_for_ggsn(struct sgsn_ggsn_ctx *ggsn);
238
Holger Hans Peter Freythera2730302014-03-23 18:08:26 +0100239char *gprs_pdpaddr2str(uint8_t *pdpa, uint8_t len);
240
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200241/* Force re-attachment based on msgb meta data */
242int sgsn_force_reattach_oldmsg(struct msgb *oldmsg);
243
Holger Hans Peter Freythera2730302014-03-23 18:08:26 +0100244/*
245 * ctrl interface related work
246 */
247struct gsm_network;
248struct ctrl_handle *sgsn_controlif_setup(struct gsm_network *, uint16_t port);
249int sgsn_ctrl_cmds_install(void);
250
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200251/*
252 * ACL handling
253 */
Jacob Erlbeck3b5d4072014-10-24 15:11:03 +0200254struct imsi_acl_entry {
255 struct llist_head list;
256 char imsi[16+1];
257};
258struct sgsn_config;
259struct sgsn_instance;
260
261void sgsn_auth_init(struct sgsn_instance *sgi);
262struct imsi_acl_entry *sgsn_acl_lookup(const char *imsi, struct sgsn_config *cfg);
263int sgsn_acl_add(const char *imsi, struct sgsn_config *cfg);
264int sgsn_acl_del(const char *imsi, struct sgsn_config *cfg);
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200265
Holger Hans Peter Freyther90e9a442014-04-04 12:51:28 +0200266int gprs_sndcp_vty_init(void);
267struct sgsn_instance;
268int sgsn_gtp_init(struct sgsn_instance *sgi);
269
Harald Welte9b455bf2010-03-14 15:45:01 +0800270#endif /* _GPRS_SGSN_H */