Changes of Revision 400

open5gs_2.6.4.59.b116f.202307260026.dsc -> open5gs_2.6.4.61.35356.202307270026.dsc Changed
x
 
1
@@ -2,7 +2,7 @@
2
 Source: open5gs
3
 Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-scp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
4
 Architecture: any
5
-Version: 2.6.4.59.b116f.202307260026
6
+Version: 2.6.4.61.35356.202307270026
7
 Maintainer: Harald Welte <laforge@gnumonks.org>
8
 Uploaders: Sukchan Lee <acetcom@gmail.com>
9
 Homepage: https://open5gs.org
10
@@ -31,8 +31,8 @@
11
  open5gs-udr deb net optional arch=any
12
  open5gs-upf deb net optional arch=any
13
 Checksums-Sha1:
14
- a166ca28651f4d4a24f30e7a30cfec79edbcac2b 14131360 open5gs_2.6.4.59.b116f.202307260026.tar.xz
15
+ bac680a58f58f383d4bf3bac143e782fbff8441d 14132324 open5gs_2.6.4.61.35356.202307270026.tar.xz
16
 Checksums-Sha256:
17
- b7026ef82f2d52abfe04ef09de0fef2fe3a2539d4b16d969736acd3e54111afd 14131360 open5gs_2.6.4.59.b116f.202307260026.tar.xz
18
+ 1c4316fce67d7c9b9961f24ee2e949cd061e0897886eceb853b15e66cbee0a05 14132324 open5gs_2.6.4.61.35356.202307270026.tar.xz
19
 Files:
20
- 1f573725a7ee34df5e277e861e7fc714 14131360 open5gs_2.6.4.59.b116f.202307260026.tar.xz
21
+ 6983d1cedb2e8269f654522717ea0286 14132324 open5gs_2.6.4.61.35356.202307270026.tar.xz
22
open5gs_2.6.4.59.b116f.202307260026.tar.xz/.tarball-version -> open5gs_2.6.4.61.35356.202307270026.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-2.6.4.59-b116f.202307260026
3
+2.6.4.61-35356.202307270026
4
open5gs_2.6.4.59.b116f.202307260026.tar.xz/debian/changelog -> open5gs_2.6.4.61.35356.202307270026.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-open5gs (2.6.4.59.b116f.202307260026) unstable; urgency=medium
3
+open5gs (2.6.4.61.35356.202307270026) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom nightly feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Wed, 26 Jul 2023 00:27:44 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Thu, 27 Jul 2023 00:27:48 +0000
9
 
10
 open5gs (2.6.4) unstable; urgency=medium
11
 
12
open5gs_2.6.4.59.b116f.202307260026.tar.xz/lib/core/ogs-epoll.c -> open5gs_2.6.4.61.35356.202307270026.tar.xz/lib/core/ogs-epoll.c Changed
24
 
1
@@ -227,7 +227,22 @@
2
 
3
         received = context->event_listi.events;
