File: path6.c

package info (click to toggle)
ipv6toolkit 2.0%2Bds.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,260 kB
  • sloc: ansic: 26,831; perl: 1,058; makefile: 137
file content (1932 lines) | stat: -rw-r--r-- 54,089 bytes parent folder | download | duplicates (3)
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
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
/*
 * path6: A versatile IPv6 traceroute
 *
 * Copyright (C) 2011-2015 Fernando Gont (fgont@si6networks.com)
 *
 * This program 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.
 *
 * This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * 
 * Build with: make path6
 * 
 * It requires that the libpcap library be installed on your system.
 *
 * Please send any bug reports to Fernando Gont <fgont@si6networks.com>
 */

#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/select.h>

#include <netinet/in.h>
#include <arpa/inet.h>
#include <netinet/ip6.h>
#include <netinet/icmp6.h>
#include <net/if.h>
#include <netinet/tcp.h>

#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <time.h>
#include <getopt.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <setjmp.h>
#include <math.h>
#include <pcap.h>

#include "path6.h"
#include "ipv6toolkit.h"
#include "libipv6.h"



/* Function prototypes */
void				init_packet_data(struct iface_data *);
int					send_probe(struct iface_data *, unsigned int, unsigned char, unsigned char);
void				print_attack_info(struct iface_data *);
void				print_help(void);
void				usage(void);

/* Used for router discovery */
struct iface_data	idata;

struct in6_addr		randprefix;
unsigned char		randpreflen;

/* Data structures for packets read from the wire */
struct pcap_pkthdr	*pkthdr;
const u_char		*pktdata;
unsigned char		*pkt_end, *pkt_ptr;
struct ether_header	*pkt_ether;
struct ip6_hdr		*pkt_ipv6;
struct ip6_frag		*pkt_fh;
struct icmp6_hdr	*pkt_icmp6;
struct tcp_hdr		*pkt_tcp;
struct udp_hdr		*pkt_udp;
struct ah_hdr		*pkt_ah;
struct esp_hdr		*pkt_esp;
struct ip6_eh		*pkt_eh;

struct nd_neighbor_solicit *pkt_ns;
struct in6_addr		*pkt_ipv6addr;
unsigned int		pktbytes;
unsigned int		rhbytes, rhleft;

bpf_u_int32			my_netmask;
bpf_u_int32			my_ip;
struct bpf_program	pcap_filter;
char 				dev[64], errbuf[PCAP_ERRBUF_SIZE];
unsigned char		buffer[65556], buffrh[MIN_IPV6_HLEN + MIN_TCP_HLEN];
unsigned char		*v6buffer, *ptr, *startofprefixes;
char				*pref;
    
struct ip6_hdr		*ipv6;
struct icmp6_hdr	*icmp6;

struct ether_header	*ethernet;
struct dlt_null		*dlt_null;
#if defined(__linux__)
	struct sll_linux		*sll_linux;
#endif
struct nd_opt_tlla	*tllaopt;

char				*lasts, *rpref;
char				*charptr;

size_t				nw;
unsigned long		ul_res, ul_val;
unsigned int		i, j, startrand;
unsigned int		skip;
unsigned int		frags, nfrags;
uint16_t			mask, ip6length;
uint8_t			hoplimit;

char 				plinkaddr[ETHER_ADDR_PLEN];
char 				psrcaddr[INET6_ADDRSTRLEN], pdstaddr[INET6_ADDRSTRLEN], pv6addr[INET6_ADDRSTRLEN];
unsigned char 		verbose_f=0, numeric_f= TRUE;
unsigned char 		loop_f=0, localaddr_f=0, probe_f=0;
unsigned char		srcprefix_f=0, hoplimit_f=0, ip6length_f=0, icmp6psize_f=0, send_f=0, end_f=0, delayp_f=0;

/* Support for Extension Headers */
unsigned int		dstopthdrs, dstoptuhdrs, hbhopthdrs;
char				hbhopthdr_f=0, dstoptuhdr_f=0, dstopthdr_f=0;
unsigned char		*dstopthdr[MAX_DST_OPT_HDR], *dstoptuhdr[MAX_DST_OPT_U_HDR];
unsigned char		*hbhopthdr[MAX_HBH_OPT_HDR];
unsigned int		dstopthdrlen[MAX_DST_OPT_HDR], dstoptuhdrlen[MAX_DST_OPT_U_HDR];
unsigned int		hbhopthdrlen[MAX_HBH_OPT_HDR], m, pad;

struct ip6_frag		*fh, fraghdr;
struct ip6_hdr		*fipv6;
unsigned char		fragbuffer[ETHER_HDR_LEN+MIN_IPV6_HLEN+MAX_IPV6_PAYLOAD];

unsigned char		*fragpart, *fptr, *fptrend, *ptrend, *ptrhdr, *ptrhdrend;
unsigned int		hdrlen, ndstopthdr=0, nhbhopthdr=0, ndstoptuhdr=0;
unsigned int		nfrags, fragsize;
unsigned char		*prev_nh, *startoffragment;

/* Parameters for the probe packets */
unsigned char		probetype=PROBE_ICMP6_ECHO;
unsigned char		dstport_f=0, tcpflags_f=0, pps_f=0, bps_f=0, endhost_f=0, rhbytes_f=0, droppacket_f=FALSE;
uint16_t			dstport;
uint8_t				tcpflags=0, cprobe, pprobe, nprobe, maxprobes, chop, phop, nhop, maxhops;

struct in6_addr		nsrc;
uint32_t			tcpseq, spi;

#define MAXHOPS		30
#define MAXPROBES	3
struct probe		test[MAXHOPS][MAXPROBES];
unsigned long		pktinterval, rate;
unsigned int		packetsize;

char				line[LINE_BUFFER_SIZE];


