blob: 62175ef50f79d26ef19eb073b9c827b7dc300aa3 [file] [log] [blame]
jjako52c24142002-12-16 13:33:51 +00001/*
2 * OpenGGSN - Gateway GPRS Support Node
jjakoa7cd2492003-04-11 09:40:12 +00003 * Copyright (C) 2002, 2003 Mondru AB.
jjako52c24142002-12-16 13:33:51 +00004 *
5 * The contents of this file may be used under the terms of the GNU
6 * General Public License Version 2, provided that the above copyright
7 * notice and this permission notice is included in all copies or
8 * substantial portions of the software.
9 *
10 * The initial developer of the original code is
11 * Jens Jakobsen <jj@openggsn.org>
12 *
13 * Contributor(s):
14 *
15 */
16
17#ifndef _PDP_H
18#define _PDP_H
19
20#define PDP_MAX 1024 /* Max number of PDP contexts */
jjako2c381332003-10-21 19:09:53 +000021#define PDP_MAXNSAPI 16 /* Max number of NSAPI */
jjako52c24142002-12-16 13:33:51 +000022
23#define PDP_DEBUG 0 /* Print debug information */
24
25/* GTP Information elements from 29.060 v3.9.0 7.7 Information Elements */
26/* Also covers version 0. Note that version 0 6: QOS Profile was superceded *
27 * by 135: QOS Profile in version 1 */
28
29
30struct sl_t {
31int l;
32char *v;
33};
34
35struct ul_t {
36int l;
37unsigned char *v;
38};
39
40struct ul16_t {
41int l;
42unsigned char v[16];
43};
44
45struct ul66_t {
46int l;
47unsigned char v[66];
48};
49
50struct ul255_t {
51int l;
52unsigned char v[255];
53};
54
55
jjako2c381332003-10-21 19:09:53 +000056/* *****************************************************************
jjako52c24142002-12-16 13:33:51 +000057 * Information storage for each PDP context
58 *
jjako2c381332003-10-21 19:09:53 +000059 * Information storage for each PDP context is defined in 23.060
60 * section 13.3 and 03.60. Includes IMSI, MSISDN, APN, PDP-type,
61 * PDP-address (IP address), sequence numbers, charging ID. For the
62 * SGSN it also includes radio related mobility information.
63 *
64 * The following structure is a combination of the storage
65 * requirements for each PDP context for the GGSN and SGSN. It
66 * contains both 23.060 as well as 03.60 parameters. Information is
67 * stored in the format for information elements described in 29.060
68 * and 09.60.
jjako52c24142002-12-16 13:33:51 +000069 * 31 * 4 + 15 structs + = 120 + 15 structs ~ 2k / context
70 * Structs: IP address 16+4 bytes (6), APN 255 bytes (2)
71 * QOS: 255 bytes (3), msisdn 16 bytes (1),
72 *
73 * TODO: We need to consider who manages the pdp_t hash tables
74 * Is it gtp_lib, or is it the application?
75 * I suppose that it will be gtp_lib.
76 * SGSN will ask gtplib for new pdp_t. Fill out the fields,
77 * and pass it on to gtp_create_pdp_req.
78 * GGSN will receive gtp_create_pdp_ind, create new pdp_t and
79 * send responce to SGSN.
80 * SGSN will receive response and gtplib will find the
81 * original pdp_t corresponding to the request. This will be
82 * passed on to the application.
83 * Eventually the SGSN will close the connection, and the
84 * pdp_t will be freed by gtplib in SGSN and GGSN
85 * This means that gtplib need to have functions to
86 * allocate, free, sort and find pdp_t
87 * (newpdp, freepdp, getpdp)
88 * Hash tables: TID, IMSI, IP etc.)
jjako2c381332003-10-21 19:09:53 +000089 *
90 *
91 * Secondary PDP Context Activation Procedure
92 *
93 * With GTP version 1 it is possible to establish multiple PDP
94 * contexts with the same IP address. With this scheme the first
95 * context is established as normal. Following contexts are
96 * established by referencing one of the allready existing ones. Each
97 * context is uniquely identified by IMSI and NSAPI. Each context is
98 * allocated an tei_di, but they all share the same tei_c.
99 *
100 * For Delete PDP Context the context is referenced by tei_c and
101 * nsapi. As an option it is possible to include a teardown indicater,
102 * in which case all PDP contexts with the same tei_c (IP address) are
103 * deleted.
104 *
105 * For Update PDP Context the context is normally referenced by tei_c
106 * and nsapi. If moving from GTP0 to GTP1 during an update the context
107 * is referenced instead by IMSI and NSAPI.
108 *****************************************************************/
jjako52c24142002-12-16 13:33:51 +0000109
110struct pdp_t {
111 /* Parameter determining if this PDP is in use. */
112 uint8_t inuse; /* 0=free. 1=used by somebody */
113
114 /* Pointers related to hash tables */
115 struct pdp_t *tidnext;
116 struct pdp_t *ipnext;
117
118 /* Parameters shared by all PDP context belonging to the same MS */
119
120 void *ipif; /* IP network interface */
jjakoa7cd2492003-04-11 09:40:12 +0000121 void *peer; /* Pointer to peer protocol */
jjako52c24142002-12-16 13:33:51 +0000122 void *asap; /* Application specific service access point */
123
124 uint64_t imsi; /* International Mobile Subscriber Identity.*/
125 struct ul16_t msisdn; /* The basic MSISDN of the MS. */
126 uint8_t mnrg; /* Indicates whether the MS is marked as not reachable for PS at the HLR. (1 bit, not transmitted) */
127 uint8_t cch_sub; /* The charging characteristics for the MS, e.g. normal, prepaid, flat-rate, and/or hot billing subscription. (not transmitted) */
128 uint16_t traceref; /* Identifies a record or a collection of records for a particular trace. */
129 uint16_t tracetype;/* Indicates the type of trace. */
130 struct ul_t triggerid;/* Identifies the entity that initiated the trace. */
131 struct ul_t omcid; /* Identifies the OMC that shall receive the trace record(s). */
132 uint8_t rec_hlr; /* Indicates if HLR or VLR is performing database recovery. (1 bit, not transmitted) */
133
134 /* Parameters specific to each individual PDP context */
135
136 uint8_t pdp_id; /* Index of the PDP context. (PDP context identifier) */
137 uint8_t pdp_state;/* PDP State Packet data protocol state, INACTIVE or ACTIVE. (1 bit, not transmitted) */
138 /* struct ul_t pdp_type; * PDP type; e.g. PPP or IP. */
139 /* struct ul_t pdp_addr; * PDP address; e.g. an IP address. */
140 struct ul66_t eua; /* End user address. PDP type and address combined */
141 uint8_t pdp_dyn; /* Indicates whether PDP Address is static or dynamic. (1 bit, not transmitted) */
142 struct ul255_t apn_req;/* The APN requested. */
143 struct ul255_t apn_sub;/* The APN received from the HLR. */
144 struct ul255_t apn_use;/* The APN Network Identifier currently used. */
145 uint8_t nsapi; /* Network layer Service Access Point Identifier. (4 bit) */
146 uint16_t ti; /* Transaction Identifier. (4 or 12 bit) */
147
148 uint32_t teic_own; /* (Own Tunnel Endpoint Identifier Control) */
149 uint32_t teid_own; /* (Own Tunnel Endpoint Identifier Data I) */
150 uint32_t teic_gn; /* Tunnel Endpoint Identifier for the Gn and Gp interfaces. (Control plane) */
151 uint32_t teid_gn; /* Tunnel Endpoint Identifier for the Gn and Gp interfaces. (Data I) */
152 uint32_t tei_iu; /* Tunnel Endpoint Identifier for the Iu interface. */
153
154 uint16_t fllc; /* (Local Flow Label Control, gtp0) */
155 uint16_t fllu; /* (Local Flow Label Data I, gtp0) */
156 uint16_t flrc; /* (Remote gn/gp Flow Label Control, gtp0) */
157 uint16_t flru; /* (Remote gn/gp Flow Label Data I, gtp0) */
158
jjako08d331d2003-10-13 20:33:30 +0000159 struct ul255_t tft; /* Traffic flow template. */
jjako52c24142002-12-16 13:33:51 +0000160 /*struct ul16_t sgsnc; * The IP address of the SGSN currently serving this MS. (Control plane) */
161 /*struct ul16_t sgsnu; * The IP address of the SGSN currently serving this MS. (User plane) */
162 /*struct ul16_t ggsnc; * The IP address of the GGSN currently used. (Control plane) */
163 /*struct ul16_t ggsnu; * The IP address of the GGSN currently used. (User plane) */
164
165 struct ul16_t gsnlc; /* The IP address of the local GSN. (Control plane) */
166 struct ul16_t gsnlu; /* The IP address of the local GSN. (User plane) */
167 struct ul16_t gsnrc; /* The IP address of the remote GSN. (Control plane) */
168 struct ul16_t gsnru; /* The IP address of the remote GSN. (User plane) */
169
170 uint8_t vplmn_allow; /* Specifies whether the MS is allowed to use the APN in the domain of the HPLMN only, or additionally the APN in the domain of the VPLMN. (1 bit) */
171 uint8_t qos_sub0[3]; /* The quality of service profile subscribed. */
172 uint8_t qos_req0[3]; /* The quality of service profile requested. */
173 uint8_t qos_neg0[3]; /* The quality of service profile negotiated. */
174 struct ul255_t qos_sub; /* The quality of service profile subscribed. */
175 struct ul255_t qos_req; /* The quality of service profile requested. */
176 struct ul255_t qos_neg; /* The quality of service profile negotiated. */
177 uint8_t radio_pri;/* The RLC/MAC radio priority level for uplink user data transmission. (4 bit) */
178 uint16_t flow_id; /* Packet flow identifier. */
179 /* struct ul_t bssqos_neg; * The aggregate BSS quality of service profile negotiated for the packet flow that this PDP context belongs to. (NOT GTP)*/
180 uint8_t sndcpd; /* SNDCP sequence number of the next downlink N-PDU to be sent to the MS. */
181 uint8_t sndcpu; /* SNDCP sequence number of the next uplink N-PDU expected from the MS. */
182 uint8_t rec_sgsn; /* Indicates if the SGSN is performing database recovery. (1 bit, not transmitted) */
183/* uint16_t gtpsnd; GTP-U sequence number of the next downlink N-PDU to be sent to the SGSN / received from the GGSN. */
184/* uint16_t gtpsnu; GTP-U sequence number of the next uplink N-PDU to be received from the SGSN / sent to the GGSN */
185 uint16_t gtpsntx; /* GTP-U sequence number of the next downlink N-PDU to be sent (09.60 section 8.1.1.1) */
186 uint16_t gtpsnrx; /* GTP-U sequence number of the next uplink N-PDU to be received (09.60 section 8.1.1.1) */
187 uint8_t pdcpsndd; /* Sequence number of the next downlink in-sequence PDCP-PDU to be sent to the MS. */
188 uint8_t pdcpsndu; /* Sequence number of the next uplink in-sequence PDCP-PDU expected from the MS. */
189 uint32_t cid; /* Charging identifier, identifies charging records generated by SGSN and GGSN. */
190 uint16_t cch_pdp; /* The charging characteristics for this PDP context, e.g. normal, prepaid, flat-rate, and/or hot billing. */
191 struct ul16_t rnc_addr;/* The IP address of the RNC currently used. */
192 uint8_t reorder; /* Specifies whether the GGSN shall reorder N-PDUs received from the SGSN / Specifies whether the SGSN shall reorder N-PDUs before delivering the N-PSUs to the MS. (1 bit) */
193 struct ul255_t pco_req; /* Requested packet control options. */
194 struct ul255_t pco_neg; /* Negotiated packet control options. */
195 uint32_t selmode; /* Selection mode. */
jjako08d331d2003-10-13 20:33:30 +0000196
197 /* Additional parameters used by library */
198
199 int version; /* Protocol version currently in use. 0 or 1 */
200
201 uint64_t tid; /* Combination of imsi and nsapi */
202 u_int16_t seq; /* Sequence number of last request */
203 struct sockaddr_in sa_peer; /* Address of last request */
204 int fd; /* File descriptor request was received on */
jjako2c381332003-10-21 19:09:53 +0000205
206 uint8_t teic_confirmed; /* 0: Not confirmed. 1: Confirmed */
207
208 /* Parameters used for secondary activation procedure (tei data) */
209 /* If (secondary == 1) then teic_own indicates linked PDP context */
210 uint8_t secondary; /* 0: Primary (control). 1: Secondary (data only) */
211 uint8_t nodata; /* 0: User plane PDP context. 1: No user plane */
212
213 /* Secondary contexts of this primary context */
214 uint32_t secondary_tei[PDP_MAXNSAPI];
jjako193e8b12003-11-10 12:31:41 +0000215
216 /* IP address used for Create and Update PDP Context Requests */
217 struct in_addr hisaddr0; /* Server address */
218 struct in_addr hisaddr1; /* Server address */
219
220
jjako52c24142002-12-16 13:33:51 +0000221};
222
223
224/* functions related to pdp_t management */
225int pdp_init();
226int pdp_newpdp(struct pdp_t **pdp, uint64_t imsi, uint8_t nsapi,
227 struct pdp_t *pdp_old);
228int pdp_freepdp(struct pdp_t *pdp);
229int pdp_getpdp(struct pdp_t **pdp);
230
231int pdp_getgtp0(struct pdp_t **pdp, uint16_t fl);
jjako08d331d2003-10-13 20:33:30 +0000232int pdp_getgtp1(struct pdp_t **pdp, uint32_t tei);
233
234int pdp_getimsi(struct pdp_t **pdp, uint64_t imsi, uint8_t nsapi);
jjako52c24142002-12-16 13:33:51 +0000235
236int pdp_tidhash(uint64_t tid);
237int pdp_tidset(struct pdp_t *pdp, uint64_t tid);
238int pdp_tiddel(struct pdp_t *pdp);
239int pdp_tidget(struct pdp_t **pdp, uint64_t tid);
240
jjako08d331d2003-10-13 20:33:30 +0000241
jjakoa7cd2492003-04-11 09:40:12 +0000242/*
jjako52c24142002-12-16 13:33:51 +0000243int pdp_iphash(void* ipif, struct ul66_t *eua);
244int pdp_ipset(struct pdp_t *pdp, void* ipif, struct ul66_t *eua);
245int pdp_ipdel(struct pdp_t *pdp);
246int pdp_ipget(struct pdp_t **pdp, void* ipif, struct ul66_t *eua);
jjakoa7cd2492003-04-11 09:40:12 +0000247*/
jjako52c24142002-12-16 13:33:51 +0000248
249int pdp_ntoeua(struct in_addr *src, struct ul66_t *eua);
jjakoa7cd2492003-04-11 09:40:12 +0000250int pdp_euaton(struct ul66_t *eua, struct in_addr *dst);
jjako52c24142002-12-16 13:33:51 +0000251uint64_t pdp_gettid(uint64_t imsi, uint8_t nsapi);
252int ulcpy(void* dst, void* src, size_t size);
253
254#endif /* !_PDP_H */