blob: 1ede2c930a6cf1c7ec10f8cf670f0a34498cc537 [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 Hofmeyr11ecc932016-12-08 21:29:23 +01009#include <openbsc/oap_client.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
Neels Hofmeyr49012f12016-12-08 21:30:34 +010095 struct oap_client_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;
Philipp73f83d52016-09-02 13:38:01 +0200103
104 /* V.42vis data compression */
105 struct {
106 int active;
107 int passive;
108 int p0;
109 int p1;
110 int p2;
111 } dcomp_v42bis;
Harald Welte288be162010-05-01 16:48:27 +0200112};
113
Harald Welte2720e732010-05-17 00:44:57 +0200114struct sgsn_instance {
115 char *config_file;
116 struct sgsn_config cfg;
117 /* File descriptor wrappers for LibGTP */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200118 struct osmo_fd gtp_fd0;
119 struct osmo_fd gtp_fd1c;
120 struct osmo_fd gtp_fd1u;
Harald Welte2720e732010-05-17 00:44:57 +0200121 /* Timer for libGTP */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200122 struct osmo_timer_list gtp_timer;
Harald Welte2720e732010-05-17 00:44:57 +0200123 /* GSN instance for libgtp */
124 struct gsn_t *gsn;
Jacob Erlbeck39f040d2014-12-18 12:46:47 +0100125 /* Subscriber */
Neels Hofmeyr814fef02016-12-08 21:19:57 +0100126 struct gsup_client *gsup_client;
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100127 /* LLME inactivity timer */
128 struct osmo_timer_list llme_timer;
Holger Hans Peter Freyther66e71062015-05-25 01:21:50 +0800129
130 /* c-ares event loop integration */
131 struct osmo_timer_list ares_timer;
132 struct llist_head ares_fds;
133 ares_channel ares_channel;
Holger Hans Peter Freythera5a6da42015-05-25 15:20:27 +0800134 struct ares_addr_node *ares_servers;
Alexander Couzens14314bd2016-07-05 09:52:52 +0200135
136 struct rate_ctr_group *rate_ctrs;
Harald Welte2720e732010-05-17 00:44:57 +0200137};
138
Harald Welte8fc1a462010-05-17 00:53:10 +0200139extern struct sgsn_instance *sgsn;
Harald Welte288be162010-05-01 16:48:27 +0200140
141/* sgsn_vty.c */
142
143int sgsn_vty_init(void);
144int sgsn_parse_config(const char *config_file, struct sgsn_config *cfg);
145
146/* sgsn.c */
147
148/* Main input function for Gb proxy */
149int sgsn_rcvmsg(struct msgb *msg, struct gprs_nsvc *nsvc, uint16_t ns_bvci);
150
Harald Welte6abf94e2010-05-18 10:35:06 +0200151
Harald Welte77289c22010-05-18 14:32:29 +0200152struct sgsn_pdp_ctx *sgsn_create_pdp_ctx(struct sgsn_ggsn_ctx *ggsn,
Harald Welte6abf94e2010-05-18 10:35:06 +0200153 struct sgsn_mm_ctx *mmctx,
154 uint16_t nsapi,
155 struct tlv_parsed *tp);
Harald Welte77289c22010-05-18 14:32:29 +0200156int sgsn_delete_pdp_ctx(struct sgsn_pdp_ctx *pctx);
Daniel Willmann21b269f2016-05-11 12:43:47 +0200157void sgsn_pdp_upd_gtp_u(struct sgsn_pdp_ctx *pdp, void *addr, size_t alen);
Harald Welte77289c22010-05-18 14:32:29 +0200158
Harald Welteebabdea2010-06-01 18:28:10 +0200159/* gprs_sndcp.c */
160
161/* Entry point for the SNSM-ACTIVATE.indication */
162int sndcp_sm_activate_ind(struct gprs_llc_lle *lle, uint8_t nsapi);
Harald Weltece22f922010-06-03 21:21:21 +0200163/* Entry point for the SNSM-DEACTIVATE.indication */
164int sndcp_sm_deactivate_ind(struct gprs_llc_lle *lle, uint8_t nsapi);
Harald Welteebabdea2010-06-01 18:28:10 +0200165/* Called by SNDCP when it has received/re-assembled a N-PDU */
Harald Welte8911cef2010-07-01 19:56:19 +0200166int sgsn_rx_sndcp_ud_ind(struct gprs_ra_id *ra_id, int32_t tlli, uint8_t nsapi,
167 struct msgb *msg, uint32_t npdu_len, uint8_t *npdu);
Harald Weltebb1c8052010-06-03 06:38:38 +0200168int sndcp_unitdata_req(struct msgb *msg, struct gprs_llc_lle *lle, uint8_t nsapi,
169 void *mmcontext);
Holger Hans Peter Freyther3dccda52011-10-14 23:42:13 +0200170int sndcp_llunitdata_ind(struct msgb *msg, struct gprs_llc_lle *lle,
171 uint8_t *hdr, uint16_t len);
Harald Welteebabdea2010-06-01 18:28:10 +0200172
Holger Hans Peter Freyther4f5b8232015-05-05 22:25:48 +0200173
174/*
175 * CDR related functionality
176 */
177int sgsn_cdr_init(struct sgsn_instance *sgsn);
178
Holger Hans Peter Freyther66e71062015-05-25 01:21:50 +0800179
180/*
181 * C-ARES related functionality
182 */
183int sgsn_ares_init(struct sgsn_instance *sgsn);
184int sgsn_ares_query(struct sgsn_instance *sgsm, const char *name, ares_host_callback cb, void *data);
185
Harald Welte288be162010-05-01 16:48:27 +0200186#endif