4
         if (received & EPOLLERR) {
5
+        /*
6
+         * The libevent library has OGS_POLLOUT turned on in EPOLLERR.
7
+         *
8
+         * However, SIGPIPE can occur if write() is called
9
+         * when the peer connection is closed.
10
+         *
11
+         * Therefore, Open5GS turns off OGS_POLLOUT
12
+         * so that write() cannot be called in case of EPOLLERR.
13
+         *
14
+         * See also #2411 and #2312
15
+         */
16
+#if 0
17
             when = OGS_POLLIN|OGS_POLLOUT;
18
+#else
19
+            when = OGS_POLLIN;
20
+#endif
21
         } else if ((received & EPOLLHUP) && !(received & EPOLLRDHUP)) {
22
             when = OGS_POLLIN|OGS_POLLOUT;
23
         } else {
24
open5gs_2.6.4.59.b116f.202307260026.tar.xz/src/mme/s1ap-handler.c -> open5gs_2.6.4.61.35356.202307270026.tar.xz/src/mme/s1ap-handler.c Changed
638
 
1
@@ -259,12 +259,22 @@
2
 
3
     if (!ENB_UE_S1AP_ID) {
4
         ogs_error("No ENB_UE_S1AP_ID");
5
-        r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
6
+        r = s1ap_send_error_indication(enb, NULL, NULL,
7
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
8
+        ogs_expect(r == OGS_OK);
9
+        ogs_assert(r != OGS_ERROR);
10
+        return;
11
+    }
12
+
13
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
14
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
15
+        r = s1ap_send_error_indication(enb, NULL, NULL,
16
                 S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
17
         ogs_expect(r == OGS_OK);
18
         ogs_assert(r != OGS_ERROR);
19
         return;
20
     }
21
+
22
     enb_ue = enb_ue_find_by_enb_ue_s1ap_id(enb, *ENB_UE_S1AP_ID);
23
     if (!enb_ue) {
24
         enb_ue = enb_ue_add(enb, *ENB_UE_S1AP_ID);
25
@@ -453,6 +463,24 @@
26
     ogs_debug("    IP%s ENB_ID%d",
27
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
28
 
29
+    if (!ENB_UE_S1AP_ID) {
30
+        ogs_error("No ENB_UE_S1AP_ID");
31
+        r = s1ap_send_error_indication(enb, NULL, NULL,
32
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
33
+        ogs_expect(r == OGS_OK);
34
+        ogs_assert(r != OGS_ERROR);
35
+        return;
36
+    }
37
+
38
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
39
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
40
+        r = s1ap_send_error_indication(enb, NULL, NULL,
41
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
42
+        ogs_expect(r == OGS_OK);
43
+        ogs_assert(r != OGS_ERROR);
44
+        return;
45
+    }
46
+
47
     if (!MME_UE_S1AP_ID) {
48
         ogs_error("No MME_UE_S1AP_ID");
49
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
50
@@ -474,15 +502,6 @@
51
         return;
52
     }
53
 
54
-    if (!ENB_UE_S1AP_ID) {
55
-        ogs_error("No ENB_UE_S1AP_ID");
56
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
57
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
58
-        ogs_expect(r == OGS_OK);
59
-        ogs_assert(r != OGS_ERROR);
60
-        return;
61
-    }
62
-
63
     ogs_debug("    ENB_UE_S1AP_ID%d MME_UE_S1AP_ID%d",
64
             enb_ue->enb_ue_s1ap_id, enb_ue->mme_ue_s1ap_id);
65
 
66
@@ -602,6 +621,24 @@
67
     ogs_debug("    IP%s ENB_ID%d",
68
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
69
 
70
+    if (!ENB_UE_S1AP_ID) {
71
+        ogs_error("No ENB_UE_S1AP_ID");
72
+        r = s1ap_send_error_indication(enb, NULL, NULL,
73
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
74
+        ogs_expect(r == OGS_OK);
75
+        ogs_assert(r != OGS_ERROR);
76
+        return;
77
+    }
78
+
79
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
80
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
81
+        r = s1ap_send_error_indication(enb, NULL, NULL,
82
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
83
+        ogs_expect(r == OGS_OK);
84
+        ogs_assert(r != OGS_ERROR);
85
+        return;
86
+    }
87
+
88
     if (!MME_UE_S1AP_ID) {
89
         ogs_error("No MME_UE_S1AP_ID");
90
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
91
@@ -623,15 +660,6 @@
92
         return;
93
     }
94
 
95
-    if (!ENB_UE_S1AP_ID) {
96
-        ogs_error("No ENB_UE_S1AP_ID");
97
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
98
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
99
-        ogs_expect(r == OGS_OK);
100
-        ogs_assert(r != OGS_ERROR);
101
-        return;
102
-    }
103
-
104
     ogs_debug("    ENB_UE_S1AP_ID%d MME_UE_S1AP_ID%d",
105
             enb_ue->enb_ue_s1ap_id, enb_ue->mme_ue_s1ap_id);
106
 
107
@@ -692,6 +720,24 @@
108
     ogs_debug("    IP%s ENB_ID%d",
109
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
110
 
111
+    if (!ENB_UE_S1AP_ID) {
112
+        ogs_error("No ENB_UE_S1AP_ID");
113
+        r = s1ap_send_error_indication(enb, NULL, NULL,
114
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
115
+        ogs_expect(r == OGS_OK);
116
+        ogs_assert(r != OGS_ERROR);
117
+        return;
118
+    }
119
+
120
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
121
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
122
+        r = s1ap_send_error_indication(enb, NULL, NULL,
123
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
124
+        ogs_expect(r == OGS_OK);
125
+        ogs_assert(r != OGS_ERROR);
126
+        return;
127
+    }
128
+
129
     if (!MME_UE_S1AP_ID) {
130
         ogs_error("No MME_UE_S1AP_ID");
131
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
132
@@ -713,15 +759,6 @@
133
         return;
134
     }
135
 
136
-    if (!ENB_UE_S1AP_ID) {
137
-        ogs_error("No ENB_UE_S1AP_ID");
138
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
139
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
140
-        ogs_expect(r == OGS_OK);
141
-        ogs_assert(r != OGS_ERROR);
142
-        return;
143
-    }
144
-
145
     ogs_debug("    ENB_UE_S1AP_ID%d MME_UE_S1AP_ID%d",
146
             enb_ue->enb_ue_s1ap_id, enb_ue->mme_ue_s1ap_id);
147
 
148
@@ -863,6 +900,24 @@
149
     ogs_debug("    IP%s ENB_ID%d",
150
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
151
 
152
+    if (!ENB_UE_S1AP_ID) {
153
+        ogs_error("No ENB_UE_S1AP_ID");
154
+        r = s1ap_send_error_indication(enb, NULL, NULL,
155
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
156
+        ogs_expect(r == OGS_OK);
157
+        ogs_assert(r != OGS_ERROR);
158
+        return;
159
+    }
160
+
161
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
162
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
163
+        r = s1ap_send_error_indication(enb, NULL, NULL,
164
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
165
+        ogs_expect(r == OGS_OK);
166
+        ogs_assert(r != OGS_ERROR);
167
+        return;
168
+    }
169
+
170
     if (!MME_UE_S1AP_ID) {
171
         ogs_error("No MME_UE_S1AP_ID");
172
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
173
@@ -884,15 +939,6 @@
174
         return;
175
     }
176
 
177
-    if (!ENB_UE_S1AP_ID) {
178
-        ogs_error("No ENB_UE_S1AP_ID");
179
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
180
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
181
-        ogs_expect(r == OGS_OK);
182
-        ogs_assert(r != OGS_ERROR);
183
-        return;
184
-    }
185
-
186
     ogs_debug("    ENB_UE_S1AP_ID%d MME_UE_S1AP_ID%d",
187
             enb_ue->enb_ue_s1ap_id, enb_ue->mme_ue_s1ap_id);
188
 
189
@@ -978,6 +1024,24 @@
190
     ogs_debug("    IP%s ENB_ID%d",
191
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
192
 
193
+    if (!ENB_UE_S1AP_ID) {
194
+        ogs_error("No ENB_UE_S1AP_ID");
195
+        r = s1ap_send_error_indication(enb, NULL, NULL,
196
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
197
+        ogs_expect(r == OGS_OK);
198
+        ogs_assert(r != OGS_ERROR);
199
+        return;
200
+    }
201
+
202
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
203
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
204
+        r = s1ap_send_error_indication(enb, NULL, NULL,
205
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
206
+        ogs_expect(r == OGS_OK);
207
+        ogs_assert(r != OGS_ERROR);
208
+        return;
209
+    }
210
+
211
     if (!MME_UE_S1AP_ID) {
212
         ogs_error("No MME_UE_S1AP_ID");
213
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
214
@@ -999,15 +1063,6 @@
215
         return;
216
     }
217
 
218
-    if (!ENB_UE_S1AP_ID) {
219
-        ogs_error("No ENB_UE_S1AP_ID");
220
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
221
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
222
-        ogs_expect(r == OGS_OK);
223
-        ogs_assert(r != OGS_ERROR);
224
-        return;
225
-    }
226
-
227
     ogs_debug("    ENB_UE_S1AP_ID%d MME_UE_S1AP_ID%d",
228
             enb_ue->enb_ue_s1ap_id, enb_ue->mme_ue_s1ap_id);
229
 
230
@@ -1069,6 +1124,24 @@
231
     ogs_debug("    IP%s ENB_ID%d",
232
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
233
 
234
+    if (!ENB_UE_S1AP_ID) {
235
+        ogs_error("No ENB_UE_S1AP_ID");
236
+        r = s1ap_send_error_indication(enb, NULL, NULL,
237
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
238
+        ogs_expect(r == OGS_OK);
239
+        ogs_assert(r != OGS_ERROR);
240
+        return;
241
+    }
242
+
243
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
244
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
245
+        r = s1ap_send_error_indication(enb, NULL, NULL,
246
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
247
+        ogs_expect(r == OGS_OK);
248
+        ogs_assert(r != OGS_ERROR);
249
+        return;
250
+    }
251
+
252
     if (!MME_UE_S1AP_ID) {
253
         ogs_error("No MME_UE_S1AP_ID");
254
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
255
@@ -1090,15 +1163,6 @@
256
         return;
257
     }
258
 
259
-    if (!ENB_UE_S1AP_ID) {
260
-        ogs_error("No ENB_UE_S1AP_ID");
261
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
262
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
263
-        ogs_expect(r == OGS_OK);
264
-        ogs_assert(r != OGS_ERROR);
265
-        return;
266
-    }
267
-
268
     ogs_debug("    ENB_UE_S1AP_ID%d MME_UE_S1AP_ID%d",
269
             enb_ue->enb_ue_s1ap_id, enb_ue->mme_ue_s1ap_id);
270
 
271
@@ -1182,6 +1246,24 @@
272
     ogs_debug("    IP%s ENB_ID%d",
273
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
274
 
275
+    if (!ENB_UE_S1AP_ID) {
276
+        ogs_error("No ENB_UE_S1AP_ID");
277
+        r = s1ap_send_error_indication(enb, NULL, NULL,
278
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
279
+        ogs_expect(r == OGS_OK);
280
+        ogs_assert(r != OGS_ERROR);
281
+        return;
282
+    }
283
+
284
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
285
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
286
+        r = s1ap_send_error_indication(enb, NULL, NULL,
287
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
288
+        ogs_expect(r == OGS_OK);
289
+        ogs_assert(r != OGS_ERROR);
290
+        return;
291
+    }
292
+
293
     if (!MME_UE_S1AP_ID) {
294
         ogs_error("No MME_UE_S1AP_ID");
295
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
296
@@ -1203,15 +1285,6 @@
297
         return;
298
     }
299
 
300
-    if (!ENB_UE_S1AP_ID) {
301
-        ogs_error("No ENB_UE_S1AP_ID");
302
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
303
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
304
-        ogs_expect(r == OGS_OK);
305
-        ogs_assert(r != OGS_ERROR);
306
-        return;
307
-    }
308
-
309
     ogs_debug("    ENB_UE_S1AP_ID%d MME_UE_S1AP_ID%d",
310
         enb_ue->enb_ue_s1ap_id, enb_ue->mme_ue_s1ap_id);
311
 
312
@@ -1388,6 +1461,24 @@
313
     ogs_debug("    IP%s ENB_ID%d",
314
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
315
 
316
+    if (!ENB_UE_S1AP_ID) {
317
+        ogs_error("No ENB_UE_S1AP_ID");
318
+        r = s1ap_send_error_indication(enb, NULL, NULL,
319
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
320
+        ogs_expect(r == OGS_OK);
321
+        ogs_assert(r != OGS_ERROR);
322
+        return;
323
+    }
324
+
325
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
326
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
327
+        r = s1ap_send_error_indication(enb, NULL, NULL,
328
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
329
+        ogs_expect(r == OGS_OK);
330
+        ogs_assert(r != OGS_ERROR);
331
+        return;
332
+    }
333
+
334
     if (!MME_UE_S1AP_ID) {
335
         ogs_error("No MME_UE_S1AP_ID");
336
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
337
@@ -1485,6 +1576,24 @@
338
     ogs_debug("    IP%s ENB_ID%d",
339
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
340
 
341
+    if (!ENB_UE_S1AP_ID) {
342
+        ogs_error("No ENB_UE_S1AP_ID");
343
+        r = s1ap_send_error_indication(enb, NULL, NULL,
344
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
345
+        ogs_expect(r == OGS_OK);
346
+        ogs_assert(r != OGS_ERROR);
347
+        return;
348
+    }
349
+
350
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
351
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
352
+        r = s1ap_send_error_indication(enb, NULL, NULL,
353
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
354
+        ogs_expect(r == OGS_OK);
355
+        ogs_assert(r != OGS_ERROR);
356
+        return;
357
+    }
358
+
359
     if (!MME_UE_S1AP_ID) {
360
         ogs_error("No MME_UE_S1AP_ID");
361
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
362
@@ -1710,6 +1819,24 @@
363
     ogs_debug("    IP%s ENB_ID%d",
364
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
365
 
366
+    if (!ENB_UE_S1AP_ID) {
367
+        ogs_error("No ENB_UE_S1AP_ID");
368
+        r = s1ap_send_error_indication(enb, NULL, NULL,
369
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
370
+        ogs_expect(r == OGS_OK);
371
+        ogs_assert(r != OGS_ERROR);
372
+        return;
373
+    }
374
+
375
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
376
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
377
+        r = s1ap_send_error_indication(enb, NULL, NULL,
378
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
379
+        ogs_expect(r == OGS_OK);
380
+        ogs_assert(r != OGS_ERROR);
381
+        return;
382
+    }
383
+
384
     if (!MME_UE_S1AP_ID) {
385
         ogs_error("No MME_UE_S1AP_ID");
386
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
387
@@ -1731,15 +1858,6 @@
388
         return;
389
     }
390
 
391
-    if (!ENB_UE_S1AP_ID) {
392
-        ogs_error("No ENB_UE_S1AP_ID");
393
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
394
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
395
-        ogs_expect(r == OGS_OK);
396
-        ogs_assert(r != OGS_ERROR);
397
-        return;
398
-    }
399
-
400
     ogs_debug("    ENB_UE_S1AP_ID%d MME_UE_S1AP_ID%d",
401
             enb_ue->enb_ue_s1ap_id, enb_ue->mme_ue_s1ap_id);
402
 
403
@@ -1996,12 +2114,22 @@
404
 
405
     if (!ENB_UE_S1AP_ID) {
406
         ogs_error("No ENB_UE_S1AP_ID");
407
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, NULL,
408
+        r = s1ap_send_error_indication(enb, NULL, NULL,
409
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
410
+        ogs_expect(r == OGS_OK);
411
+        ogs_assert(r != OGS_ERROR);
412
+        return;
413
+    }
414
+
415
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
416
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
417
+        r = s1ap_send_error_indication(enb, NULL, NULL,
418
                 S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
419
         ogs_expect(r == OGS_OK);
420
         ogs_assert(r != OGS_ERROR);
421
         return;
422
     }
423
+
424
     if (!MME_UE_S1AP_ID) {
425
         ogs_error("No MME_UE_S1AP_ID");
426
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
427
@@ -2458,6 +2586,24 @@
428
     ogs_debug("    IP%s ENB_ID%d",
429
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
430
 
431
+    if (!ENB_UE_S1AP_ID) {
432
+        ogs_error("No ENB_UE_S1AP_ID");
433
+        r = s1ap_send_error_indication(enb, NULL, NULL,
434
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
435
+        ogs_expect(r == OGS_OK);
436
+        ogs_assert(r != OGS_ERROR);
437
+        return;
438
+    }
439
+
440
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
441
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
442
+        r = s1ap_send_error_indication(enb, NULL, NULL,
443
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
444
+        ogs_expect(r == OGS_OK);
445
+        ogs_assert(r != OGS_ERROR);
446
+        return;
447
+    }
448
+
449
     if (!MME_UE_S1AP_ID) {
450
         ogs_error("No MME_UE_S1AP_ID");
451
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
452
@@ -2479,15 +2625,6 @@
453
         return;
454
     }
455
 
456
-    if (!ENB_UE_S1AP_ID) {
457
-        ogs_error("No ENB_UE_S1AP_ID");
458
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
459
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
460
-        ogs_expect(r == OGS_OK);
461
-        ogs_assert(r != OGS_ERROR);
462
-        return;
463
-    }
464
-
465
     ogs_debug("    Source : ENB_UE_S1AP_ID%d MME_UE_S1AP_ID%d",
466
             source_ue->enb_ue_s1ap_id, source_ue->mme_ue_s1ap_id);
467
 
468
@@ -2602,6 +2739,24 @@
469
     ogs_debug("    IP%s ENB_ID%d",
470
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
471
 
472
+    if (!ENB_UE_S1AP_ID) {
473
+        ogs_error("No ENB_UE_S1AP_ID");
474
+        r = s1ap_send_error_indication(enb, NULL, NULL,
475
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
476
+        ogs_expect(r == OGS_OK);
477
+        ogs_assert(r != OGS_ERROR);
478
+        return;
479
+    }
480
+
481
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
482
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
483
+        r = s1ap_send_error_indication(enb, NULL, NULL,
484
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
485
+        ogs_expect(r == OGS_OK);
486
+        ogs_assert(r != OGS_ERROR);
487
+        return;
488
+    }
489
+
490
     if (!MME_UE_S1AP_ID) {
491
         ogs_error("No MME_UE_S1AP_ID");
492
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
493
@@ -2623,15 +2778,6 @@
494
         return;
495
     }
496
 
497
-    if (!ENB_UE_S1AP_ID) {
498
-        ogs_error("No ENB_UE_S1AP_ID");
499
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
500
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
501
-        ogs_expect(r == OGS_OK);
502
-        ogs_assert(r != OGS_ERROR);
503
-        return;
504
-    }
505
-
506
     if (!E_RABAdmittedList) {
507
         ogs_error("No E_RABAdmittedList");
508
         r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
509
@@ -2927,6 +3073,24 @@
510
     ogs_debug("    IP%s ENB_ID%d",
511
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
512
 
513
+    if (!ENB_UE_S1AP_ID) {
514
+        ogs_error("No ENB_UE_S1AP_ID");
515
+        r = s1ap_send_error_indication(enb, NULL, NULL,
516
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
517
+        ogs_expect(r == OGS_OK);
518
+        ogs_assert(r != OGS_ERROR);
519
+        return;
520
+    }
521
+
522
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
523
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
524
+        r = s1ap_send_error_indication(enb, NULL, NULL,
525
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
526
+        ogs_expect(r == OGS_OK);
527
+        ogs_assert(r != OGS_ERROR);
528
+        return;
529
+    }
530
+
531
     if (!MME_UE_S1AP_ID) {
532
         ogs_error("No MME_UE_S1AP_ID");
533
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
534
@@ -2948,15 +3112,6 @@
535
         return;
536
     }
537
 
538
-    if (!ENB_UE_S1AP_ID) {
539
-        ogs_error("No ENB_UE_S1AP_ID");
540
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
541
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
542
-        ogs_expect(r == OGS_OK);
543
-        ogs_assert(r != OGS_ERROR);
544
-        return;
545
-    }
546
-
547
     if (!Cause) {
548
         ogs_error("No Cause");
549
         r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
550
@@ -3040,6 +3195,30 @@
551
     ogs_debug("    IP%s ENB_ID%d",
552
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
553
 
554
+    if (!ENB_UE_S1AP_ID) {
555
+        ogs_error("No ENB_UE_S1AP_ID");
556
+        r = s1ap_send_error_indication(enb, NULL, NULL,
557
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
558
+        ogs_expect(r == OGS_OK);
559
+        ogs_assert(r != OGS_ERROR);
560
+        return;
561
+    }
562
+
563
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
564
+
565
+        /*
566
+         * The test code is using this problem,
567
+         * so we use WARN here instead of ERROR.
568
+         */
569
+        ogs_warn("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
570
+
571
+        r = s1ap_send_error_indication(enb, NULL, NULL,
572
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
573
+        ogs_expect(r == OGS_OK);
574
+        ogs_assert(r != OGS_ERROR);
575
+        return;
576
+    }
577
+
578
     if (!MME_UE_S1AP_ID) {
579
         ogs_error("No MME_UE_S1AP_ID");
580
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
581
@@ -3061,15 +3240,6 @@
582
         return;
583
     }
584
 
585
-    if (!ENB_UE_S1AP_ID) {
586
-        ogs_error("No ENB_UE_S1AP_ID");
587
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
588
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
589
-        ogs_expect(r == OGS_OK);
590
-        ogs_assert(r != OGS_ERROR);
591
-        return;
592
-    }
593
-
594
     if (!ENB_StatusTransfer_TransparentContainer) {
595
         ogs_error("No ENB_StatusTransfer_TransparentContainer");
596
         r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
597
@@ -3158,6 +3328,24 @@
598
     ogs_debug("    IP%s ENB_ID%d",
599
             OGS_ADDR(enb->sctp.addr, buf), enb->enb_id);
600
 
601
+    if (!ENB_UE_S1AP_ID) {
602
+        ogs_error("No ENB_UE_S1AP_ID");
603
+        r = s1ap_send_error_indication(enb, NULL, NULL,
604
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
605
+        ogs_expect(r == OGS_OK);
606
+        ogs_assert(r != OGS_ERROR);
607
+        return;
608
+    }
609
+
610
+    if (*ENB_UE_S1AP_ID > 0x00ffffff) {
611
+        ogs_error("Invalid ENB_UE_S1AP_ID %lx", *ENB_UE_S1AP_ID);
612
+        r = s1ap_send_error_indication(enb, NULL, NULL,
613
+                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
614
+        ogs_expect(r == OGS_OK);
615
+        ogs_assert(r != OGS_ERROR);
616
+        return;
617
+    }
618
+
619
     if (!MME_UE_S1AP_ID) {
620
         ogs_error("No MME_UE_S1AP_ID");
621
         r = s1ap_send_error_indication(enb, NULL, ENB_UE_S1AP_ID,
622
@@ -3177,15 +3365,6 @@
623
         ogs_expect(r == OGS_OK);
624
         ogs_assert(r != OGS_ERROR);
625
         return;
626
-    }
627
-
628
-    if (!ENB_UE_S1AP_ID) {
629
-        ogs_error("No ENB_UE_S1AP_ID");
630
-        r = s1ap_send_error_indication(enb, MME_UE_S1AP_ID, ENB_UE_S1AP_ID,
631
-                S1AP_Cause_PR_protocol, S1AP_CauseProtocol_semantic_error);
632
-        ogs_expect(r == OGS_OK);
633
-        ogs_assert(r != OGS_ERROR);
634
-        return;
635
     }
636
 
637
     if (!EUTRAN_CGI) {
638
open5gs_2.6.4.59.b116f.202307260026.tar.xz/tests/attach/abts-main.c -> open5gs_2.6.4.61.35356.202307270026.tar.xz/tests/attach/abts-main.c Changed
17
 
1
@@ -28,6 +28,7 @@
2
 abts_suite *test_ue_context(abts_suite *suite);
3
 abts_suite *test_reset(abts_suite *suite);
4
 abts_suite *test_issues(abts_suite *suite);
5
+abts_suite *test_crash(abts_suite *suite);
6
 
7
 const struct testlist {
8
     abts_suite *(*func)(abts_suite *suite);
9
@@ -41,6 +42,7 @@
10
     {test_ue_context},
11
     {test_reset},
12
     {test_issues},
13
+    {test_crash},
14
     {NULL},
15
 };
16
 
17
open5gs_2.6.4.61.35356.202307270026.tar.xz/tests/attach/crash-test.c Added
119
 
1
@@ -0,0 +1,117 @@
2
+/*
3
+ * Copyright (C) 2023 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#include "test-common.h"
22
+
23
+static void test1_func(abts_case *tc, void *data)
24
+{
25
+    int rv;
26
+    ogs_socknode_t *s1ap;
27
+    ogs_pkbuf_t *sendbuf;
28
+    ogs_pkbuf_t *recvbuf;
29
+
30
+    s1ap = tests1ap_client(AF_INET);
31
+    ABTS_PTR_NOTNULL(tc, s1ap);
32
+
33
+    sendbuf = test_s1ap_build_malformed_s1_setup_request(0);
34
+    ABTS_PTR_NOTNULL(tc, sendbuf);
35
+
36
+    rv = testenb_s1ap_send(s1ap, sendbuf);
37
+    ABTS_INT_EQUAL(tc, OGS_OK, rv);
38
+
39
+    recvbuf = testenb_s1ap_read(s1ap);
40
+    ABTS_PTR_NOTNULL(tc, recvbuf);
41
+    ogs_pkbuf_free(recvbuf);
42
+
43
+    testenb_s1ap_close(s1ap);
44
+}
45
+
46
+static void test2_func(abts_case *tc, void *data)
47
+{
48
+    int rv;
49
+    ogs_socknode_t *s1ap;
50
+    ogs_pkbuf_t *sendbuf;
51
+    ogs_pkbuf_t *recvbuf = NULL;
52
+    ogs_s1ap_message_t message;
53
+    int i;
54
+
55
+    s1ap = tests1ap_client(AF_INET);
56
+    ABTS_PTR_NOTNULL(tc, s1ap);
57
+
58
+    sendbuf = test_s1ap_build_s1_setup_request(
59
+            S1AP_ENB_ID_PR_macroENB_ID, 0x54f64);
60
+    ABTS_PTR_NOTNULL(tc, sendbuf);
61
+
62
+    rv = testenb_s1ap_send(s1ap, sendbuf);
63
+    ABTS_INT_EQUAL(tc, OGS_OK, rv);
64
+
65
+    recvbuf = testenb_s1ap_read(s1ap);
66
+    ABTS_PTR_NOTNULL(tc, recvbuf);
67
+    ogs_pkbuf_free(recvbuf);
68
+
69
+    sendbuf = test_s1ap_build_malformed_enb_status_transfer(0);
70
+    ABTS_PTR_NOTNULL(tc, sendbuf);
71
+
72
+    rv = testenb_s1ap_send(s1ap, sendbuf);
73
+    ABTS_INT_EQUAL(tc, OGS_OK, rv);
74
+
75
+    recvbuf = testenb_s1ap_read(s1ap);
76
+    ABTS_PTR_NOTNULL(tc, recvbuf);
77
+    ogs_pkbuf_free(recvbuf);
78
+
79
+    testenb_s1ap_close(s1ap);
80
+}
81
+
82
+#if 0
83
+static void test3_func(abts_case *tc, void *data)
84
+{
85
+    int rv;
86
+    ogs_socknode_t *s1ap;
87
+    ogs_pkbuf_t *sendbuf;
88
+    ogs_pkbuf_t *recvbuf;
89
+
90
+    s1ap = tests1ap_client(AF_INET);
91
+    ABTS_PTR_NOTNULL(tc, s1ap);
92
+
93
+    sendbuf = test_s1ap_build_oversized_message(0);
94
+    ABTS_PTR_NOTNULL(tc, sendbuf);
95
+
96
+    rv = testenb_s1ap_send(s1ap, sendbuf);
97
+    ABTS_INT_EQUAL(tc, OGS_OK, rv);
98
+
99
+    recvbuf = testenb_s1ap_read(s1ap);
100
+    ABTS_PTR_NOTNULL(tc, recvbuf);
101
+    ogs_pkbuf_free(recvbuf);
102
+
103
+    testenb_s1ap_close(s1ap);
104
+}
105
+#endif
106
+
107
+abts_suite *test_crash(abts_suite *suite)
108
+{
109
+    suite = ADD_SUITE(suite)
110
+
111
+    abts_run_test(suite, test1_func, NULL);
112
+    abts_run_test(suite, test2_func, NULL);
113
+#if 0
114
+    abts_run_test(suite, test3_func, NULL);
115
+#endif
116
+
117
+    return suite;
118
+}
119
open5gs_2.6.4.59.b116f.202307260026.tar.xz/tests/attach/meson.build -> open5gs_2.6.4.61.35356.202307270026.tar.xz/tests/attach/meson.build Changed
9
 
1
@@ -26,6 +26,7 @@
2
     reset-test.c
3
     ue-context-test.c
4
     issues-test.c
5
+    crash-test.c
6
 '''.split())
7
 
8
 testapp_attach_exe = executable('attach',
9
open5gs_2.6.4.59.b116f.202307260026.tar.xz/tests/attach/s1setup-test.c -> open5gs_2.6.4.61.35356.202307270026.tar.xz/tests/attach/s1setup-test.c Changed
38
 
1
@@ -97,36 +97,12 @@
2
     }
3
 }
4
 
5
-static void s1setup_test3(abts_case *tc, void *data)
6
-{
7
-    int rv;
8
-    ogs_socknode_t *s1ap;
9
-    ogs_pkbuf_t *sendbuf;
10
-    ogs_pkbuf_t *recvbuf;
11
-
12
-    s1ap = tests1ap_client(AF_INET);
13
-    ABTS_PTR_NOTNULL(tc, s1ap);
14
-
15
-    sendbuf = test_s1ap_build_invalid_packet(0);
16
-    ABTS_PTR_NOTNULL(tc, sendbuf);
17
-
18
-    rv = testenb_s1ap_send(s1ap, sendbuf);
19
-    ABTS_INT_EQUAL(tc, OGS_OK, rv);
20
-
21
-    recvbuf = testenb_s1ap_read(s1ap);
22
-    ABTS_PTR_NOTNULL(tc, recvbuf);
23
-    ogs_pkbuf_free(recvbuf);
24
-
25
-    testenb_s1ap_close(s1ap);
26
-}
27
-
28
 abts_suite *test_s1setup(abts_suite *suite)
29
 {
30
     suite = ADD_SUITE(suite)
31
 
32
     abts_run_test(suite, s1setup_test1, NULL);
33
     abts_run_test(suite, s1setup_test2, NULL);
34
-    abts_run_test(suite, s1setup_test3, NULL);
35
 
36
     return suite;
37
 }
38
open5gs_2.6.4.59.b116f.202307260026.tar.xz/tests/common/s1ap-build.c -> open5gs_2.6.4.61.35356.202307270026.tar.xz/tests/common/s1ap-build.c Changed
150
 
1
@@ -1997,30 +1997,6 @@
2
 
3
 #define TEST_S1AP_MAX_MESSAGE 64
4
 
5
-ogs_pkbuf_t *test_s1ap_build_invalid_packet(int i)
6
-{
7
-    ogs_pkbuf_t *pkbuf = NULL;
8
-    const char *payloadTEST_S1AP_MAX_MESSAGE = {
9
-        "0011002100000300 3b40080062f22400 0001700040000700 00004062f224002c"
10
-        "00030a0100",
11
-        "",
12
-    };
13
-
14
-    uint16_t lenTEST_S1AP_MAX_MESSAGE = {
15
-        37,
16
-        0,
17
-    };
18
-
19
-    char hexbufOGS_HUGE_LEN;
20
-
21
-    pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
22
-    ogs_assert(pkbuf);
23
-    ogs_pkbuf_put_data(pkbuf,
24
-        ogs_hex_from_string(payloadi, hexbuf, sizeof(hexbuf)), leni);
25
-
26
-    return pkbuf;
27
-}
28
-
29
 ogs_pkbuf_t *test_s1ap_build_enb_configuration_transfer(int i)
30
 {
31
     ogs_pkbuf_t *pkbuf = NULL;
32
@@ -2064,3 +2040,117 @@
33
 
34
     return pkbuf;
35
 }
36
+
37
+ogs_pkbuf_t *test_s1ap_build_malformed_s1_setup_request(int i)
38
+{
39
+    ogs_pkbuf_t *pkbuf = NULL;
40
+    const char *payloadTEST_S1AP_MAX_MESSAGE = {
41
+        "0011002100000300 3b40080062f22400 0001700040000700 00004062f224002c"
42
+        "00030a0100",
43
+        "",
44
+    };
45
+
46
+    uint16_t lenTEST_S1AP_MAX_MESSAGE = {
47
+        37,
48
+        0,
49
+    };
50
+
51
+    char hexbufOGS_HUGE_LEN;
52
+
53
+    pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
54
+    ogs_assert(pkbuf);
55
+    ogs_pkbuf_put_data(pkbuf,
56
+        ogs_hex_from_string(payloadi, hexbuf, sizeof(hexbuf)), leni);
57
+
58
+    return pkbuf;
59
+}
60
+
61
+ogs_pkbuf_t *test_s1ap_build_malformed_enb_status_transfer(int i)
62
+{
63
+    ogs_pkbuf_t *pkbuf = NULL;
64
+    const char *payloadTEST_S1AP_MAX_MESSAGE = {
65
+        "0018406100000a00b0400e05c000e815b337606bcf9ab42f180043400600bb31"
66
+        "1d84c000f54001300058400480249995009240010000b0400e44d089e4b2a9d1"
67
+        "a7e369b61c000a000840048036d48c000840048020cd4df30040014300084005"
68
+        "c0d27e885a5001120c2b7d9501034007500198b6010101010101010101010101"
69
+        "0101010101010101010101010101010101010101010101010101010101010101"
70
+        "01230101010101010101010101010101010101100101010101fe010101010101"
71
+        "0101010101010101010101010101010101010101010101010101010101010101"
72
+        "0101010101010101010105010101010101010101010101010101010101010101"
73
+
74
+        "0101010101010101010101010101010101010101010101010101010101010101"
75
+        "0101016f40020110000240013600004005c0fe6eba000a8000df00d73c084000"
76
+        "084000800d02800000400500000200afffff0504800b0e9c00004005c070217c"
77
+        "db000840048042c1431702400110000101010101010101010101010101010101"
78
+        "0101010101010101010101010101010101010101010101010101010101010101"
79
+        "0101010101010101010101010101010101010101010101010101010101010901"
80
+        "0101010101010101010101010101010101010101010101010101010101010101"
81
+        "0101f80001010101010101010101010101010101010101010101010101010101"
82
+
83
+        "0101010101010101010101010101010101010101010101010101010101010101"
84
+        "0101010201010101010101010101010101010101010101010101010101010101"
85
+        "010101011c010101010101010101010101010101010101010101010101010101"
86
+        "010101010101010101010101010101010101010101010101ffffff7f01010101"
87
+        "0101010101010101010101010101010101010101010101010101010101010101"
88
+        "01010101ef010101010101010101010101010101010101010101010101010101"
89
+        "0101010101010101010101010101010101010101010101010101010101020101"
90
+        "0101010101800000000101010101010101010101010101010101010101010101"
91
+
92
+        "0101010101010101010101010101010101010101010101010101010101010101"
93
+        "01010101010101010101010101010101010101010101010302bb9a0042407901"
94
+        "00dc721f8001f9f47b0a00054082cc802f48e000004005c098627f8800004005"
95
+        "c06f86cead00084004803d7ca200004005c0db1ec0c10019408278408c010101"
96
+        "0101010101010101010101010101010101000000000101010101010101010101"
97
+        "0101010101010101010101010101010101010101010101010101010101010101"
98
+        "0101010101010101010101010101010101010101010201010101010101010101"
99
+        "0101010101010101010101010101010101010101010101010101010101010101"
100
+
101
+        "0101010101010101010101010101010101010101010101010101010101010101"
102
+        "0101010101010101010101010101010101010101010101010101010101010101"
103
+        "010501010101010101010101010101",
104
+        "",
105
+    };
106
+
107
+    uint16_t lenTEST_S1AP_MAX_MESSAGE = {
108
+        1103,
109
+        0,
110
+    };
111
+
112
+    char hexbufOGS_HUGE_LEN;
113
+
114
+    pkbuf = ogs_pkbuf_alloc(NULL, OGS_MAX_SDU_LEN);
115
+    ogs_assert(pkbuf);
116
+    ogs_pkbuf_put_data(pkbuf,
117
+        ogs_hex_from_string(payloadi, hexbuf, sizeof(hexbuf)), leni);
118
+
119
+    return pkbuf;
120
+}
121
+
122
+ogs_pkbuf_t *test_s1ap_build_oversized_message(int i)
123
+{
124
+#define OVERSIZE 52170
125
+    ogs_pkbuf_t *pkbuf = NULL;
126
+    const char *payloadTEST_S1AP_MAX_MESSAGE = {
127
+        "000808080800244080d500000a007740030000ed00754032953382b4d330d07a0cb8f03b189d6b2c3ced65ce2c7ac9c45f738edd8ec89e921dd700eba23ec48ee91c3ae85652000001000052141c50182e0123810f99d6782a05c9d4a48ffe7fc7a0d252141c50182e022300244061d500000a007740030000ed00754032913382b4d330d07a1cb8f03b189d6b2c3ced65ce2c7ac9c45f7371dd8ec89e921dd700eba235c48ee91c3afc564eb37c9776006f4002204f00754032f363d6782a7faad4a48ffe7fc7a0d252141c50182e02238191f2fcc95b330c2b97173272f3822e2050eb13c7aee0281463e5011e0030404500000a004a400100004a400101ad013a4003021199004a4001013a4001000176040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404f4040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040450505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504d50505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505000020000505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050507f505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050507f5050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050509240010000b0400e44d089e4b2a9400e05c000e838b337606bcf9ab42f180043400600bb311d84c000f54001400008400480505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504f50505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050455050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504a505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050ffff7fff5050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050506a505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050ff5050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404ee03040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404170404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404046262626262626262626262626262626262626262626262626262626204040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404e20404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404045050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504c5050505050505050000a0002400200a0005c40010000024002000000024001340002400130005c400100005c400100005c405a4009005b400448f6d327005b400428210359005b400428f3e848005b40096cfb44465080f8bc41005b40054c04a134ae005b40096c523cc91d80c01ffa005b400428e68e9d005b400428354c58005b400428332ab6005b400100000a400114005c4001005050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050509240010000b0400e44d089e4b2a9400e05c000e838b337606bcf9ab42f180043400600bb311d84c000f54001400008400480505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504f50505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050504a505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050",
128
+        "",
129
+    };
130
+
131
+    uint16_t lenTEST_S1AP_MAX_MESSAGE = {
132
+        OVERSIZE,
133
+        0,
134
+    };
135
+
136
+    char *hexbuf = NULL;
137
+
138
+    hexbuf = ogs_calloc(1, OVERSIZE);
139
+    ogs_assert(hexbuf);
140
+
141
+    pkbuf = ogs_pkbuf_alloc(NULL, OVERSIZE);
142
+    ogs_assert(pkbuf);
143
+    ogs_pkbuf_put_data(pkbuf,
144
+        ogs_hex_from_string(payloadi, hexbuf, sizeof(hexbuf)), leni);
145
+
146
+    ogs_free(hexbuf);
147
+
148
+    return pkbuf;
149
+}
150
open5gs_2.6.4.59.b116f.202307260026.tar.xz/tests/common/s1ap-build.h -> open5gs_2.6.4.61.35356.202307270026.tar.xz/tests/common/s1ap-build.h Changed
16
 
1
@@ -66,9 +66,13 @@
2
 ogs_pkbuf_t *test_s1ap_build_handover_failure(test_ue_t *test_ue,
3
         S1AP_Cause_PR group, long cause);
4
 
5
-ogs_pkbuf_t *test_s1ap_build_invalid_packet(int i);
6
 ogs_pkbuf_t *test_s1ap_build_enb_configuration_transfer(int i);
7
 
8
+ogs_pkbuf_t *test_s1ap_build_malformed_s1_setup_request(int i);
9
+ogs_pkbuf_t *test_s1ap_build_malformed_enb_status_transfer(int i);
10
+ogs_pkbuf_t *test_s1ap_build_malformed_e_rab_modification_indication(int i);
11
+ogs_pkbuf_t *test_s1ap_build_oversized_message(int i);
12
+
13
 #ifdef __cplusplus
14
 }
15
 #endif
16