int main(int argc, char **argv){
	extern char		*optarg;	
	fd_set			sset, rset;

	int				r, sel;
	struct timeval	curtime, start, lastprobe, sched, timeout;
	uint8_t			ulhtype;
	struct target_ipv6	targetipv6;

	static struct option longopts[] = {
		{"interface", required_argument, 0, 'i'},
		{"link-src-addr", required_argument, 0, 'S'},
		{"link-dst-addr", required_argument, 0, 'D'},
		{"src-address", required_argument, 0, 's'},
		{"dst-address", required_argument, 0, 'd'},
		{"dst-opt-hdr", required_argument, 0, 'u'},
		{"dst-opt-u-hdr", required_argument, 0, 'U'},
		{"hbh-opt-hdr", required_argument, 0, 'H'},
		{"frag-hdr", required_argument, 0, 'y'},
		{"numeric", no_argument, 0, 'n'},
		{"probe-type", required_argument, 0, 'p'},
		{"payload-size", required_argument, 0, 'P'},
		{"dst-port", required_argument, 0, 'a'},
		{"tcp-flags", required_argument, 0, 'X'},
		{"rate-limit", required_argument, 0, 'r'},
		{"verbose", no_argument, 0, 'v'},
		{"help", no_argument, 0, 'h'},
		{0, 0, 0, 0}
	};

	char shortopts[]= "i:S:D:s:d:u:U:H:y:np:P:a:X:r:vh";

	char option;

	if(argc<=1){
		usage();
		exit(EXIT_FAILURE);
	}


	srandom(time(NULL));
	hoplimit=64+random()%180;
	init_iface_data(&idata);

	while((r=getopt_long(argc, argv, shortopts, longopts, NULL)) != -1) {
		option= r;

		switch(option) {
			case 'i':  /* Interface */
				strncpy(idata.iface, optarg, IFACE_LENGTH-1);
				idata.iface[IFACE_LENGTH-1]=0;
				idata.ifindex= if_nametoindex(idata.iface);
				idata.iface_f=TRUE;
				break;

			case 's':	/* IPv6 Source Address */
				if((charptr = strtok_r(optarg, "/", &lasts)) == NULL){
					puts("Error in Source Address");
					exit(EXIT_FAILURE);
				}

				if ( inet_pton(AF_INET6, charptr, &(idata.srcaddr)) <= 0){
					puts("inet_pton(): Source Address not valid");
					exit(EXIT_FAILURE);
				}

				idata.srcaddr_f = 1;
		
				if((charptr = strtok_r(NULL, " ", &lasts)) != NULL){
					idata.srcpreflen = atoi(charptr);
		
					if(idata.srcpreflen>128){
						puts("Prefix length error in IPv6 Source Address");
						exit(EXIT_FAILURE);
					}

					sanitize_ipv6_prefix(&(idata.srcaddr), idata.srcpreflen);
					idata.srcprefix_f=1;
				}

				break;
	    
			case 'd':	/* IPv6 Destination Address */
				strncpy( targetipv6.name, optarg, NI_MAXHOST);
				targetipv6.name[NI_MAXHOST-1]= 0;
				targetipv6.flags= AI_CANONNAME;

				if( (r=get_ipv6_target(&targetipv6)) != 0){

					if(r < 0){
						printf("Unknown Destination: %s\n", gai_strerror(targetipv6.res));
					}
					else{
						puts("Unknown Destination: No IPv6 address found for specified destination");
					}

					exit(1);
				}

				idata.dstaddr= targetipv6.ip6;
				idata.dstaddr_f = 1;
				break;

			case 'u':	/* Destinations Options Header */
				if(ndstopthdr >= MAX_DST_OPT_HDR){
					puts("Too many Destination Options Headers");
					exit(EXIT_FAILURE);
				}

				hdrlen= atoi(optarg);
		
				if(hdrlen < 8){
					puts("Bad length in Destination Options Header");
					exit(EXIT_FAILURE);
				}
		    
				hdrlen = ((hdrlen+7)/8) * 8;
				dstopthdrlen[ndstopthdr]= hdrlen;

				if( (dstopthdr[ndstopthdr]= malloc(hdrlen)) == NULL){
					puts("Not enough memory for Destination Options Header");
					exit(EXIT_FAILURE);
				}

				ptrhdr= dstopthdr[ndstopthdr] + 2;
				ptrhdrend= dstopthdr[ndstopthdr] + hdrlen;

				while( ptrhdr < ptrhdrend){

					if( (ptrhdrend-ptrhdr)>257)
						pad= 257;
					else
						pad= ptrhdrend-ptrhdr;
			
					if(!insert_pad_opt(ptrhdr, ptrhdrend, pad)){
						puts("Destination Options Header Too Big");
						exit(EXIT_FAILURE);
					}
		    
					ptrhdr= ptrhdr + pad;
				}

				*(dstopthdr[ndstopthdr]+1)= (hdrlen/8)-1;
				ndstopthdr++;
				dstopthdr_f=1;
				break;

			case 'U':	/* Destination Options Header (Unfragmentable Part) */
				if(ndstoptuhdr >= MAX_DST_OPT_U_HDR){
					puts("Too many Destination Options Headers (Unfragmentable Part)");
					exit(EXIT_FAILURE);
				}

				hdrlen= atoi(optarg);
		
				if(hdrlen < 8){
					puts("Bad length in Destination Options Header (Unfragmentable Part)");
					exit(EXIT_FAILURE);
				}

				hdrlen = ((hdrlen+7)/8) * 8;
				dstoptuhdrlen[ndstoptuhdr]= hdrlen;
		
				if( (dstoptuhdr[ndstoptuhdr]= malloc(hdrlen)) == NULL){
					puts("Not enough memory for Destination Options Header (Unfragmentable Part)");
					exit(EXIT_FAILURE);
				}

				ptrhdr= dstoptuhdr[ndstoptuhdr]+2;
				ptrhdrend= dstoptuhdr[ndstoptuhdr] + hdrlen;
		
				while( ptrhdr < ptrhdrend){

					if( (ptrhdrend-ptrhdr)>257)
						pad= 257;
					else
						pad= ptrhdrend-ptrhdr;

					if(!insert_pad_opt(ptrhdr, ptrhdrend, pad)){
						puts("Destination Options Header (Unfragmentable Part) Too Big");
						exit(EXIT_FAILURE);
					}

					ptrhdr = ptrhdr + pad;
				}

				*(dstoptuhdr[ndstoptuhdr]+1)= (hdrlen/8) - 1;
				ndstoptuhdr++;
				dstoptuhdr_f=1;
				break;

			case 'H':	/* Hop-by-Hop Options Header */
				if(nhbhopthdr >= MAX_HBH_OPT_HDR){
					puts("Too many Hop-by-Hop Options Headers");
					exit(EXIT_FAILURE);
				}

				hdrlen= atoi(optarg);
		
				if(hdrlen < 8){
					puts("Bad length in Hop-by-Hop Options Header");
					exit(EXIT_FAILURE);
				}
		    
				hdrlen = ((hdrlen+7)/8) * 8;
				hbhopthdrlen[nhbhopthdr]= hdrlen;
		
				if( (hbhopthdr[nhbhopthdr]= malloc(hdrlen)) == NULL){
					puts("Not enough memory for Hop-by-Hop Options Header");
					exit(EXIT_FAILURE);
				}

				ptrhdr= hbhopthdr[nhbhopthdr] + 2;
				ptrhdrend= hbhopthdr[nhbhopthdr] + hdrlen;
		
		
				while( ptrhdr < ptrhdrend){

					if( (ptrhdrend-ptrhdr)>257)
						pad= 257;
					else
						pad= ptrhdrend-ptrhdr;

					if(!insert_pad_opt(ptrhdr, ptrhdrend, pad)){
						puts("Hop-by-Hop Options Header Too Big");
						exit(EXIT_FAILURE);
					}

					ptrhdr = ptrhdr + pad;
				}

				*(hbhopthdr[nhbhopthdr]+1)= (hdrlen/8) - 1;
				nhbhopthdr++;
				hbhopthdr_f=1;
				break;

			case 'y':	/* Fragment header */
				nfrags= atoi(optarg);
				if(nfrags < 8){
					puts("Error in Fragmentation option: Fragment Size must be at least 8 bytes");
					exit(EXIT_FAILURE);
				}
		
				nfrags = (nfrags +7) & 0xfff8;
				idata.fragh_f=TRUE;
				break;

			case 'n':	/* Print IPv6 addresses ratther than hostnames */
				numeric_f=TRUE;
				break;

			case 'S':	/* Source Ethernet address */
				if(ether_pton(optarg, &(idata.hsrcaddr), sizeof(idata.hsrcaddr)) == 0){
					puts("Error in Source link-layer address.");
					exit(EXIT_FAILURE);
				}
		
				idata.hsrcaddr_f = 1;
				break;

			case 'D':	/* Destination Ethernet Address */
				if(ether_pton(optarg, &(idata.hdstaddr), sizeof(idata.hdstaddr)) == 0){
					puts("Error in Source link-layer address.");
					exit(EXIT_FAILURE);
				}
		
				idata.hdstaddr_f = 1;
				break;


			case 'p':	/* Probe type */
				if(strncmp(optarg, "echo", strlen("echo")) == 0 || strncmp(optarg, "icmp", strlen("icmp")) == 0){
					probetype= PROBE_ICMP6_ECHO;
					probe_f=TRUE;
				}
				else if(strncmp(optarg, "udp", strlen("udp")) == 0){
					probetype= PROBE_UDP;
					probe_f=TRUE;
				}
				else if(strncmp(optarg, "tcp", strlen("tcp")) == 0){
					probetype= PROBE_TCP;
					probe_f=TRUE;
				}
				else if(strncmp(optarg, "esp", strlen("ESP")) == 0){
					probetype= PROBE_ESP;
					probe_f=TRUE;
				}
				else if(strncmp(optarg, "ah", strlen("AH")) == 0){
					probetype= PROBE_AH;
					probe_f=TRUE;
				}
				else{
					puts("Error in '-p' option: Unknown probe type");
					exit(EXIT_FAILURE);
				}

				break;

			case 'P':	/* Payload Size*/
				rhbytes= atoi(optarg);
				rhbytes_f= 1;
				break;

			case 'a':	/* TCP/UDP Destination Port */
				dstport= atoi(optarg);
				dstport_f=TRUE;
				break;

			case 'X':
				if(strncmp(optarg, "no", 2) == 0 || strncmp(optarg, "noflags", 7)){
					tcpflags_f=1;
					break;
				}

				charptr = optarg;
				while(*charptr){
					switch(*charptr){
						case 'F':
							tcpflags= tcpflags | TH_FIN;
							break;

						case 'S':
							tcpflags= tcpflags | TH_SYN;
							break;

						case 'R':
							tcpflags= tcpflags | TH_RST;
							break;

						case 'P':
							tcpflags= tcpflags | TH_PUSH;
							break;

						case 'A':
							tcpflags= tcpflags | TH_ACK;
							break;

						case 'U':
							tcpflags= tcpflags | TH_URG;
							break;

						case 'X': /* No TCP flags */
							break;

						default:
							printf("Unknown TCP flag '%c'\n", *charptr);
							exit(EXIT_FAILURE);
							break;
					}

					if(*charptr == 'X')
						break;

					charptr++;
				}

				tcpflags_f=TRUE;
				break;

			case 'r':
				if( Strnlen(optarg, LINE_BUFFER_SIZE-1) >= (LINE_BUFFER_SIZE-1)){
					puts("scan6: -r option is too long");
					exit(EXIT_FAILURE);
				}

				sscanf(optarg, "%lu%s", &rate, line);

				line[LINE_BUFFER_SIZE-1]=0;

				if(strncmp(line, "pps", 3) == 0)
					pps_f=TRUE;
				else if(strncmp(line, "bps", 3) == 0)
					bps_f=TRUE;
				else{
					puts("scan6: Unknown unit of for the rate limit ('-r' option). Unit should be 'bps' or 'pps'");
					exit(EXIT_FAILURE);
				}

				break;

			case 'v':	/* Be verbose */
				idata.verbose_f++;
				break;
		
			case 'h':	/* Help */
				print_help();
		
				exit(EXIT_FAILURE);
				break;

			default:
				usage();
				exit(EXIT_FAILURE);
				break;
		
		} /* switch */
	} /* while(getopt) */

	verbose_f= idata.verbose_f;

	if(geteuid()) {
		puts("path6 needs root privileges to run.");
		exit(EXIT_FAILURE);
	}

	if(!idata.dstaddr_f){
		puts("Error: Must specify Destination System");
		exit(EXIT_FAILURE);
	}

	if(!idata.iface_f){
		if(idata.dstaddr_f && IN6_IS_ADDR_LINKLOCAL(&(idata.dstaddr))){
			puts("Must specify a network interface for link-local destinations");
			exit(EXIT_FAILURE);
		}
	}

	if(load_dst_and_pcap(&idata, LOAD_SRC_NXT_HOP) == FAILURE){
		puts("Error while learning Souce Address and Next Hop");
		exit(EXIT_FAILURE);
	}

	release_privileges();

	if((idata.ip6_local_flag && idata.ip6_global_flag) && !idata.srcaddr_f)
		localaddr_f=1;

	if(!probe_f)
		probetype= PROBE_ICMP6_ECHO;


	if(probetype == PROBE_TCP){
		if(!dstport_f)
			dstport= 80;

		if(!tcpflags_f)
			tcpflags= TH_SYN;

		tcpseq=random() & 0x7fffffff;
	}
	else if(probetype == PROBE_UDP){
		if(!dstport_f)
			dstport= 60000 + random() % 5000;
	}
	else if(probetype == PROBE_ESP || probetype == PROBE_AH){
		spi= random();
	}

	if(pps_f){
		if(rate < 1)
			rate=1;

		pktinterval= 1000000/rate;
	}


	if(bps_f){
		switch(probetype){
			case PROBE_ICMP6_ECHO:
				packetsize= MIN_IPV6_HLEN + MIN_DST_OPT_HDR_SIZE + sizeof(struct icmp6_hdr);
				break;

			case PROBE_TCP:
				packetsize= MIN_IPV6_HLEN + sizeof(struct tcp_hdr);
				break;

			case PROBE_ESP:
				packetsize= MIN_IPV6_HLEN + sizeof(struct esp_hdr);
				break;

			case PROBE_AH:
				packetsize= MIN_IPV6_HLEN + sizeof(struct ah_hdr);
				break;
		}

		if(rate == 0 || ((packetsize * 8)/rate) <= 0)
			pktinterval= 1000000;
		else
			pktinterval= ((packetsize * 8)/rate) * 1000000;
	}

	/* We Default to 1000 pps */
	if(!pps_f && !bps_f)
		pktinterval= 1000;

	if(inet_ntop(AF_INET6, &(idata.dstaddr), pv6addr, sizeof(pv6addr)) == NULL){
		puts("inet_ntop(): Error converting IPv6 Source Address to presentation format");
		exit(EXIT_FAILURE);
	}

	if(idata.verbose_f){
		print_attack_info(&idata);
	}

	printf("Tracing path to %s (%s)...\n\n", targetipv6.name, pv6addr);

	/* Set initial contents of the attack packet */
	init_packet_data(&idata);

	/*
	   Set filter for receiving IPv6 packets
	   XXX: This filter should probably be refined
	 */
	if(pcap_compile(idata.pfd, &pcap_filter, PCAP_IPV6_FILTER, PCAP_OPT, PCAP_NETMASK_UNKNOWN) == -1){
		printf("pcap_compile(): %s\n", pcap_geterr(idata.pfd));
		exit(EXIT_FAILURE);
	}
		
	if(pcap_setfilter(idata.pfd, &pcap_filter) == -1){
		printf("pcap_setfilter(): %s\n", pcap_geterr(idata.pfd));
		exit(EXIT_FAILURE);
	}

	pcap_freecode(&pcap_filter);

	maxhops=MAXHOPS;
	maxprobes=MAXPROBES;

	/* Initialize the table of results for the different tests */
	memset(test, 0, sizeof(test));

	FD_ZERO(&sset);
	FD_SET(idata.fd, &sset);

	/* Next probe to be printed out */
	phop=0;
	pprobe=0;

	/* Next probe to be sent */
	chop=0;
	cprobe=0;

	if(gettimeofday(&start, NULL) == -1){
		if(idata.verbose_f)
			perror("path6");

		exit(EXIT_FAILURE);
	}

	/* PROBE_TIMEOUT is in seconds */
	sched.tv_sec= PROBE_TIMEOUT;
	sched.tv_usec= 0;

	lastprobe= timeval_sub(&start, &sched);

	end_f=0;

	while(!end_f){
		if(gettimeofday(&curtime, NULL) == -1){
			if(idata.verbose_f)
				perror("path6");

			exit(EXIT_FAILURE);
		}

		/*
		   If the next probe to be printed out has been sent, evaluate whether it is time to print out
		   the result.
		 */
		if(phop < maxhops && pprobe < maxprobes && test[phop][pprobe].sent){
			
			/*
			   If a response was received, print the RTT.
			 */
			if(test[phop][pprobe].received){
				/*
				   If this is the first "response" for this probe, print the IPv6 address and the reverse domain
				   name.
				 */

				if(inet_ntop(AF_INET6, &(test[phop][pprobe].srcaddr), psrcaddr, sizeof(psrcaddr)) == NULL){
					puts("inet_ntop(): Error converting IPv6 Source Address to presentation format");
					exit(EXIT_FAILURE);
				}


				if(delayp_f){
						if(numeric_f){
							printf(" %2d (%s)", phop+1, psrcaddr);
						}
						else{

						}

						for(i=0; i<pprobe; i++)
							printf("  *");

							printf("  %f ms", time_diff_ms(&(test[phop][pprobe].rtstamp), &(test[phop][pprobe].ststamp)));

					delayp_f=0;
				}
				else{
					if(pprobe == 0){
						if(numeric_f){
							printf(" %2d (%s)", phop+1, psrcaddr);
						}
						else{

						}
					}

					printf("  %4.1f ms", time_diff_ms(&(test[phop][pprobe].rtstamp), &(test[phop][pprobe].ststamp)));
				}

				pprobe++;

				if(pprobe >= maxprobes){
					puts("");

					pprobe=0;
					phop++;

					if(phop >= maxhops)
						end_f=1;
				}

				fflush(stdout);
			}
			else if(is_time_elapsed(&curtime, &(test[phop][pprobe].ststamp), PROBE_TIMEOUT * 1000000)){
				/* If there was a probe timeout, we allow to send another probe */
				send_f=1;

				/*
				   If more than probe_timeout seconds have elapsed, consider the probe lost. 
				   Print an asterisk, and wait for the next probe.
				 */

				if(pprobe == 0 || delayp_f){
					pprobe++;

					if(pprobe >= maxprobes){
						printf(" %2d ()   *  *  *\n", phop+1);
						fflush(stdout);
						pprobe=0;
						phop++;

						if(phop >= maxhops)
							end_f=1;

						delayp_f=0;
					}
					else{
						delayp_f=1;
					}
				}
				else{
					printf(" *");
					pprobe++;

					if(pprobe >= maxprobes){
						puts("");
						pprobe=0;
				
						phop++;

						if(phop >= maxhops)
							end_f=1;
					}
					fflush(stdout);
				}
			}
		}

		/* If there is a probe to be sent, and rate-limiting allows, send the probe */
		while( (send_f || is_time_elapsed(&curtime, &lastprobe, pktinterval)) && chop < maxhops && cprobe < maxprobes){
			if(gettimeofday(&curtime, NULL) == -1){
				if(idata.verbose_f)
					perror("path6");

				exit(EXIT_FAILURE);
			}

			test[chop][cprobe].sent= TRUE;
			test[chop][cprobe].ststamp= curtime;
			lastprobe= curtime;

			if(send_probe(&idata, probetype, chop, cprobe) == -1){
				puts("path6: Error while sending probe packet");
				exit(1);
			}

			send_f=0;
			
			cprobe++;

			if(cprobe >= maxprobes){
				cprobe=0;
				chop++;
			}
		}

		/*
		   XXX: This should be improved. Essentially, select() might sleep for at most one second (if no
		   packets are received). Then a bunch of probe packets might be sent out all at once.
		  */
		rset= sset;
		timeout.tv_sec= pktinterval / 1000000 ;	
		timeout.tv_usec= pktinterval % 1000000;

		/*
		   Since we cannot count on the pcap_socket being readable, we should wait the smaller of 10ms or
           the packet rate "timeout"
		 */

#if defined(sun) || defined(__sun) || defined(__linux__)
		if(timeout.tv_sec || timeout.tv_usec > 10000){
			timeout.tv_sec= 0;	
			timeout.tv_usec= 10000;
		}
#endif

		if((sel=select(idata.fd+1, &rset, NULL, NULL, &timeout)) == -1){
			if(errno == EINTR){
				continue;
			}
			else{
				puts("Error in select()");
				exit(EXIT_FAILURE);
			}
		}

#if defined(sun) || defined(__sun) || defined(__linux__)
		if(TRUE){
#else
		if(FD_ISSET(idata.fd, &rset)){
#endif
			/* Read a packet (Echo Reply, ICMPv6 Error, or Neighbor Solicitation) */
			if((r=pcap_next_ex(idata.pfd, &pkthdr, &pktdata)) == -1){
				printf("pcap_next_ex(): %s", pcap_geterr(idata.pfd));
				exit(EXIT_FAILURE);
			}
			else if(r == 1 && pktdata != NULL){
				pkt_ether = (struct ether_header *) pktdata;
				pkt_ipv6 = (struct ip6_hdr *)((char *) pkt_ether + idata.linkhsize);
				pkt_end = (unsigned char *) pktdata + pkthdr->caplen;

				if( (pkt_end -  pktdata) < (idata.linkhsize + MIN_IPV6_HLEN))
					continue;

				/*
				   We currently handle two cases: In the first case, there are extension headers, and hence we need to walk through
				   the extension header chain. In the other, the upper layer protocol is right after the fixed IPv6 header
				 */
				if(pkt_ipv6->ip6_nxt != IPPROTO_ICMPV6 && pkt_ipv6->ip6_nxt != IPPROTO_TCP && pkt_ipv6->ip6_nxt != IPPROTO_UDP && \
					pkt_ipv6->ip6_nxt != IPPROTO_ESP && pkt_ipv6->ip6_nxt != IPPROTO_AH){
					pkt_eh= (struct ip6_eh *) ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));

					while( ( (unsigned char *) pkt_eh + MIN_EXT_HLEN) <= pkt_end && (pkt_eh->eh_nxt != IPPROTO_ICMPV6 && \
						pkt_eh->eh_nxt != IPPROTO_TCP && pkt_eh->eh_nxt != IPPROTO_UDP && \
						pkt_ipv6->ip6_nxt != IPPROTO_ESP && pkt_ipv6->ip6_nxt != IPPROTO_AH)){
						pkt_eh= (struct ip6_eh *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
					}

					if( (unsigned char *)pkt_eh >= pkt_end){
						continue;
					}
					else{
						ulhtype= pkt_eh->eh_nxt;
						pkt_icmp6= (struct icmp6_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
						pkt_udp= (struct udp_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
						pkt_icmp6 = (struct icmp6_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
						pkt_tcp = (struct tcp_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
						pkt_ah= (struct ah_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
						pkt_esp= (struct esp_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
						pkt_ns= (struct nd_neighbor_solicit *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
					}
				}
				else{
					ulhtype= pkt_ipv6->ip6_nxt;
					pkt_icmp6 = (struct icmp6_hdr *) ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));
					pkt_ns= (struct nd_neighbor_solicit *) pkt_icmp6;
					pkt_tcp= (struct tcp_hdr *) pkt_icmp6;
					pkt_ah= (struct ah_hdr *) ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));
					pkt_esp= (struct esp_hdr *) ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));
					pkt_udp= (struct udp_hdr *) pkt_icmp6;
				}

				/*
				   At this point, we have skipped IPv6 EHs if there were any, and pkt_* pointers are set
				   accordingly.
				 */

				/*
				   XXX: We employ the ts member (struct timeval) in struct pcap_pkthdr. That way we do not need to
				   hurry up to process the received packets, and can e.g. do DNS resolutions without screwing up the
				   measured RTTs.
				 */

				/* Specific case to handle port unreachables for UDP */
				if(ulhtype == IPPROTO_ICMPV6 && probetype == PROBE_UDP && pkt_icmp6->icmp6_type == ICMP6_DST_UNREACH && \
					pkt_icmp6->icmp6_code == ICMP6_DST_UNREACH_NOPORT){

					nsrc= pkt_ipv6->ip6_src;

					pkt_ipv6=  (struct ip6_hdr *) ((char *) pkt_icmp6 + sizeof(struct icmp6_hdr));

					if( ((unsigned char *)pkt_ipv6 + sizeof(struct ip6_hdr)) > pkt_end)
						continue;

					/* XXX: Should remove the check for TCP -- only UDP can get here */
					/* Here we walk the embedded packet, which could contain EHs */
					if(pkt_ipv6->ip6_nxt != IPPROTO_ICMPV6 && pkt_ipv6->ip6_nxt != IPPROTO_TCP && pkt_ipv6->ip6_nxt != IPPROTO_UDP){
						pkt_eh=  (struct ip6_eh *) ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));

						while( ( (unsigned char *)pkt_eh+ MIN_EXT_HLEN) <= pkt_end && pkt_eh->eh_nxt != IPPROTO_ICMPV6 && \
								pkt_eh->eh_nxt != IPPROTO_TCP && pkt_eh->eh_nxt != IPPROTO_UDP){
							pkt_eh= (struct ip6_eh *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
						}

						if( (unsigned char *)pkt_eh >= pkt_end){
							continue;
						}
						else{
							ulhtype= pkt_eh->eh_nxt;
							pkt_icmp6= (struct icmp6_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
							pkt_udp= (struct udp_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
							pkt_icmp6 = (struct icmp6_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
						}
					}
					else{
						ulhtype= pkt_ipv6->ip6_nxt;
						pkt_icmp6 = (struct icmp6_hdr *) ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));
						pkt_tcp= (struct tcp_hdr *) pkt_icmp6;
						pkt_udp= (struct udp_hdr *) pkt_icmp6;
					}


					if(probetype == PROBE_UDP && ulhtype == IPPROTO_UDP){
						/* Must still verify the UDP checksum */
						if( (pkt_end - (unsigned char *) pkt_udp) < sizeof(struct udp_hdr)){
#ifdef DEBUG
puts("Descarte port tamanio leido menor a UDP header");
#endif
							continue;
						}

						if(ntohs(pkt_udp->uh_ulen) < sizeof(struct udp_hdr)){
#ifdef DEBUG
puts("Descarte port tamanio declarado menor a UDP header");
#endif
							continue;
						}

						if(ntohs(pkt_udp->uh_dport) != dstport){
#ifdef DEBUG
puts("Descarte por puerto destino distinto");
printf("Puerto destino p: %u, P dest mio: %u\n", ntohs(pkt_udp->uh_dport), dstport);
#endif
							continue;
						}

						nhop= (ntohs(pkt_udp->uh_sport) >> 8) - PROBE_PORT_OFFSET;
						nprobe= ntohs(pkt_udp->uh_sport) & 0xff;
						endhost_f=1;
#ifdef DEBUG
puts("Port unreachable valido");
printf("nhop: %u nprobe: %u\n", nhop, nprobe);
#endif
					}
					else{
						continue;
					}
				}
				/* We received an ICMPv6 echo response or an ICMPv6 error */
				else if(ulhtype == IPPROTO_ICMPV6){
					if(idata.type == DLT_EN10MB && !(idata.flags & IFACE_LOOPBACK) && pkt_icmp6->icmp6_type == ND_NEIGHBOR_SOLICIT){
						if( (pkt_end - (unsigned char *) pkt_ns) < sizeof(struct nd_neighbor_solicit))
							continue;
						/* 
							If the addresses that we're using are not actually configured on the local system
							(i.e., they are "spoofed", we must check whether it is a Neighbor Solicitation for 
							one of our addresses, and respond with a Neighbor Advertisement. Otherwise, the kernel
							will take care of that.
						 */
						if(idata.type == DLT_EN10MB && !(idata.flags & IFACE_LOOPBACK) && !localaddr_f && \
										is_eq_in6_addr(&(pkt_ns->nd_ns_target), &idata.srcaddr)){
								if(send_neighbor_advert(&idata, idata.pfd, pktdata) == -1){
									puts("Error sending Neighbor Advertisement");
									exit(EXIT_FAILURE);
								}
						}

						continue;
					}
					else if( probetype == PROBE_ICMP6_ECHO && (pkt_icmp6->icmp6_type == ICMP6_ECHO_REPLY)){
						/* Process the ICMPv6 Echo Reply */
						if( (pkt_end - (unsigned char *) pkt_icmp6) < sizeof(struct icmp6_hdr))
							continue;

						if(ntohs(pkt_icmp6->icmp6_data16[0]) != getpid() )
							continue;

						nhop= ntohs(pkt_icmp6->icmp6_data16[1]) >> 8;
						nprobe= ntohs(pkt_icmp6->icmp6_data16[1]) & 0xff;

						if(nhop >= maxhops)
							continue;

						if(!is_eq_in6_addr(&(pkt_ipv6->ip6_src), &(idata.dstaddr)))
							continue;

						nsrc= pkt_ipv6->ip6_src;
						endhost_f=1;
					}
					else if(pkt_icmp6->icmp6_type == ICMP6_TIME_EXCEEDED && pkt_icmp6->icmp6_code == ICMP6_TIME_EXCEED_TRANSIT){
						/* Process the ICMPv6 Error message */
						/* Record the source address of the error message */
						nsrc= pkt_ipv6->ip6_src;

						if(inet_ntop(AF_INET6, &(nsrc), psrcaddr, sizeof(psrcaddr)) == NULL){
							puts("inet_ntop(): Error converting IPv6 Source Address to presentation format");
							exit(EXIT_FAILURE);
						}

						pkt_ipv6=  (struct ip6_hdr *) ((char *) pkt_icmp6 + sizeof(struct icmp6_hdr));

						if( ((unsigned char *)pkt_ipv6 + sizeof(struct ip6_hdr)) > pkt_end)
							continue;

						if(!is_eq_in6_addr(&(pkt_ipv6->ip6_dst), &(idata.dstaddr)))
							continue;

						ulhtype= pkt_ipv6->ip6_nxt;
						pkt_eh= (struct ip6_eh *)  ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));

						droppacket_f= FALSE;

						/* If he embedded packet contains EHs, we need to skip the EHs to get to the upper layer protocol */
						while(ulhtype != IPPROTO_ICMPV6 && ulhtype != IPPROTO_TCP && ulhtype != IPPROTO_UDP && \
							ulhtype != IPPROTO_ESP && ulhtype != IPPROTO_AH && !droppacket_f){
							if(ulhtype == IPPROTO_FRAGMENT){
								if( ((unsigned char *)pkt_eh + sizeof(struct ip6_frag)) > pkt_end){
									droppacket_f= TRUE;
									break;
								}

								fh= (struct ip6_frag *)	((char *) pkt_eh);

								if(fh->ip6f_offlg & IP6F_OFF_MASK){
									droppacket_f= TRUE;
									break;
								}

								ulhtype= fh->ip6f_nxt;
								pkt_eh = (struct ip6_eh *) ((char *) fh + sizeof(struct ip6_frag));
							}
							else{
								if( ((unsigned char *)pkt_eh + sizeof(struct ip6_eh)) > pkt_end){
									droppacket_f=TRUE;
									break;
								}

								ulhtype= pkt_eh->eh_nxt;
								pkt_eh= (struct ip6_eh *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
							}

							if( (unsigned char *)pkt_eh >= pkt_end){
								droppacket_f= TRUE;
								break;
							}
						}

						if(droppacket_f){
							continue;
						}

						pkt_icmp6 = (struct icmp6_hdr *) ((char *) pkt_eh);
						pkt_tcp= (struct tcp_hdr *) ((char *) pkt_eh);
						pkt_udp= (struct udp_hdr *) ((char *) pkt_eh);
						pkt_esp= (struct esp_hdr *) ((char *) pkt_eh);
						pkt_ah=  (struct ah_hdr *) ((char *) pkt_eh);

						if(ulhtype == IPPROTO_ICMPV6 && pkt_icmp6->icmp6_type == ICMP6_ECHO_REQUEST){
							if( (pkt_end - (unsigned char *) pkt_icmp6) < sizeof(struct icmp6_hdr))
								continue;

							if(ntohs(pkt_icmp6->icmp6_data16[0]) != getpid() )
								continue;

							nhop= ntohs(pkt_icmp6->icmp6_data16[1]) >> 8;
							nprobe= ntohs(pkt_icmp6->icmp6_data16[1]) & 0xff;
						}
						else if(probetype == PROBE_TCP && ulhtype == IPPROTO_TCP){
							/* Must still verify the TCP checksum */

							if( (pkt_end - (unsigned char *) pkt_tcp) < sizeof(struct tcp_hdr))
								continue;

							if( ntohl(pkt_tcp->th_seq) != tcpseq)
								continue;

							nhop= (ntohs(pkt_tcp->th_sport) >> 8) - PROBE_PORT_OFFSET;
							nprobe= ntohs(pkt_tcp->th_sport) & 0xff;
						}
						else if(probetype == PROBE_UDP && ulhtype == IPPROTO_UDP){
							/* Must still verify the UDP checksum */
							if( (pkt_end - (unsigned char *) pkt_udp) < sizeof(struct udp_hdr))
								continue;

							if(ntohs(pkt_udp->uh_ulen) < sizeof(struct udp_hdr))
								continue;

							nhop= (ntohs(pkt_udp->uh_sport) >> 8) - PROBE_PORT_OFFSET;
							nprobe= ntohs(pkt_udp->uh_sport) & 0xff;
#ifdef DEBUG
puts("Lei un ICMPv6 Time exceeded");
#endif
						}

						else if(probetype == PROBE_ESP && ulhtype == IPPROTO_ESP){
							if( (pkt_end - (unsigned char *) pkt_esp) < sizeof(struct esp_hdr))
								continue;

							if(pkt_esp->esp_spi != spi)
								continue;

							nhop= ntohl(pkt_esp->esp_seq) >> 16;
							nprobe= ntohl(pkt_esp->esp_seq) & 0x0000ffff;
						}
						else if(probetype == PROBE_AH && ulhtype == IPPROTO_AH){
#ifdef DEBUG
puts("Got time exceeeded for AH");
#endif 
							if( (pkt_end - (unsigned char *) pkt_ah) < sizeof(struct ah_hdr))
								continue;

							if(pkt_ah->ah_spi != spi)
								continue;

							nhop= ntohl(pkt_ah->ah_seq) >> 16;
							nprobe= ntohl(pkt_ah->ah_seq) & 0x0000ffff;
						}
					}
					else if( (probetype == PROBE_ESP || probetype == PROBE_AH) && pkt_icmp6->icmp6_type == ICMP6_PARAM_PROB && \
							pkt_icmp6->icmp6_code == ICMP6_PARAMPROB_NEXTHEADER){
					/* Handle the specific case of ICMPv6 Parameter problem messages for AH and ESP */
						nsrc= pkt_ipv6->ip6_src;
						pkt_ipv6=  (struct ip6_hdr *) ((char *) pkt_icmp6 + sizeof(struct icmp6_hdr));

						if( ((unsigned char *)pkt_ipv6 + sizeof(struct ip6_hdr)) > pkt_end)
							continue;

						/* XXX: Should remove the check for everything except AH and ESP */
						if(pkt_ipv6->ip6_nxt != IPPROTO_AH && pkt_ipv6->ip6_nxt != IPPROTO_ESP && pkt_ipv6->ip6_nxt != IPPROTO_ICMPV6 && \
									pkt_ipv6->ip6_nxt != IPPROTO_TCP && pkt_ipv6->ip6_nxt != IPPROTO_UDP){
							pkt_eh=  (struct ip6_eh *) ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));

							while( ( (unsigned char *)pkt_eh+ MIN_EXT_HLEN) <= pkt_end && pkt_eh->eh_nxt != IPPROTO_ICMPV6 && \
									pkt_eh->eh_nxt != IPPROTO_TCP && pkt_eh->eh_nxt != IPPROTO_UDP){
								pkt_eh= (struct ip6_eh *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
							}

							if( (unsigned char *)pkt_eh >= pkt_end){
								continue;
							}
							else{
								ulhtype= pkt_eh->eh_nxt;
								pkt_icmp6= (struct icmp6_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
								pkt_udp= (struct udp_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
								pkt_icmp6 = (struct icmp6_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
								pkt_ah= (struct ah_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
								pkt_esp= (struct esp_hdr *) ( (char *) pkt_eh + (pkt_eh->eh_len + 1) * 8);
							}
						}
						else{
							ulhtype= pkt_ipv6->ip6_nxt;
							pkt_icmp6 = (struct icmp6_hdr *) ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));
							pkt_tcp= (struct tcp_hdr *) pkt_icmp6;
							pkt_udp= (struct udp_hdr *) pkt_icmp6;
							pkt_ah= (struct ah_hdr *) ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));
							pkt_esp= (struct esp_hdr *) ((char *) pkt_ipv6 + sizeof(struct ip6_hdr));
						}

						if(probetype == PROBE_ESP && ulhtype == IPPROTO_ESP){
							if( (pkt_end - (unsigned char *) pkt_esp) < sizeof(struct esp_hdr)){
								continue;
							}

							if(pkt_esp->esp_spi != spi){
								continue;
							}

							nhop= ntohl(pkt_esp->esp_seq) >> 16;
							nprobe= ntohl(pkt_esp->esp_seq) & 0x0000ffff;
							endhost_f=1;
						}
						else if(probetype == PROBE_AH && ulhtype == IPPROTO_AH){
							if( (pkt_end - (unsigned char *) pkt_ah) < sizeof(struct ah_hdr)){
#ifdef DEBUG
puts("Tam");
#endif
								continue;
							}

							if(pkt_ah->ah_spi != spi){
#ifdef DEBUG
puts("SPI");
#endif
								continue;
							}

							nhop= ntohl(pkt_ah->ah_seq) >> 16;
							nprobe= ntohl(pkt_ah->ah_seq) & 0x0000ffff;
							endhost_f=1;
						}
						else
							continue;
					}

					else{
						continue;
					}
				}
				else if(probetype == PROBE_TCP && ulhtype == IPPROTO_TCP){
					/* Must still verify the TCP checksum -- We do not do it yet */

					if( (pkt_end - (unsigned char *) pkt_tcp) < sizeof(struct tcp_hdr))
						continue;

					if(!is_eq_in6_addr(&(pkt_ipv6->ip6_src), &(idata.dstaddr))){
						continue;
					}


					/* XXX: This check should really take into account the payload size */
					if( ntohl(pkt_tcp->th_ack) < tcpseq || ntohl(pkt_tcp->th_ack) > (tcpseq+100000)){
						continue;
					}

					if(ntohs(pkt_tcp->th_sport) != dstport){
						continue;
					}

					nhop= (ntohs(pkt_tcp->th_dport) >> 8) - PROBE_PORT_OFFSET;
					nprobe= ntohs(pkt_tcp->th_dport) & 0xff;

					nsrc= pkt_ipv6->ip6_src;
					endhost_f=1;
				}
				else if(probetype == PROBE_UDP && ulhtype == IPPROTO_UDP){
					/* Must still verify the UDP checksum */
					if( (pkt_end - (unsigned char *) pkt_udp) < sizeof(struct udp_hdr))
						continue;

					if(ntohs(pkt_udp->uh_sport) != dstport){
						continue;
					}

					nprobe= (ntohs(pkt_udp->uh_sport) >> 8) - PROBE_PORT_OFFSET;
					nhop= ntohs(pkt_udp->uh_sport) & 0x00ff;

					nsrc= pkt_ipv6->ip6_src;
					endhost_f=1;
				}
				else{
					continue;
				}

				if(nprobe >= maxprobes){
#ifdef DEBUG
	printf("Descarte por nprobe mayor o igual que maxprobe (%u >= %u)\n", nprobe, maxprobes);
#endif
					continue;
				}

				if(nhop >= maxhops){
#ifdef DEBUG
	printf("Descarte por nhop mayor o igual que maxhops (%u >= %u)\n", nhop, maxhops);
#endif
					continue;
				}

				if(test[nhop][nprobe].received){
#ifdef DEBUG
	printf("Descarte por (nhop, nprobe) ya habia sido recibido (%u, %u)\n", nhop, nprobe);
#endif
					continue;
				}

				if(test[nhop][nprobe].sent == FALSE){
#ifdef DEBUG
	printf("Descarte por (nhop, nprobe) no habia sido enviado (%u, %u)\n", nhop, nprobe);
#endif
					continue;
				}

				test[nhop][nprobe].received= TRUE;

				/* Record the receive time from the pkthdr timestamp */
				test[nhop][nprobe].rtstamp.tv_sec= (pkthdr->ts).tv_sec;
				test[nhop][nprobe].rtstamp.tv_usec= (pkthdr->ts).tv_usec;
				test[nhop][nprobe].srcaddr= nsrc;

				/* If we got a response to a probe packet, allow for an additional probe to be sent */
				send_f= TRUE;

				/*
				   If we received a response from the end host, we artificially change maxhops such that we do not 
				   send probes for larger Hop Limits
				 */

				if(endhost_f && nhop < maxhops && phop <= nhop)
					maxhops=nhop+1;

				endhost_f=0;
			}
		}
	}

	exit(EXIT_SUCCESS);
}


