-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfunctions.c
More file actions
641 lines (562 loc) · 20.4 KB
/
Copy pathfunctions.c
File metadata and controls
641 lines (562 loc) · 20.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
/**
Implementation of functions.h
Copyright (C) 2016-2024 Michele Campus <michelecampus5@gmail.com>
This file is part of Decoder.
decoder is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
decoder is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
decoder. If not, see <http://www.gnu.org/licenses/>.
**/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pcap.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <errno.h>
#include <signal.h>
#include "globals.h"
#include "functions.h"
#include "dissector.h"
#include "proto_wrappers.h"
#include "structures.h"
#include "uthash.h"
#define JSON_BUFFER_LEN 5000
// globals
int is_interleaved = 0;
/* ### Declaration of HASH TABLE ### */
extern struct Hash_Table *HT_Flows;
// get the pcap error occurred
extern inline void pcap_fatal(const char *, ...);
/**
#param uint16_t
#param int
#param int
@return n bit from position p of number x
**/
static inline uint8_t getBits(uint16_t x, int p, int n)
{
return (x >> (p+1-n)) & ~(~0 << n);
}
// Init data flow struct
struct flow_callback_proto *flow_callback_proto_init(pcap_t * p_handle, u_int8_t save)
{
struct flow_callback_proto * flow = malloc(sizeof(struct flow_callback_proto));
if(!flow) perror("fcp malloc failed");
flow->pcap_handle = p_handle;
flow->save = save;
return flow;
}
// Print IPv4 address
void print_ipv4(u_int32_t addr)
{
unsigned char bytes[4];
bytes[0] = addr & 0xFF;
bytes[1] = (addr >> 8) & 0xFF;
bytes[2] = (addr >> 16) & 0xFF;
bytes[3] = (addr >> 24) & 0xFF;
printf("%d.%d.%d.%d\n", bytes[0], bytes[1], bytes[2], bytes[3]);
}
// Print IPv6 address
void print_ipv6(const struct ipv6_addr * addr) {
printf("%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x\n",
(int)addr->ipv6_addr[0], (int)addr->ipv6_addr[1],
(int)addr->ipv6_addr[2], (int)addr->ipv6_addr[3],
(int)addr->ipv6_addr[4], (int)addr->ipv6_addr[5],
(int)addr->ipv6_addr[6], (int)addr->ipv6_addr[7],
(int)addr->ipv6_addr[8], (int)addr->ipv6_addr[9],
(int)addr->ipv6_addr[10], (int)addr->ipv6_addr[11],
(int)addr->ipv6_addr[12], (int)addr->ipv6_addr[13],
(int)addr->ipv6_addr[14], (int)addr->ipv6_addr[15]);
}
/** ### Function for the HASH TABLE (uthash) ### **/
// FIND FLOW BY KEY
struct Hash_Table * find_flow_by_key(struct Flow_key *key)
{
struct Hash_Table * flow_in;
// search the flow by a key
HASH_FIND(hh, HT_Flows, key, sizeof(struct Flow_key), flow_in);
return flow_in;
}
// DELETE FLOW BY KEY
void delete_flow_by_key(struct Flow_key *key)
{
struct Hash_Table * flow_in;
// search the flow by a key
HASH_FIND(hh, HT_Flows, key, sizeof(struct Flow_key), flow_in);
if(flow_in) {
HASH_DEL(HT_Flows, flow_in);
free(flow_in);
}
}
// DELETE ALL FLOWS
void delete_all_Flows()
{
struct Hash_Table *current_user, *tmp;
HASH_ITER(hh, HT_Flows, current_user, tmp) {
HASH_DEL(HT_Flows, current_user); /* delete it (users advances to next) */
free(current_user);
}
}
// PRINT HASH TABLE
void print_HashTable(u_int8_t ip_version)
{
struct Hash_Table *el;
int n = 1, f = 1;
printf("\n###### HASH TABLE ######\n");
printf("Total flow stored = %d\n", n = HASH_COUNT(HT_Flows));
if(n > 0) {
for(el = HT_Flows; el != NULL; el = (struct Hash_Table*)(el->hh.next)) {
printf("Flow %d: \n", f++);
printf("\t IP source addr = ");
if(ip_version == IPv4)
print_ipv4(el->flow_key_hash.ip_src);
else
print_ipv6(&el->flow_key_hash.ipv6_src);
printf("\t IP dest addr = ");
if(ip_version == IPv4)
print_ipv4(el->flow_key_hash.ip_dst);
else
print_ipv6(&el->flow_key_hash.ipv6_dst);
printf("\t SRC PORT = %d\n", el->flow_key_hash.src_port);
printf("\t DST PORT = %d\n", el->flow_key_hash.dst_port);
}
}
}
// Call pcap_loop()
/* void * run_loop_proto_collect(void * arg) { */
/* long thread_id = (long) arg; */
/* if(call_thread[thread_id].flow_c->pcap_handle) */
/* pcap_loop(call_thread[thread_id].flow_c->pcap_handle, -1, callback_proto, (u_char*) &thread_id); */
/* return NULL; */
/* } */
// Function to process a packet
static unsigned int process_packet(const u_char * payload,
const u_int16_t size_payload,
const u_int8_t ip_version,
const struct ipv4_hdr * iphv4,
const struct ipv6_hdr * iphv6,
const u_int16_t src_port,
const u_int16_t dst_port,
const u_int8_t proto_id_l3,
struct flow_callback_proto * fcp,
u_int8_t save)
{
dissector_ctx_t ctx = {
.payload = payload,
.size_payload = size_payload,
.ip_version = ip_version,
.iphv4 = iphv4,
.iphv6 = iphv6,
.src_port = src_port,
.dst_port = dst_port,
.proto_id_l3 = proto_id_l3,
.fcp = fcp,
.save = save
};
return dissector_run(&ctx);
}
// Protocol callback function
void callback_proto(u_char *args, const struct pcap_pkthdr *pkt_header, const u_char *packet) {
// define flow based on thread_id on call_thread array
/* struct flow_callback_proto * fcp = call_thread[thread_id].flow_c; */
struct flow_callback_proto * fcp = (struct flow_callback_proto*) args;
// define ethernet header
const struct ether_hdr *ethernet_header = NULL;
// define vlan header
const struct vlan_hdr *vlan_header = NULL;
// define mpls
union mpls {
uint32_t u32;
struct mpls_header mpls;
} mpls;
// define radio_tap header
const struct radiotap_hdr *radiotap_header = NULL;
// define wifi header
/* const struct wifi_hdr *wifi_header = NULL; */
// define llc header
const struct llc_snap_hdr *llc_snap_header = NULL;
// define ipv4 header
const struct ipv4_hdr *ipv4_header = NULL;
// define ipv4 header
const struct ipv6_hdr *ipv6_header = NULL;
// define tcp header
const struct tcp_hdr *tcp_header = NULL;
// define udp header
const struct udp_hdr *udp_header = NULL;
// define sctp header
const struct sctp_hdr *sctp_header = NULL;
const struct sctp_chunk_hdr *sctp_chunk = NULL;
// define payload container
const u_char *payload = NULL;
/* lengths and offsets */
u_int16_t check, type = 0, pyld_eth_len = 0;
u_int16_t wifi_len = 0, radiotap_len = 0; /* fc; */
u_int16_t link_offset = 0, ipv4_offset = 0, ipv6_offset = 0;
u_int16_t tcp_offset = 0, udp_offset = 0, sctp_offset = 0;
u_int16_t size_payload = 0;
uint8_t is_sctp = 0;
u_int16_t src_port = 0;
u_int16_t dst_port = 0;
u_int8_t s = fcp->save;
uint32_t Len = pkt_header->len;
// check if a SIGINT is arrived
if(signal_flag){
/* incoming SIGINT, forcing termination */
pcap_breakloop(fcp->pcap_handle);
}
printf("\n\n==== Got a %d byte packet ====\n", pkt_header->len);
/* check the datalink type to cast properly datalink header */
const int datalink_type = pcap_datalink(fcp->pcap_handle);
switch(datalink_type)
{
/** IEEE 802.3 Ethernet - 1 **/
case DLT_EN10MB:
ethernet_header = (const struct ether_hdr*)(packet);
check = ntohs(ethernet_header->type_or_len);
// ethernet - followed by llc snap 05DC
if(check <= 1500)
pyld_eth_len = check;
// ethernet II - ether type 0600
else if (check >= 1536)
type = check;
// set datalink offset
link_offset = sizeof(struct ether_hdr);
// check for LLC layer with SNAP extension
if(pyld_eth_len != 0) {
if(packet[link_offset] == SNAP) {
llc_snap_header = (struct llc_snap_hdr *)(packet + link_offset);
// SNAP field tells the upper layer protocol
type = llc_snap_header->type;
// update datalink offset with LLC/SNAP header len
link_offset += + 8;
}
}
// update stats
fcp->stats.ethernet_pkts++;
break;
/** Radiotap link-layer**/
case DLT_IEEE802_11_RADIO:
radiotap_header = (struct radiotap_hdr *) packet;
radiotap_len = radiotap_header->len;
u_int8_t flags;
// Check for FLAG fields
flags = getBits(radiotap_header->present, 1, 1);
printf("Flags = %d\n", flags);
/* // Check Bad FCS presence */
/* if((radiotap_header->flags & BAD_FCS) == BAD_FCS) { */
/* fcp->stats.discarded_bytes += pkt_header->len; */
/* return; */
/* } */
/* // Calculate 802.11 header length (variable) */
/* wifi_header = (struct wifi_hdr*)(packet + radiotap_len); */
/* fc = wifi_header->fc; // FRAME CONTROL BYTES */
/* // check wifi data presence */
/* if(FCF_TYPE(fc) == WIFI_DATA) { */
/* if((FCF_TO_DS(fc) && FCF_FROM_DS(fc) == 0x0) || */
/* (FCF_TO_DS(fc) == 0x0 && FCF_FROM_DS(fc))) */
/* wifi_len = 26; /\* + 4 byte fcs *\/ */
/* } */
// no data frames
/* else */
break;
// Wifi data present - check LLC
llc_snap_header = (struct llc_snap_hdr*)(packet + wifi_len + radiotap_len);
if(llc_snap_header->dsap == SNAP)
type = ntohs(llc_snap_header->type);
else {
int data = pkt_header->len - radiotap_len - IEEE80211HDR_SIZE;
printf("Probably a wifi packet of %d bytes with data encription\n", data);
// update stats
fcp->stats.wifi_pkts++;
return;
}
link_offset = radiotap_len + wifi_len + sizeof(struct llc_snap_hdr);
break;
case DLT_IEEE802:
link_offset = TOKENRING_SIZE;
break;
case DLT_FDDI:
link_offset = FDDIHDR_SIZE;
break;
case DLT_SLIP:
link_offset = SLIPHDR_SIZE;
break;
case DLT_PPP:
link_offset = PPPHDR_SIZE;
break;
case DLT_LOOP:
case DLT_NULL:
link_offset = LOOPHDR_SIZE;
break;
case DLT_RAW:
link_offset = RAWHDR_SIZE;
break;
/*** Linux Cooked Capture ***/
#ifdef __linux__
case DLT_LINUX_SLL:
type = (packet[link_offset+14] << 8) + packet[link_offset+15];
link_offset = ISDNHDR_SIZE;
break;
#endif
/*** Wi-fi ***/
/* case DLT_IEEE802_11: */
/* // Calculate 802.11 header length (variable) */
/* wifi_header = (struct wifi_hdr*)(packet); */
/* fc = wifi_header->fc; */
/* // check wifi data presence */
/* if(FCF_TYPE(fc) == WIFI_DATA) { */
/* if((FCF_TO_DS(fc) && FCF_FROM_DS(fc) == 0x0) || */
/* (FCF_TO_DS(fc) == 0x0 && FCF_FROM_DS(fc))) { */
/* wifi_len = 24; */
/* link_offset = wifi_len; */
/* } */
/* } */
/* // no data frames */
/* else */
/* link_offset = IEEE80211HDR_SIZE; */
/* /\* // Wifi data present - check LLC *\/ */
/* /\* link_offset = wifi_len + sizeof(struct llc_hdr); *\/ */
/* // update stats */
/* fcp->wifi_pkts++; */
/* break; */
default:
perror("unsupported interface type\n");
}
u_int16_t ipv4_type = 0, ipv6_type = 0;
/* CHECK ETHER TYPE */
switch(type)
{
// IPv4
case ETHERTYPE_IPv4:
ipv4_type = 1;
break;
// ARP
case ETHERTYPE_ARP:
// update stats
fcp->stats.arp_pkts++;
break;
// IPv6
case ETHERTYPE_IPv6:
ipv6_type = 1;
break;
// VLAN
case ETHERTYPE_VLAN:
// update stats
fcp->stats.vlan_pkts++;
vlan_header = (struct vlan_hdr *) (packet + link_offset);
type = ntohs(vlan_header->type);
// double tagging for 802.1Q
if(type == 0x8100) {
link_offset += 4;
vlan_header = (struct vlan_hdr *) (packet + link_offset);
type = ntohs(vlan_header->type);
}
ipv4_type = (type == ETHERTYPE_IPv4) ? 1 : 0;
ipv6_type = (type == ETHERTYPE_IPv6) ? 1 : 0;
link_offset += 4;
break;
// MPLS
case ETHERTYPE_MPLS_UNI:
case ETHERTYPE_MPLS_MULTI:
if(link_offset + 4 >= (int)pkt_header->caplen)
return;
// update stats
fcp->stats.mpls_pkts++;
mpls.u32 = *((uint32_t *) &packet[link_offset]);
mpls.u32 = ntohl(mpls.u32);
type = ETHERTYPE_IPv4;
link_offset += 4;
// multiple MPLS fields
while(!mpls.mpls.s) {
mpls.u32 = *((uint32_t *) &packet[link_offset]);
mpls.u32 = ntohl(mpls.u32);
link_offset += 4;
}
ipv4_type = 1;
break;
// PPPoE
case ETHERTYPE_PPPoE:
fcp->stats.pppoe_pkts++;
break;
}
/** Check upper layer protocol **/
u_int8_t ip_version;
u_int8_t ip_proto;
// IPv4
if(ipv4_type == 1) {
// decode IP layer
ip_version = IPv4; // pass to dissector
ipv4_header = (const struct ipv4_hdr*)(packet + link_offset);
ipv4_offset = ((u_int16_t)ipv4_header->ihl * 4);
if(ipv4_offset < 20) {
fprintf(stderr, "Invalid IPv4 header length: %u bytes\n", ipv4_offset);
return;
}
ip_proto = ipv4_header->ip_proto;
// update stats
fcp->stats.ipv4_pkts++;
}
// IPv6
else if(ipv6_type == 1) {
ip_version = IPv6; // pass to dissector
ipv6_header = (const struct ipv6_hdr*)(packet + link_offset);
ipv6_offset = sizeof(const struct ipv6_hdr); //IPV6_HDR_LEN
if(ipv6_offset < IPV6_HDR_LEN) {
fprintf(stderr, "Invalid IPv6 header length: %u bytes\n", ipv6_offset);
return;
}
ip_proto = ipv6_header->ipv6_ctlun.ipv6_un1.ipv6_un1_next;
// update stats
fcp->stats.ipv6_pkts++;
}
// NO IP LAYER
else {
fprintf(stderr, "No IP layer found -> skip packet\n");
fcp->stats.discarded_bytes += pkt_header->len;
return;
}
// set ip_offset
u_int16_t ip_offset = (ipv4_type == 0) ? ipv6_offset : ipv4_offset;
// decode transport layer
switch(ip_proto)
{
case IPPROTO_TCP: // TCP
printf("\t Protocol: TCP\n");
tcp_header = (const struct tcp_hdr *)(packet + link_offset + ip_offset);
tcp_offset = tcp_header->tcp_offset * 4;
if(tcp_offset < 20) {
fprintf(stderr, "Invalid TCP header length: %u bytes\n", tcp_offset);
return;
}
// update stats
fcp->stats.tcp_pkts++;
break;
case IPPROTO_UDP: // UDP
printf("\t Protocol: UDP\n");
udp_header = (const struct udp_hdr *)(packet + link_offset + ip_offset);
// calculate udp header length is useless (UDP header is always 8 byte)
udp_offset = UDP_HDR_LEN;
// update stats
fcp->stats.udp_pkts++;
break;
case IPPROTO_SCTP: // SCTP
printf("\t Protocol: SCTP\n");
int chunk_read = 0;
sctp_header = (const struct sctp_hdr *)(packet + link_offset + ip_offset);
sctp_offset = SCTP_HDR_LEN;
/* pp = sctp_header + sctp_offset; */
chunk_read = link_offset + ip_offset + sctp_offset;
while(chunk_read < Len) {
sctp_chunk = (const struct sctp_chunk_hdr *)(packet + link_offset +
ip_offset + sctp_offset);
chunk_read += ntohs(sctp_chunk->len);
sctp_offset += 16;
}
/* TODO: FINISH */
is_sctp = 1;
break;
default:
printf("\t Protocol: unknown\n");
return;
}
u_int16_t l4_offset = 0;
// set l4 offset
if(is_sctp == 0) {
l4_offset = (ip_proto == IPPROTO_TCP) ? tcp_offset : udp_offset;
(ip_proto == IPPROTO_TCP) ? (src_port = ntohs(tcp_header->tcp_src_port)) : (src_port = ntohs(udp_header->udp_src_port));
(ip_proto == IPPROTO_TCP) ? (dst_port = ntohs(tcp_header->tcp_dst_port)) : (dst_port = ntohs(udp_header->udp_dst_port));
}
else {
l4_offset = sctp_offset;
src_port = ntohs(sctp_header->sctp_src_port);
dst_port = ntohs(sctp_header->sctp_dst_port);
}
// decode payload
payload = ((u_char *)(packet + link_offset + ip_offset + l4_offset));
// compute tcp payload (segment) size
size_payload = pkt_header->len - ip_offset - l4_offset - link_offset;
if(size_payload > 0)
printf("\t Payload (%d bytes):\n", size_payload);
/**
This is the function to process a packet.
The args are usefull to create the key for the Hashtable
Inside the function there is the handle of Hashtable and Flow
**/
check = process_packet(payload,
size_payload,
ip_version,
ipv4_header,
ipv6_header,
src_port,
dst_port,
ip_proto,
fcp,
s
/* HT_Flows */);
if(check == 4) {
printf("TLS/SSL packet founded and parsed\n");
fcp->stats.num_tls_pkts++;
print_HashTable(ip_version);
}
else if(check == 3) {
printf("DIAMETER Protocol founded and parsed\n");
fcp->stats.num_diameter_pkts++;
}
else if(check == 2) {
printf("NGCP Protocol founded and parsed\n");
fcp->stats.num_ngcp_pkts++;
}
else if(check == 1) {
printf("RTCP Protocol founded and parsed\n");
fcp->stats.num_rtcp_pkts++;
}
else if(check == 5) {
printf("RTSP Protocol founded and parsed\n");
fcp->stats.num_rtsp_pkts++;
}
else if(check == 6) {
printf("RTP Protocol founded and parsed\n");
fcp->stats.num_rtp_pkts++;
}
else if(check == 7) {
printf("GTP Protocol founded and parsed\n");
fcp->stats.num_gtp_pkts++;
}
else {
printf("\n\t Other protocol L4\n\n");
}
}
/**
Print statistic about the entire session
*/
void print_stats(struct flow_callback_proto * fcp)
{
printf(" \n---------- DECODER STATISTICS ----------\n\n");
printf(" # Discarded bytes = %d\n", fcp->stats.discarded_bytes);
printf(" # Ethernet pkts = %d\n", fcp->stats.ethernet_pkts);
printf(" # ARP pkts = %d\n", fcp->stats.arp_pkts);
printf(" # IPv4 pkts = %d\n", fcp->stats.ipv4_pkts);
printf(" # IPv6 pkts = %d\n", fcp->stats.ipv6_pkts);
printf(" # VLAN pkts = %d\n", fcp->stats.vlan_pkts);
printf(" # MPLS pkts = %d\n", fcp->stats.mpls_pkts);
printf(" # PPPoE pkts = %d\n", fcp->stats.pppoe_pkts);
printf(" # TCP pkts = %d\n", fcp->stats.tcp_pkts);
printf(" # UDP pkts = %d\n\n", fcp->stats.udp_pkts);
printf("\033[0;33m");
printf(" # TLS handshake pkts = %d\n", fcp->stats.num_tls_pkts);
printf(" # RTP pkts = %d\n", fcp->stats.num_rtp_pkts);
printf(" # RTCP pkts = %d\n", fcp->stats.num_rtcp_pkts);
printf(" # GTP pkts = %d\n", fcp->stats.num_gtp_pkts);
printf(" # DIAMETER pkts = %d\n", fcp->stats.num_diameter_pkts);
printf(" # NGCP pkts = %d\n", fcp->stats.num_ngcp_pkts);
printf(" # RTSP pkts = %d\n", fcp->stats.num_rtsp_pkts);
printf("\033[0m");
printf(" ---------- ------------------ ----------\n\n");
}