blob: 9537c0afc6860e34ee150a8dbed56fb56c413c82 [file] [log] [blame]
Harald Welte288be162010-05-01 16:48:27 +02001#ifndef _SGSN_H
2#define _SGSN_H
3
Harald Welte288be162010-05-01 16:48:27 +02004
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +01005#include <osmocom/core/msgb.h>
Max93408ae2016-06-28 14:10:16 +02006#include <osmocom/crypt/gprs_cipher.h>
Harald Welteea34a4e2012-06-16 14:59:56 +08007#include <osmocom/gprs/gprs_ns.h>
Harald Welte6abf94e2010-05-18 10:35:06 +02008#include <openbsc/gprs_sgsn.h>
Neels Hofmeyr9c534fd2015-10-12 11:57:37 +02009#include <openbsc/oap.h>
Harald Welte288be162010-05-01 16:48:27 +020010
Holger Hans Peter Freyther66e71062015-05-25 01:21:50 +080011#include <ares.h>
12
Jacob Erlbeck39f040d2014-12-18 12:46:47 +010013struct gprs_gsup_client;
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +080014struct hostent;
Jacob Erlbeck39f040d2014-12-18 12:46:47 +010015
Jacob Erlbeck106f5472014-11-04 10:08:37 +010016enum sgsn_auth_policy {
17 SGSN_AUTH_POLICY_OPEN,
18 SGSN_AUTH_POLICY_CLOSED,
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +010019 SGSN_AUTH_POLICY_ACL_ONLY,
20 SGSN_AUTH_POLICY_REMOTE
Jacob Erlbeck106f5472014-11-04 10:08:37 +010021};
22
Alexander Couzens14314bd2016-07-05 09:52:52 +020023
24enum sgsn_rate_ctr_keys {
Alexander Couzens4e699a92016-07-05 11:04:27 +020025 CTR_LLC_DL_BYTES,
26 CTR_LLC_UL_BYTES,
27 CTR_LLC_DL_PACKETS,
28 CTR_LLC_UL_PACKETS,
Alexander Couzens14314bd2016-07-05 09:52:52 +020029 CTR_GPRS_ATTACH_REQUEST,
30 CTR_GPRS_ATTACH_ACKED,
31 CTR_GPRS_ATTACH_REJECTED,
32 CTR_GPRS_DETACH_REQUEST,
33 CTR_GPRS_DETACH_ACKED,
34 CTR_GPRS_ROUTING_AREA_REQUEST,
35 CTR_GPRS_ROUTING_AREA_ACKED,
36 CTR_GPRS_ROUTING_AREA_REJECT,
37 /* PDP single packet counter / GSM 04.08 9.5.1 - 9.5.9 */
38 CTR_PDP_ACTIVATE_REQUEST,
39 CTR_PDP_ACTIVATE_REJECT,
40 CTR_PDP_ACTIVATE_ACCEPT,
41 CTR_PDP_REQUEST_ACTIVATE, /* unused */
42 CTR_PDP_REQUEST_ACTIVATE_REJ, /* unused */
43 CTR_PDP_MODIFY_REQUEST, /* unsued */
44 CTR_PDP_MODIFY_ACCEPT, /* unused */
45 CTR_PDP_DL_DEACTIVATE_REQUEST,
46 CTR_PDP_DL_DEACTIVATE_ACCEPT,
47 CTR_PDP_UL_DEACTIVATE_REQUEST,
48 CTR_PDP_UL_DEACTIVATE_ACCEPT,
49};
50
Holger Hans Peter Freyther4f5b8232015-05-05 22:25:48 +020051struct sgsn_cdr {
52 char *filename;
53 int interval;
54};
55
Harald Welte288be162010-05-01 16:48:27 +020056struct sgsn_config {
57 /* parsed from config file */
Harald Welte288be162010-05-01 16:48:27 +020058
Harald Welte2720e732010-05-17 00:44:57 +020059 char *gtp_statedir;
60 struct sockaddr_in gtp_listenaddr;
61
Harald Welte288be162010-05-01 16:48:27 +020062 /* misc */
63 struct gprs_ns_inst *nsi;
Harald Welte7f6da482013-03-19 11:00:13 +010064
Jacob Erlbeck106f5472014-11-04 10:08:37 +010065 enum sgsn_auth_policy auth_policy;
Max93408ae2016-06-28 14:10:16 +020066 enum gprs_ciph_algo cipher;
Harald Welte7f6da482013-03-19 11:00:13 +010067 struct llist_head imsi_acl;
Jacob Erlbeck39f040d2014-12-18 12:46:47 +010068
69 struct sockaddr_in gsup_server_addr;
70 int gsup_server_port;
Jacob Erlbeck9d4f46c2014-12-17 13:20:08 +010071
72 int require_authentication;
Jacob Erlbeck771573c2014-12-19 18:08:48 +010073 int require_update_location;
Holger Hans Peter Freyther4f5b8232015-05-05 22:25:48 +020074
75 /* CDR configuration */
76 struct sgsn_cdr cdr;
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +080077
Harald Welte94508822015-08-15 19:08:21 +020078 struct {
79 int T3312;
80 int T3322;
81 int T3350;
82 int T3360;
83 int T3370;
84 int T3313;
85 int T3314;
86 int T3316;
87 int T3385;
88 int T3386;
89 int T3395;
90 int T3397;
91 } timers;
92
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +080093 int dynamic_lookup;
Neels Hofmeyr9c534fd2015-10-12 11:57:37 +020094
95 struct oap_config oap;
Philippf1f34362016-08-26 17:00:21 +020096
97 /* RFC1144 TCP/IP header compression */
98 struct {
99 int active;
100 int passive;
101 int s01;
102 } pcomp_rfc1144;
Harald Welte288be162010-05-01 16:48:27 +0200103};
104
Harald Welte2720e732010-05-17 00:44:57 +0200105struct sgsn_instance {
106 char *config_file;
107 struct sgsn_config cfg;
108 /* File descriptor wrappers for LibGTP */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200109 struct osmo_fd gtp_fd0;
110 struct osmo_fd gtp_fd1c;
111 struct osmo_fd gtp_fd1u;
Harald Welte2720e732010-05-17 00:44:57 +0200112 /* Timer for libGTP */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200113 struct osmo_timer_list gtp_timer;
Harald Welte2720e732010-05-17 00:44:57 +0200114 /* GSN instance for libgtp */
115 struct gsn_t *gsn;
Jacob Erlbeck39f040d2014-12-18 12:46:47 +0100116 /* Subscriber */
117 struct gprs_gsup_client *gsup_client;
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100118 /* LLME inactivity timer */
119 struct osmo_timer_list llme_timer;
Holger Hans Peter Freyther66e71062015-05-25 01:21:50 +0800120
121 /* c-ares event loop integration */
122 struct osmo_timer_list ares_timer;
123 struct llist_head ares_fds;
124 ares_channel ares_channel;
Holger Hans Peter Freythera5a6da42015-05-25 15:20:27 +0800125 struct ares_addr_node *ares_servers;
Alexander Couzens14314bd2016-07-05 09:52:52 +0200126
127 struct rate_ctr_group *rate_ctrs;
Harald Welte2720e732010-05-17 00:44:57 +0200128};
129
Harald Welte8fc1a462010-05-17 00:53:10 +0200130extern struct sgsn_instance *sgsn;
Harald Welte288be162010-05-01 16:48:27 +0200131
132/* sgsn_vty.c */
133
134int sgsn_vty_init(void);
135int sgsn_parse_config(const char *config_file, struct sgsn_config *cfg);
136
137/* sgsn.c */
138
139/* Main input function for Gb proxy */
140int sgsn_rcvmsg(struct msgb *msg, struct gprs_nsvc *nsvc, uint16_t ns_bvci);
141
Harald Welte6abf94e2010-05-18 10:35:06 +0200142
Harald Welte77289c22010-05-18 14:32:29 +0200143struct sgsn_pdp_ctx *sgsn_create_pdp_ctx(struct sgsn_ggsn_ctx *ggsn,
Harald Welte6abf94e2010-05-18 10:35:06 +0200144 struct sgsn_mm_ctx *mmctx,
145 uint16_t nsapi,
146 struct tlv_parsed *tp);
Harald Welte77289c22010-05-18 14:32:29 +0200147int sgsn_delete_pdp_ctx(struct sgsn_pdp_ctx *pctx);
Daniel Willmann21b269f2016-05-11 12:43:47 +0200148void sgsn_pdp_upd_gtp_u(struct sgsn_pdp_ctx *pdp, void *addr, size_t alen);
Harald Welte77289c22010-05-18 14:32:29 +0200149
Harald Welteebabdea2010-06-01 18:28:10 +0200150/* gprs_sndcp.c */
151
152/* Entry point for the SNSM-ACTIVATE.indication */
153int sndcp_sm_activate_ind(struct gprs_llc_lle *lle, uint8_t nsapi);
Harald Weltece22f922010-06-03 21:21:21 +0200154/* Entry point for the SNSM-DEACTIVATE.indication */
155int sndcp_sm_deactivate_ind(struct gprs_llc_lle *lle, uint8_t nsapi);
Harald Welteebabdea2010-06-01 18:28:10 +0200156/* Called by SNDCP when it has received/re-assembled a N-PDU */
Harald Welte8911cef2010-07-01 19:56:19 +0200157int sgsn_rx_sndcp_ud_ind(struct gprs_ra_id *ra_id, int32_t tlli, uint8_t nsapi,
158 struct msgb *msg, uint32_t npdu_len, uint8_t *npdu);
Harald Weltebb1c8052010-06-03 06:38:38 +0200159int sndcp_unitdata_req(struct msgb *msg, struct gprs_llc_lle *lle, uint8_t nsapi,
160 void *mmcontext);
Holger Hans Peter Freyther3dccda52011-10-14 23:42:13 +0200161int sndcp_llunitdata_ind(struct msgb *msg, struct gprs_llc_lle *lle,
162 uint8_t *hdr, uint16_t len);
Harald Welteebabdea2010-06-01 18:28:10 +0200163
Holger Hans Peter Freyther4f5b8232015-05-05 22:25:48 +0200164
165/*
166 * CDR related functionality
167 */
168int sgsn_cdr_init(struct sgsn_instance *sgsn);
169
Holger Hans Peter Freyther66e71062015-05-25 01:21:50 +0800170
171/*
172 * C-ARES related functionality
173 */
174int sgsn_ares_init(struct sgsn_instance *sgsn);
175int sgsn_ares_query(struct sgsn_instance *sgsm, const char *name, ares_host_callback cb, void *data);
176
Harald Welte288be162010-05-01 16:48:27 +0200177#endif