/*
 * Function: usage()
 *
 * Prints the syntax of the frag6 tool
 */
void usage(void){
	puts("usage: path6 -i INTERFACE -d DST_ADDR [-S LINK_SRC_ADDR] [-D LINK-DST-ADDR]\n"
	     "       [-s SRC_ADDR[/LEN]] [-u DST_OPT_HDR_SIZE]\n"
	     "       [-U DST_OPT_U_HDR_SIZE] [-H HBH_OPT_HDR_SIZE] [-P FRAG_SIZE]\n"
	     "       [-O FRAG_TYPE] [-o FRAG_OFFSET] [-I FRAG_ID] [-T] [-n]\n"
	     "       [-p | -W | -X | -F N_FRAGS] [-l] [-z SECONDS] [-v] [-h]");
}


/*
 * Function: print_help()
 *
 * Prints help information for the frag6 tool
 */
void print_help(void){
	puts(SI6_TOOLKIT);
	puts( "path6: A versatile IPv6 traceroute\n");
	usage();
    
	puts("\nOPTIONS:\n"
	     "  --interface, -i           Network interface\n"
	     "  --link-src-address, -S    Link-layer Destination Address\n"
	     "  --link-dst-address, -D    Link-layer Source Address\n"
	     "  --src-address, -s         IPv6 Source Address\n"
	     "  --dst-address, -d         IPv6 Destination Address\n"
	     "  --frag-hdr. -y            Fragment Header\n"
	     "  --dst-opt-hdr, -u         Destination Options Header (Fragmentable Part)\n"
	     "  --dst-opt-u-hdr, -U       Destination Options Header (Unfragmentable Part)\n"
	     "  --hbh-opt-hdr, -H         Hop by Hop Options Header\n"
	     "  --probe-type, -p          Probe type {icmp, tcp, udp, ah, esp}\n"
	     "  --payload-size, -P        Payload Size\n"
	     "  --dst-port, -a            Transport-layer Destination Port\n"
	     "  --tcp-flags, -X           TCP Flags\n"
	     "  --rate-limit, -r          Rate limit the probe packets\n"
	     "  --verbose, -v             Be verbose\n"
	     "  --help, -h                Print help for the path6 tool\n"
	     "\n"
	     "Programmed by Fernando Gont for SI6 Networks (http://www.si6networks.com)\n"
	     "Please send any bug reports to <fgont@si6networks.com>\n"
	);
}


