141edb306SCy Schubert
241edb306SCy Schubert /*
341edb306SCy Schubert * ipsend.c (C) 1995-1998 Darren Reed
441edb306SCy Schubert *
541edb306SCy Schubert * See the IPFILTER.LICENCE file for details on licencing.
641edb306SCy Schubert *
741edb306SCy Schubert */
841edb306SCy Schubert #include <sys/param.h>
941edb306SCy Schubert #include <sys/types.h>
1041edb306SCy Schubert #include <sys/time.h>
1141edb306SCy Schubert #include <sys/socket.h>
1241edb306SCy Schubert #include <netinet/in.h>
1341edb306SCy Schubert #include <arpa/inet.h>
1441edb306SCy Schubert #include <netinet/in_systm.h>
1541edb306SCy Schubert #include <netinet/ip.h>
1641edb306SCy Schubert #include <netinet/ip_var.h>
1741edb306SCy Schubert #include <stdio.h>
1841edb306SCy Schubert #include <netdb.h>
1941edb306SCy Schubert #include <unistd.h>
2041edb306SCy Schubert #include <stdlib.h>
2141edb306SCy Schubert #include <string.h>
2241edb306SCy Schubert #include "ipsend.h"
2341edb306SCy Schubert
2441edb306SCy Schubert
2541edb306SCy Schubert extern char *optarg;
2641edb306SCy Schubert extern int optind;
2741edb306SCy Schubert
2841edb306SCy Schubert char options[68];
2941edb306SCy Schubert # ifdef sun
3041edb306SCy Schubert char default_device[] = "le0";
3141edb306SCy Schubert # else
3241edb306SCy Schubert char default_device[] = "lan0";
3341edb306SCy Schubert # endif
3441edb306SCy Schubert
3541edb306SCy Schubert static void usage(char *);
3641edb306SCy Schubert int main(int, char **);
3741edb306SCy Schubert
3841edb306SCy Schubert
usage(prog)3941edb306SCy Schubert static void usage(prog)
4041edb306SCy Schubert char *prog;
4141edb306SCy Schubert {
4241edb306SCy Schubert fprintf(stderr, "Usage: %s [options] dest\n\
4341edb306SCy Schubert \toptions:\n\
4441edb306SCy Schubert \t\t-d device\tSend out on this device\n\
4541edb306SCy Schubert \t\t-g gateway\tIP gateway to use if non-local dest.\n\
4641edb306SCy Schubert \t\t-m mtu\t\tfake MTU to use when sending out\n\
4741edb306SCy Schubert \t\t-p pointtest\t\n\
4841edb306SCy Schubert \t\t-s src\t\tsource address for IP packet\n\
4941edb306SCy Schubert \t\t-1 \t\tPerform test 1 (IP header)\n\
5041edb306SCy Schubert \t\t-2 \t\tPerform test 2 (IP options)\n\
5141edb306SCy Schubert \t\t-3 \t\tPerform test 3 (ICMP)\n\
5241edb306SCy Schubert \t\t-4 \t\tPerform test 4 (UDP)\n\
5341edb306SCy Schubert \t\t-5 \t\tPerform test 5 (TCP)\n\
5441edb306SCy Schubert \t\t-6 \t\tPerform test 6 (overlapping fragments)\n\
5541edb306SCy Schubert \t\t-7 \t\tPerform test 7 (random packets)\n\
5641edb306SCy Schubert ", prog);
5741edb306SCy Schubert exit(1);
5841edb306SCy Schubert }
5941edb306SCy Schubert
6041edb306SCy Schubert
61efeb8bffSCy Schubert int
main(int argc,char ** argv)62efeb8bffSCy Schubert main(int argc, char **argv)
6341edb306SCy Schubert {
6441edb306SCy Schubert struct tcpiphdr *ti;
6541edb306SCy Schubert struct in_addr gwip;
6641edb306SCy Schubert ip_t *ip;
6741edb306SCy Schubert char *name = argv[0], host[MAXHOSTNAMELEN + 1];
6841edb306SCy Schubert char *gateway = NULL, *dev = NULL;
6941edb306SCy Schubert char *src = NULL, *dst;
7041edb306SCy Schubert int mtu = 1500, tests = 0, pointtest = 0, c;
7141edb306SCy Schubert
7241edb306SCy Schubert /*
7341edb306SCy Schubert * 65535 is maximum packet size...you never know...
7441edb306SCy Schubert */
7541edb306SCy Schubert ip = (ip_t *)calloc(1, 65536);
7641edb306SCy Schubert ti = (struct tcpiphdr *)ip;
7741edb306SCy Schubert ip->ip_len = sizeof(*ip);
7841edb306SCy Schubert IP_HL_A(ip, sizeof(*ip) >> 2);
7941edb306SCy Schubert
8041edb306SCy Schubert while ((c = getopt(argc, argv, "1234567d:g:m:p:s:")) != -1)
8141edb306SCy Schubert switch (c)
8241edb306SCy Schubert {
8341edb306SCy Schubert case '1' :
8441edb306SCy Schubert case '2' :
8541edb306SCy Schubert case '3' :
8641edb306SCy Schubert case '4' :
8741edb306SCy Schubert case '5' :
8841edb306SCy Schubert case '6' :
8941edb306SCy Schubert case '7' :
9041edb306SCy Schubert tests = c - '0';
9141edb306SCy Schubert break;
9241edb306SCy Schubert case 'd' :
9341edb306SCy Schubert dev = optarg;
9441edb306SCy Schubert break;
9541edb306SCy Schubert case 'g' :
9641edb306SCy Schubert gateway = optarg;
9741edb306SCy Schubert break;
9841edb306SCy Schubert case 'm' :
9941edb306SCy Schubert mtu = atoi(optarg);
10041edb306SCy Schubert if (mtu < 28)
10141edb306SCy Schubert {
10241edb306SCy Schubert fprintf(stderr, "mtu must be > 28\n");
10341edb306SCy Schubert exit(1);
10441edb306SCy Schubert }
10541edb306SCy Schubert break;
10641edb306SCy Schubert case 'p' :
10741edb306SCy Schubert pointtest = atoi(optarg);
10841edb306SCy Schubert break;
10941edb306SCy Schubert case 's' :
11041edb306SCy Schubert src = optarg;
11141edb306SCy Schubert break;
11241edb306SCy Schubert default :
11341edb306SCy Schubert fprintf(stderr, "Unknown option \"%c\"\n", c);
11441edb306SCy Schubert usage(name);
11541edb306SCy Schubert }
11641edb306SCy Schubert
11741edb306SCy Schubert if ((argc <= optind) || !argv[optind])
11841edb306SCy Schubert usage(name);
11941edb306SCy Schubert dst = argv[optind++];
12041edb306SCy Schubert
12141edb306SCy Schubert if (!src)
12241edb306SCy Schubert {
12341edb306SCy Schubert gethostname(host, sizeof(host));
12441edb306SCy Schubert host[sizeof(host) - 1] = '\0';
12541edb306SCy Schubert src = host;
12641edb306SCy Schubert }
12741edb306SCy Schubert
12841edb306SCy Schubert if (resolve(dst, (char *)&ip->ip_dst) == -1)
12941edb306SCy Schubert {
13041edb306SCy Schubert fprintf(stderr,"Cant resolve %s\n", dst);
13141edb306SCy Schubert exit(2);
13241edb306SCy Schubert }
13341edb306SCy Schubert
13441edb306SCy Schubert if (resolve(src, (char *)&ip->ip_src) == -1)
13541edb306SCy Schubert {
13641edb306SCy Schubert fprintf(stderr,"Cant resolve %s\n", src);
13741edb306SCy Schubert exit(2);
13841edb306SCy Schubert }
13941edb306SCy Schubert
14041edb306SCy Schubert if (!gateway)
14141edb306SCy Schubert gwip = ip->ip_dst;
14241edb306SCy Schubert else if (resolve(gateway, (char *)&gwip) == -1)
14341edb306SCy Schubert {
14441edb306SCy Schubert fprintf(stderr,"Cant resolve %s\n", gateway);
14541edb306SCy Schubert exit(2);
14641edb306SCy Schubert }
14741edb306SCy Schubert
14841edb306SCy Schubert
14941edb306SCy Schubert if (!dev)
15041edb306SCy Schubert dev = default_device;
15141edb306SCy Schubert printf("Device: %s\n", dev);
15241edb306SCy Schubert printf("Source: %s\n", inet_ntoa(ip->ip_src));
15341edb306SCy Schubert printf("Dest: %s\n", inet_ntoa(ip->ip_dst));
15441edb306SCy Schubert printf("Gateway: %s\n", inet_ntoa(gwip));
15541edb306SCy Schubert printf("mtu: %d\n", mtu);
15641edb306SCy Schubert
15741edb306SCy Schubert switch (tests)
15841edb306SCy Schubert {
15941edb306SCy Schubert case 1 :
16041edb306SCy Schubert ip_test1(dev, mtu, (ip_t *)ti, gwip, pointtest);
16141edb306SCy Schubert break;
16241edb306SCy Schubert case 2 :
16341edb306SCy Schubert ip_test2(dev, mtu, (ip_t *)ti, gwip, pointtest);
16441edb306SCy Schubert break;
16541edb306SCy Schubert case 3 :
16641edb306SCy Schubert ip_test3(dev, mtu, (ip_t *)ti, gwip, pointtest);
16741edb306SCy Schubert break;
16841edb306SCy Schubert case 4 :
16941edb306SCy Schubert ip_test4(dev, mtu, (ip_t *)ti, gwip, pointtest);
17041edb306SCy Schubert break;
17141edb306SCy Schubert case 5 :
17241edb306SCy Schubert ip_test5(dev, mtu, (ip_t *)ti, gwip, pointtest);
17341edb306SCy Schubert break;
17441edb306SCy Schubert case 6 :
17541edb306SCy Schubert ip_test6(dev, mtu, (ip_t *)ti, gwip, pointtest);
17641edb306SCy Schubert break;
17741edb306SCy Schubert case 7 :
17841edb306SCy Schubert ip_test7(dev, mtu, (ip_t *)ti, gwip, pointtest);
17941edb306SCy Schubert break;
18041edb306SCy Schubert default :
18141edb306SCy Schubert ip_test1(dev, mtu, (ip_t *)ti, gwip, pointtest);
18241edb306SCy Schubert ip_test2(dev, mtu, (ip_t *)ti, gwip, pointtest);
18341edb306SCy Schubert ip_test3(dev, mtu, (ip_t *)ti, gwip, pointtest);
18441edb306SCy Schubert ip_test4(dev, mtu, (ip_t *)ti, gwip, pointtest);
18541edb306SCy Schubert ip_test5(dev, mtu, (ip_t *)ti, gwip, pointtest);
18641edb306SCy Schubert ip_test6(dev, mtu, (ip_t *)ti, gwip, pointtest);
18741edb306SCy Schubert ip_test7(dev, mtu, (ip_t *)ti, gwip, pointtest);
18841edb306SCy Schubert break;
18941edb306SCy Schubert }
190*2582ae57SCy Schubert return (0);
19141edb306SCy Schubert }
192