blob: 13ae28047cc3208100acfbcdf3b3940dc82a9a5c [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 *
jjako52c24142002-12-16 13:33:51 +000010 */
11
12#ifndef _PDP_H
13#define _PDP_H
14
15#define PDP_MAX 1024 /* Max number of PDP contexts */
jjako2c381332003-10-21 19:09:53 +000016#define PDP_MAXNSAPI 16 /* Max number of NSAPI */
jjako52c24142002-12-16 13:33:51 +000017
18#define PDP_DEBUG 0 /* Print debug information */
19
20/* GTP Information elements from 29.060 v3.9.0 7.7 Information Elements */
21/* Also covers version 0. Note that version 0 6: QOS Profile was superceded *
22 * by 135: QOS Profile in version 1 */
23
24
25struct sl_t {
Harald Weltef54a1f42010-05-04 11:08:38 +020026unsigned int l;
jjako52c24142002-12-16 13:33:51 +000027char *v;
28};
29
30struct ul_t {
Harald Weltef54a1f42010-05-04 11:08:38 +020031unsigned int l;
jjako52c24142002-12-16 13:33:51 +000032unsigned char *v;
33};
34
35struct ul16_t {
Harald Weltef54a1f42010-05-04 11:08:38 +020036unsigned int l;
jjako52c24142002-12-16 13:33:51 +000037unsigned char v[16];
38};
39
40struct ul66_t {
Harald Weltef54a1f42010-05-04 11:08:38 +020041unsigned int l;
jjako52c24142002-12-16 13:33:51 +000042unsigned char v[66];
43};
44
45struct ul255_t {
Harald Weltef54a1f42010-05-04 11:08:38 +020046unsigned int l;
jjako52c24142002-12-16 13:33:51 +000047unsigned char v[255];
48};
49
50
jjako2c381332003-10-21 19:09:53 +000051/* *****************************************************************
jjako52c24142002-12-16 13:33:51 +000052 * Information storage for each PDP context
53 *
jjako2c381332003-10-21 19:09:53 +000054 * Information storage for each PDP context is defined in 23.060
55 * section 13.3 and 03.60. Includes IMSI, MSISDN, APN, PDP-type,
56 * PDP-address (IP address), sequence numbers, charging ID. For the
57 * SGSN it also includes radio related mobility information.
58 *
59 * The following structure is a combination of the storage
60 * requirements for each PDP context for the GGSN and SGSN. It
61 * contains both 23.060 as well as 03.60 parameters. Information is
62 * stored in the format for information elements described in 29.060
63 * and 09.60.
jjako52c24142002-12-16 13:33:51 +000064 * 31 * 4 + 15 structs + = 120 + 15 structs ~ 2k / context
65 * Structs: IP address 16+4 bytes (6), APN 255 bytes (2)
66 * QOS: 255 bytes (3), msisdn 16 bytes (1),
67 *
68 * TODO: We need to consider who manages the pdp_t hash tables
69 * Is it gtp_lib, or is it the application?
70 * I suppose that it will be gtp_lib.
71 * SGSN will ask gtplib for new pdp_t. Fill out the fields,
72 * and pass it on to gtp_create_pdp_req.
73 * GGSN will receive gtp_create_pdp_ind, create new pdp_t and
74 * send responce to SGSN.
75 * SGSN will receive response and gtplib will find the
76 * original pdp_t corresponding to the request. This will be
77 * passed on to the application.
78 * Eventually the SGSN will close the connection, and the
79 * pdp_t will be freed by gtplib in SGSN and GGSN
80 * This means that gtplib need to have functions to
81 * allocate, free, sort and find pdp_t
82 * (newpdp, freepdp, getpdp)
83 * Hash tables: TID, IMSI, IP etc.)
jjako2c381332003-10-21 19:09:53 +000084 *
85 *
86 * Secondary PDP Context Activation Procedure
87 *
88 * With GTP version 1 it is possible to establish multiple PDP
89 * contexts with the same IP address. With this scheme the first
90 * context is established as normal. Following contexts are
91 * established by referencing one of the allready existing ones. Each
92 * context is uniquely identified by IMSI and NSAPI. Each context is
93 * allocated an tei_di, but they all share the same tei_c.
94 *
95 * For Delete PDP Context the context is referenced by tei_c and
96 * nsapi. As an option it is possible to include a teardown indicater,
97 * in which case all PDP contexts with the same tei_c (IP address) are
98 * deleted.
99 *
100 * For Update PDP Context the context is normally referenced by tei_c
101 * and nsapi. If moving from GTP0 to GTP1 during an update the context
102 * is referenced instead by IMSI and NSAPI.
103 *****************************************************************/
jjako52c24142002-12-16 13:33:51 +0000104
105struct pdp_t {
106 /* Parameter determining if this PDP is in use. */
107 uint8_t inuse; /* 0=free. 1=used by somebody */
108
109 /* Pointers related to hash tables */
110 struct pdp_t *tidnext;
111 struct pdp_t *ipnext;
112
113 /* Parameters shared by all PDP context belonging to the same MS */
114
115 void *ipif; /* IP network interface */
jjakoa7cd2492003-04-11 09:40:12 +0000116 void *peer; /* Pointer to peer protocol */
jjako52c24142002-12-16 13:33:51 +0000117 void *asap; /* Application specific service access point */
118
119 uint64_t imsi; /* International Mobile Subscriber Identity.*/
120 struct ul16_t msisdn; /* The basic MSISDN of the MS. */
121 uint8_t mnrg; /* Indicates whether the MS is marked as not reachable for PS at the HLR. (1 bit, not transmitted) */
122 uint8_t cch_sub; /* The charging characteristics for the MS, e.g. normal, prepaid, flat-rate, and/or hot billing subscription. (not transmitted) */
123 uint16_t traceref; /* Identifies a record or a collection of records for a particular trace. */
124 uint16_t tracetype;/* Indicates the type of trace. */
125 struct ul_t triggerid;/* Identifies the entity that initiated the trace. */
126 struct ul_t omcid; /* Identifies the OMC that shall receive the trace record(s). */
127 uint8_t rec_hlr; /* Indicates if HLR or VLR is performing database recovery. (1 bit, not transmitted) */
128
129 /* Parameters specific to each individual PDP context */
130
131 uint8_t pdp_id; /* Index of the PDP context. (PDP context identifier) */
132 uint8_t pdp_state;/* PDP State Packet data protocol state, INACTIVE or ACTIVE. (1 bit, not transmitted) */
133 /* struct ul_t pdp_type; * PDP type; e.g. PPP or IP. */
134 /* struct ul_t pdp_addr; * PDP address; e.g. an IP address. */
135 struct ul66_t eua; /* End user address. PDP type and address combined */
136 uint8_t pdp_dyn; /* Indicates whether PDP Address is static or dynamic. (1 bit, not transmitted) */
137 struct ul255_t apn_req;/* The APN requested. */
138 struct ul255_t apn_sub;/* The APN received from the HLR. */
139 struct ul255_t apn_use;/* The APN Network Identifier currently used. */
140 uint8_t nsapi; /* Network layer Service Access Point Identifier. (4 bit) */
141 uint16_t ti; /* Transaction Identifier. (4 or 12 bit) */
142
143 uint32_t teic_own; /* (Own Tunnel Endpoint Identifier Control) */
144 uint32_t teid_own; /* (Own Tunnel Endpoint Identifier Data I) */
145 uint32_t teic_gn; /* Tunnel Endpoint Identifier for the Gn and Gp interfaces. (Control plane) */
146 uint32_t teid_gn; /* Tunnel Endpoint Identifier for the Gn and Gp interfaces. (Data I) */
147 uint32_t tei_iu; /* Tunnel Endpoint Identifier for the Iu interface. */
148
149 uint16_t fllc; /* (Local Flow Label Control, gtp0) */
150 uint16_t fllu; /* (Local Flow Label Data I, gtp0) */
151 uint16_t flrc; /* (Remote gn/gp Flow Label Control, gtp0) */
152 uint16_t flru; /* (Remote gn/gp Flow Label Data I, gtp0) */
153
jjako08d331d2003-10-13 20:33:30 +0000154 struct ul255_t tft; /* Traffic flow template. */
jjako52c24142002-12-16 13:33:51 +0000155 /*struct ul16_t sgsnc; * The IP address of the SGSN currently serving this MS. (Control plane) */
156 /*struct ul16_t sgsnu; * The IP address of the SGSN currently serving this MS. (User plane) */
157 /*struct ul16_t ggsnc; * The IP address of the GGSN currently used. (Control plane) */
158 /*struct ul16_t ggsnu; * The IP address of the GGSN currently used. (User plane) */
159
160 struct ul16_t gsnlc; /* The IP address of the local GSN. (Control plane) */
161 struct ul16_t gsnlu; /* The IP address of the local GSN. (User plane) */
162 struct ul16_t gsnrc; /* The IP address of the remote GSN. (Control plane) */
163 struct ul16_t gsnru; /* The IP address of the remote GSN. (User plane) */
164
165 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) */
166 uint8_t qos_sub0[3]; /* The quality of service profile subscribed. */
167 uint8_t qos_req0[3]; /* The quality of service profile requested. */
168 uint8_t qos_neg0[3]; /* The quality of service profile negotiated. */
169 struct ul255_t qos_sub; /* The quality of service profile subscribed. */
170 struct ul255_t qos_req; /* The quality of service profile requested. */
171 struct ul255_t qos_neg; /* The quality of service profile negotiated. */
172 uint8_t radio_pri;/* The RLC/MAC radio priority level for uplink user data transmission. (4 bit) */
173 uint16_t flow_id; /* Packet flow identifier. */
174 /* 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)*/
175 uint8_t sndcpd; /* SNDCP sequence number of the next downlink N-PDU to be sent to the MS. */
176 uint8_t sndcpu; /* SNDCP sequence number of the next uplink N-PDU expected from the MS. */
177 uint8_t rec_sgsn; /* Indicates if the SGSN is performing database recovery. (1 bit, not transmitted) */
178/* uint16_t gtpsnd; GTP-U sequence number of the next downlink N-PDU to be sent to the SGSN / received from the GGSN. */
179/* uint16_t gtpsnu; GTP-U sequence number of the next uplink N-PDU to be received from the SGSN / sent to the GGSN */
180 uint16_t gtpsntx; /* GTP-U sequence number of the next downlink N-PDU to be sent (09.60 section 8.1.1.1) */
181 uint16_t gtpsnrx; /* GTP-U sequence number of the next uplink N-PDU to be received (09.60 section 8.1.1.1) */
182 uint8_t pdcpsndd; /* Sequence number of the next downlink in-sequence PDCP-PDU to be sent to the MS. */
183 uint8_t pdcpsndu; /* Sequence number of the next uplink in-sequence PDCP-PDU expected from the MS. */
184 uint32_t cid; /* Charging identifier, identifies charging records generated by SGSN and GGSN. */
185 uint16_t cch_pdp; /* The charging characteristics for this PDP context, e.g. normal, prepaid, flat-rate, and/or hot billing. */
186 struct ul16_t rnc_addr;/* The IP address of the RNC currently used. */
187 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) */
188 struct ul255_t pco_req; /* Requested packet control options. */
189 struct ul255_t pco_neg; /* Negotiated packet control options. */
190 uint32_t selmode; /* Selection mode. */
jjako08d331d2003-10-13 20:33:30 +0000191
192 /* Additional parameters used by library */
193
194 int version; /* Protocol version currently in use. 0 or 1 */
195
196 uint64_t tid; /* Combination of imsi and nsapi */
jjakob7b93fc2004-01-09 11:56:48 +0000197 uint16_t seq; /* Sequence number of last request */
jjako08d331d2003-10-13 20:33:30 +0000198 struct sockaddr_in sa_peer; /* Address of last request */
199 int fd; /* File descriptor request was received on */
jjako2c381332003-10-21 19:09:53 +0000200
201 uint8_t teic_confirmed; /* 0: Not confirmed. 1: Confirmed */
202
203 /* Parameters used for secondary activation procedure (tei data) */
204 /* If (secondary == 1) then teic_own indicates linked PDP context */
205 uint8_t secondary; /* 0: Primary (control). 1: Secondary (data only) */
206 uint8_t nodata; /* 0: User plane PDP context. 1: No user plane */
207
208 /* Secondary contexts of this primary context */
209 uint32_t secondary_tei[PDP_MAXNSAPI];
jjako193e8b12003-11-10 12:31:41 +0000210
211 /* IP address used for Create and Update PDP Context Requests */
212 struct in_addr hisaddr0; /* Server address */
213 struct in_addr hisaddr1; /* Server address */
214
215
jjako52c24142002-12-16 13:33:51 +0000216};
217
218
219/* functions related to pdp_t management */
220int pdp_init();
221int pdp_newpdp(struct pdp_t **pdp, uint64_t imsi, uint8_t nsapi,
222 struct pdp_t *pdp_old);
223int pdp_freepdp(struct pdp_t *pdp);
224int pdp_getpdp(struct pdp_t **pdp);
225
226int pdp_getgtp0(struct pdp_t **pdp, uint16_t fl);
jjako08d331d2003-10-13 20:33:30 +0000227int pdp_getgtp1(struct pdp_t **pdp, uint32_t tei);
228
229int pdp_getimsi(struct pdp_t **pdp, uint64_t imsi, uint8_t nsapi);
jjako52c24142002-12-16 13:33:51 +0000230
231int pdp_tidhash(uint64_t tid);
232int pdp_tidset(struct pdp_t *pdp, uint64_t tid);
233int pdp_tiddel(struct pdp_t *pdp);
234int pdp_tidget(struct pdp_t **pdp, uint64_t tid);
235
jjako08d331d2003-10-13 20:33:30 +0000236
jjakoa7cd2492003-04-11 09:40:12 +0000237/*
jjako52c24142002-12-16 13:33:51 +0000238int pdp_iphash(void* ipif, struct ul66_t *eua);
239int pdp_ipset(struct pdp_t *pdp, void* ipif, struct ul66_t *eua);
240int pdp_ipdel(struct pdp_t *pdp);
241int pdp_ipget(struct pdp_t **pdp, void* ipif, struct ul66_t *eua);
jjakoa7cd2492003-04-11 09:40:12 +0000242*/
jjako52c24142002-12-16 13:33:51 +0000243
244int pdp_ntoeua(struct in_addr *src, struct ul66_t *eua);
jjakoa7cd2492003-04-11 09:40:12 +0000245int pdp_euaton(struct ul66_t *eua, struct in_addr *dst);
jjako52c24142002-12-16 13:33:51 +0000246uint64_t pdp_gettid(uint64_t imsi, uint8_t nsapi);
247int ulcpy(void* dst, void* src, size_t size);
248
249#endif /* !_PDP_H */