/*
 * Function: print_attack_info()
 *
 * Prints attack details (when the verbose ("-v") option is specified).
 */
 
void print_attack_info(struct iface_data *idata){
	if(idata->type == DLT_EN10MB && !(idata->flags & IFACE_LOOPBACK)){
		if(ether_ntop(&(idata->hsrcaddr), plinkaddr, sizeof(plinkaddr)) == 0){
			puts("ether_ntop(): Error converting address");
			exit(EXIT_FAILURE);
		}

		printf("Ethernet Source Address: %s%s\n", plinkaddr, (!idata->hsrcaddr_f)?" (automatically selected)":"");

		/* 
		   Ethernet Destination Address only used if a IPv6 Destination Address or an
		   Ethernet Destination Address were specified.
		 */
		if(ether_ntop(&(idata->hdstaddr), plinkaddr, sizeof(plinkaddr)) == 0){
			puts("ether_ntop(): Error converting address");
			exit(EXIT_FAILURE);
		}

		printf("Ethernet Destination Address: %s%s\n", plinkaddr, (!idata->hdstaddr_f)?" (automatically selected)":"");
	}

	if(inet_ntop(AF_INET6, &(idata->srcaddr), psrcaddr, sizeof(psrcaddr)) == NULL){
		puts("inet_ntop(): Error converting IPv6 Source Address to presentation format");
		exit(EXIT_FAILURE);
	}

	if(idata->dstaddr_f){
		printf("IPv6 Source Address: %s%s\n", psrcaddr, ((!idata->srcaddr_f)?" (automatically selected)":""));
	}

	if(inet_ntop(AF_INET6, &(idata->dstaddr), pdstaddr, sizeof(pdstaddr)) == NULL){
		puts("inet_ntop(): Error converting IPv6 Destination Address to presentation format");
		exit(EXIT_FAILURE);
	}

	printf("IPv6 Destination Address: %s\n", pdstaddr);

	for(i=0; i<ndstoptuhdr; i++)
		printf("Destination Options Header (Unfragmentable part): %u bytes\n", dstoptuhdrlen[i]);

	for(i=0; i<nhbhopthdr; i++)
		printf("Hop by Hop Options Header: %u bytes\n", hbhopthdrlen[i]);

	for(i=0; i<ndstopthdr; i++)
		printf("Destination Options Header: %u bytes\n", dstopthdrlen[i]);

	switch(probetype){
		case PROBE_ICMP6_ECHO:
			puts("Probe type: ICMPv6 Echo Request");

			break;

		case PROBE_UDP:
			puts("Probe type: UDP");
			printf("Destination Port: %u%s\n", dstport, (dstport_f?"":" (default)"));
			break;

		case PROBE_TCP:
			puts("Probe type: TCP");
			printf("TCP Flags: %s%s%s%s%s%s%s%s\t", ((tcpflags & TH_FIN)?"F":""), ((tcpflags & TH_SYN)?"S":""), \
						((tcpflags & TH_RST)?"R":""), ((tcpflags & TH_PUSH)?"P":""),\
						((tcpflags & TH_ACK)?"A":""), ((tcpflags & TH_URG)?"U":""),\
						((!tcpflags)?"none":""), ((!tcpflags_f)?" (default)":""));


			printf("Destination Port: %u%s\n", dstport, (dstport_f?"":" (default)"));
			break;

		case PROBE_ESP:
			puts("Probe type: ESP");
			break;

		case PROBE_AH:
			puts("Probe type: AH");
			break;

		default:
			puts("Probe type: Unknown");  /* Should never get here */
			break;
	}

	if(rhbytes_f){
		printf("Payload size: %u byte%s\n", rhbytes, (rhbytes > 1)?"s":"");
	}
}



/*
 * Function: init_packet_data()
 *
 * Initialize the contents of the attack packet (Ethernet header, IPv6 Header, and ICMPv6 header)
 * that are expected to remain constant for the specified attack.
 */
void init_packet_data(struct iface_data *idata){
	ethernet= (struct ether_header *) buffer;
	dlt_null= (struct dlt_null *) buffer;
	v6buffer = buffer + idata->linkhsize;
	ipv6 = (struct ip6_hdr *) v6buffer;
#if defined(__linux__)
	sll_linux= (struct sll_linux *) buffer;
#endif

	if(idata->type == DLT_EN10MB){
		ethernet->ether_type = htons(ETHERTYPE_IPV6);

		if(idata->flags != IFACE_LOOPBACK){
			ethernet->src = idata->hsrcaddr;
			ethernet->dst = idata->hdstaddr;
		}
	}
	else if(idata->type == DLT_NULL){
		dlt_null->family= PF_INET6;
	}
#if defined (__OpenBSD__)
	else if(idata->type == DLT_LOOP){
		dlt_null->family= htonl(PF_INET6);
	}
#elif defined(__linux__)
	else if(idata->type == DLT_LINUX_SLL){
		sll_linux->sll_pkttype= htons(0x0004);
		sll_linux->sll_hatype= htons(0xffff);
		sll_linux->sll_halen= htons(0x0000);
		sll_linux->sll_protocol= htons(ETHERTYPE_IPV6);
	}
#endif


	ipv6->ip6_flow=0;
	ipv6->ip6_vfc= 0x60;
	ipv6->ip6_src= idata->srcaddr;
	ipv6->ip6_dst= idata->dstaddr;

	prev_nh = (unsigned char *) &(ipv6->ip6_nxt);

	ptr = (unsigned char *) v6buffer + MIN_IPV6_HLEN;
    
	if(hbhopthdr_f){
		hbhopthdrs=0;
	
		while(hbhopthdrs < nhbhopthdr){
			if((ptr+ hbhopthdrlen[hbhopthdrs]) > (v6buffer+ idata->mtu)){
				puts("Packet too large while processing HBH Opt. Header");
				exit(EXIT_FAILURE);
			}
	    
			*prev_nh = IPPROTO_HOPOPTS;
			prev_nh = ptr;
			memcpy(ptr, hbhopthdr[hbhopthdrs], hbhopthdrlen[hbhopthdrs]);
			ptr = ptr + hbhopthdrlen[hbhopthdrs];
			hbhopthdrs++;
		}
	}

	if(dstoptuhdr_f){
		dstoptuhdrs=0;
	
		while(dstoptuhdrs < ndstoptuhdr){
			if((ptr+ dstoptuhdrlen[dstoptuhdrs]) > (v6buffer+ idata->mtu)){
				puts("Packet too large while processing Dest. Opt. Header (Unfrag. Part)");
				exit(EXIT_FAILURE);
			}

			*prev_nh = IPPROTO_DSTOPTS;
			prev_nh = ptr;
			memcpy(ptr, dstoptuhdr[dstoptuhdrs], dstoptuhdrlen[dstoptuhdrs]);
			ptr = ptr + dstoptuhdrlen[dstoptuhdrs];
			dstoptuhdrs++;
		}
	}

	/* Everything that follows is the Fragmentable Part of the packet */
	fragpart = ptr;

	if(idata->fragh_f){
		/* Check that we are able to send the Unfragmentable Part, together with a 
		   Fragment Header and a chunk data over our link layer
		 */
		if( (fragpart+sizeof(fraghdr)+nfrags) > (v6buffer+ idata->mtu)){
			printf("Unfragmentable part too large for current MTU (%u bytes)\n", idata->mtu);
			exit(EXIT_FAILURE);
		}

		/* We prepare a separate Fragment Header, but we do not include it in the packet to be sent.
		   This Fragment Header will be used (an assembled with the rest of the packet by the 
		   send_packet() function.
		*/
		memset(&fraghdr, 0, FRAG_HDR_SIZE);
		*prev_nh = IPPROTO_FRAGMENT;
		prev_nh = (unsigned char *) &fraghdr;
	}

	if(dstopthdr_f){
		dstopthdrs=0;
	
		while(dstopthdrs < ndstopthdr){
			if((ptr+ dstopthdrlen[dstopthdrs]) > (v6buffer+idata->max_packet_size)){
			puts("Packet too large while processing Dest. Opt. Header (should be using the Frag. option?)");
			exit(EXIT_FAILURE);
			}
    
			*prev_nh = IPPROTO_DSTOPTS;
			prev_nh = ptr;
			memcpy(ptr, dstopthdr[dstopthdrs], dstopthdrlen[dstopthdrs]);
			ptr = ptr + dstopthdrlen[dstopthdrs];
			dstopthdrs++;
		}
	}

	startofprefixes=ptr;
}


/*
 * Function: send_probe()
 *
 * Send a probe packet
 */
int send_probe(struct iface_data *idata, unsigned int probetype, unsigned char chop, unsigned char cprobe){
	struct tcp_hdr		*tcp;
	struct udp_hdr		*udp;
	struct ah_hdr		*ah;
	struct esp_hdr		*esp;
	struct icmp6_hdr	*icmp6;

	ptr=startofprefixes;
	ipv6->ip6_hlim= chop+1;

	if(probetype == PROBE_ICMP6_ECHO){
		*prev_nh = IPPROTO_ICMPV6;

		if( (ptr+sizeof(struct icmp6_hdr)) > (v6buffer+ idata->max_packet_size)){
			puts("Packet too large while inserting ICMPv6 header (should be using Frag. option?)");
			exit(EXIT_FAILURE);
		}

		icmp6= (struct icmp6_hdr *) ptr;

		icmp6->icmp6_type = ICMP6_ECHO_REQUEST;
		icmp6->icmp6_code = 0;
		/*
		   The Identifier field (icmp6_data16[0]) contains the PID of this process (as usual
		   for the ping(8) tool. The "Sequence Number" field (icmp6_data16[1]) encodes the original
		   Hop Limit and the probe number. The probe number is encoded in the upper 8 bits, while the
		   hop limit is encoded in the lower 8 bits.
		 */
		icmp6->icmp6_data16[0]= htons(getpid());
		icmp6->icmp6_data16[1]= htons( ((uint16_t) chop << 8)  + (cprobe & 0xff) );
		ptr += sizeof(struct icmp6_hdr);

		if(rhbytes){
			rhleft=rhbytes;

			if( (ptr + rhleft) > (v6buffer+ idata->max_packet_size)){
				puts("Packet Too Large while inserting TCP segment");
				exit(EXIT_FAILURE);
			}

			while(rhleft>=4){
				*(uint32_t *)ptr = random();
				ptr += sizeof(uint32_t);
				rhleft -= sizeof(uint32_t);
			}

			while(rhleft>0){
				*(uint8_t *) ptr= (uint8_t) random();
				ptr++;
				rhleft--;
			}
		}

		icmp6->icmp6_cksum = 0;
		icmp6->icmp6_cksum = in_chksum(v6buffer, icmp6, ptr-((unsigned char *)icmp6), IPPROTO_ICMPV6);
	}
	else if(probetype == PROBE_TCP){
		*prev_nh = IPPROTO_TCP;

		if( (ptr+sizeof(struct tcp_hdr)) > (v6buffer+ idata->max_packet_size)){
			puts("Packet too large while inserting ICMPv6 header (should be using Frag. option?)");
			exit(EXIT_FAILURE);
		}

		tcp= (struct tcp_hdr *) ptr;
		ptr+= sizeof(struct tcp_hdr);
		memset(tcp, 0, sizeof(struct tcp_hdr));

		/*
		   For TCP, we encode the probe number and the current Hop Limit in the TCP Source Port.
		   The probe number is encoded in the upper eight bits, while the current Hop Limit is
		   encoded in the lower eight bits. A constant "offset" is employed for encoding the probe
		   number, such that the resulting Source Port falls into what is typically known as the
		   dynamic ports range (say, ports larger than 50000).
		 */
		tcp->th_sport= htons( (((uint16_t) chop + PROBE_PORT_OFFSET) << 8) + cprobe);
		tcp->th_dport= htons(dstport);
		tcp->th_seq = htonl(tcpseq);

		/*
		   If no flags were specified, we set the ACK bit, since all TCP segments other than SYNs
		   are required to have the ACK bit set.
		 */
		tcp->th_ack= htonl((tcpflags & TH_ACK)?random():0);
		tcp->th_flags= tcpflags;
		tcp->th_urp= htons(0);
		tcp->th_win= htons((random() + 1024) & 0x7f00);
		tcp->th_off= MIN_TCP_HLEN >> 2;

		if(rhbytes){
			rhleft=rhbytes;

			if( (ptr + rhleft) > (v6buffer+ idata->max_packet_size)){
				puts("Packet Too Large while inserting TCP segment");
				exit(EXIT_FAILURE);
			}

			while(rhleft>=4){
				*(uint32_t *)ptr = random();
				ptr += sizeof(uint32_t);
				rhleft -= sizeof(uint32_t);
			}

			while(rhleft>0){
				*(uint8_t *) ptr= (uint8_t) random();
				ptr++;
				rhleft--;
			}
		}

		ipv6->ip6_plen = htons((ptr - v6buffer) - MIN_IPV6_HLEN);
		tcp->th_sum= 0;
		tcp->th_sum = in_chksum(v6buffer, tcp, ptr-((unsigned char *)tcp), IPPROTO_TCP);
	}
	else if(probetype == PROBE_UDP){
		*prev_nh = IPPROTO_UDP;

		if( (ptr+sizeof(struct udp_hdr)) > (v6buffer+ idata->max_packet_size)){
			puts("Packet too large while inserting ICMPv6 header (should be using Frag. option?)");
			exit(EXIT_FAILURE);
		}

		udp= (struct udp_hdr *) ptr;
		ptr+= sizeof(struct udp_hdr);
		memset(udp, 0, sizeof(struct udp_hdr));

		/*
		   For UDP, we encode the current probe number and the current Hop Limit as fr TCP.
		   Namely, we encode the probe number and the current Hop Limit in the TCP Source Port.
		   The probe number is encoded in the upper eight bits, while the current Hop Limit is
		   encoded in the lower eight bits. A constant "offset" is employed for encoding the probe
		   number, such that the resulting Source Port falls into what is typically known as the
		   dynamic ports range (say, ports larger than 50000).
		 */

		udp->uh_sport= htons(  (((uint16_t) chop + PROBE_PORT_OFFSET) << 8) + cprobe);

		udp->uh_dport= htons(dstport + (chop*3)+cprobe);

		if(rhbytes){
			rhleft=rhbytes;

			if( (ptr + rhleft) > (v6buffer+ idata->max_packet_size)){
				puts("Packet Too Large while inserting TCP segment");
				exit(EXIT_FAILURE);
			}

			while(rhleft>=4){
				*(uint32_t *)ptr = random();
				ptr += sizeof(uint32_t);
				rhleft -= sizeof(uint32_t);
			}

			while(rhleft>0){
				*(uint8_t *) ptr= (uint8_t) random();
				ptr++;
				rhleft--;
			}
		}

		ipv6->ip6_plen = htons((ptr - v6buffer) - MIN_IPV6_HLEN);
		udp->uh_ulen= htons(ptr - (unsigned char *) udp);
		udp->uh_sum=0;
		udp->uh_sum = in_chksum(v6buffer, udp, ptr-((unsigned char *)udp), IPPROTO_UDP);
	}

	else if(probetype == PROBE_AH){
		*prev_nh = IPPROTO_AH;

		if( (ptr+sizeof(struct ah_hdr)) > (v6buffer+ idata->max_packet_size)){
			puts("Packet too large while inserting AH header (should be using Frag. option?)");
			exit(EXIT_FAILURE);
		}

		ah= (struct ah_hdr *) ptr;
		ptr+= sizeof(struct ah_hdr);
		memset(ah, 0, sizeof(struct ah_hdr));

		/*
		   For AH, we set the SPI to a random value, and encode the probe numbers in the SEQ
		 */

		ah->ah_spi= spi;
		ah->ah_seq= htonl( (((uint32_t) chop) << 16) + cprobe);

		ipv6->ip6_plen = htons((ptr - v6buffer) - MIN_IPV6_HLEN);
		ah->ah_nxt= IPPROTO_TCP; /* XXX: This should be changed */
		ah->ah_len= sizeof(struct ah_hdr) / 4; /* XXX: Should be modified if we relax the AH format */
	}

	else if(probetype == PROBE_ESP){
		*prev_nh = IPPROTO_ESP;

		if( (ptr+sizeof(struct esp_hdr)) > (v6buffer+ idata->max_packet_size)){
			puts("Packet too large while inserting ESP header (should be using Frag. option?)");
			exit(EXIT_FAILURE);
		}

		esp= (struct esp_hdr *) ptr;
		ptr+= sizeof(struct esp_hdr);
		memset(esp, 0, sizeof(struct esp_hdr));

		/*
		   For ESP, we set the SPI to a random value, and encode the probe numbers in the SEQ
		 */

		esp->esp_spi= spi;
		esp->esp_seq= htonl( (((uint32_t) chop) << 16) + cprobe);

		ipv6->ip6_plen = htons((ptr - v6buffer) - MIN_IPV6_HLEN);
	}

	if(!idata->fragh_f){
		ipv6->ip6_plen = htons((ptr - v6buffer) - MIN_IPV6_HLEN);

		if((nw=pcap_inject(idata->pfd, buffer, ptr - buffer)) == -1){
			printf("pcap_inject(): %s\n", pcap_geterr(idata->pfd));
			return(-1);
		}

		if(nw != (ptr-buffer)){
			printf("pcap_inject(): only wrote %lu bytes (rather than %lu bytes)\n", \
						(LUI) nw, (LUI) (ptr-buffer));
			return(-1);
		}

		return(0);
	}
	else{
		ptrend= ptr;
		ptr= fragpart;
		fptr = fragbuffer;
		fipv6 = (struct ip6_hdr *) (fragbuffer + idata->linkhsize);
		fptrend = fptr + idata->linkhsize+MIN_IPV6_HLEN+MAX_IPV6_PAYLOAD;
		memcpy(fptr, buffer, fragpart-buffer);
		fptr = fptr + (fragpart-buffer);

		if( (fptr+FRAG_HDR_SIZE)> fptrend){
			puts("Unfragmentable Part is Too Large");
			exit(EXIT_FAILURE);
		}

		memcpy(fptr, (char *) &fraghdr, FRAG_HDR_SIZE);
		fh= (struct ip6_frag *) fptr;
		fh->ip6f_ident=random();
		startoffragment = fptr + FRAG_HDR_SIZE;

		/*
		 * Check that the selected fragment size is not larger than the largest 
		 * fragment size that can be sent
		 */
		if(nfrags <= (fptrend - fptr))
			fragsize=nfrags;
		else
			fragsize= (fptrend-fptr) & IP6F_OFF_MASK;

		m=IP6F_MORE_FRAG;

		while((ptr< ptrend) && m==IP6F_MORE_FRAG){
			fptr= startoffragment;

			if( (ptrend-ptr) <= fragsize){
				fragsize= ptrend-ptr;
				m=0;
			}

			memcpy(fptr, ptr, fragsize);
			fh->ip6f_offlg = (htons(ptr-fragpart) & IP6F_OFF_MASK) | m;
			ptr+=fragsize;
			fptr+=fragsize;

			fipv6->ip6_plen = htons((fptr - fragbuffer) - MIN_IPV6_HLEN - idata->linkhsize);
		
			if((nw=pcap_inject(idata->pfd, fragbuffer, fptr - fragbuffer)) == -1){
				printf("pcap_inject(): %s\n", pcap_geterr(idata->pfd));
				exit(EXIT_FAILURE);
			}

			if(nw != (fptr- fragbuffer)){
				printf("pcap_inject(): only wrote %lu bytes (rather than %lu bytes)\n", \
								(LUI) nw, (LUI) (ptr-buffer));
				exit(EXIT_FAILURE);
			}
		} /* Sending fragments */

		return(0);
	} /* Sending fragmented datagram */
}