File: tcpnice.c

package info (click to toggle)
dsniff 2.4b1-9
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 884 kB
  • ctags: 972
  • sloc: ansic: 10,363; sh: 152; makefile: 146
file content (224 lines) | stat: -rw-r--r-- 4,934 bytes parent folder | download | duplicates (10)
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
/*
 * tcpnice.c
 *
 * Slow down TCP connections already in progress.
 *
 * Copyright (c) 2000 Dug Song <dugsong@monkey.org>
 *
 * $Id: tcpnice.c,v 1.17 2001/03/17 07:41:51 dugsong Exp $
 */

#include "config.h"

#include <sys/types.h>

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <err.h>
#include <libnet.h>
#include <pcap.h>

#include "pcaputil.h"
#include "version.h"

#define MIN_WIN		1	/* XXX */
#define MIN_MTU		68	/* RFC 1191 */

static int	Opt_icmp;
static int	Opt_pmtu;
static int	Opt_win;
static int	pcap_off;
static u_char	buf[BUFSIZ];

static void
usage(void)
{
	fprintf(stderr, "Version: " VERSION "\n"
		"Usage: tcpnice [-A] [-I] [-M] [-i interface] expression\n");
	exit(1);
}

static void
send_tcp_window_advertisement(int sock, struct libnet_ip_hdr *ip,
			     struct libnet_tcp_hdr *tcp)
{
	int len;
	
	ip->ip_hl = 5;
	ip->ip_len = htons(IP_H + TCP_H);
	ip->ip_id = libnet_get_prand(PRu16);
	memcpy(buf, (u_char *)ip, IP_H);
	
	tcp->th_off = 5;
	tcp->th_win = htons(MIN_WIN);
	memcpy(buf + IP_H, (u_char *)tcp, TCP_H);
	
	libnet_do_checksum(buf, IPPROTO_TCP, TCP_H);
	
	len = IP_H + TCP_H;
	
	if (libnet_write_ip(sock, buf, len) != len)
		warn("write");
	
	fprintf(stderr, "%s:%d > %s:%d: . ack %lu win %d\n",
		libnet_host_lookup(ip->ip_src.s_addr, 0), ntohs(tcp->th_sport),
		libnet_host_lookup(ip->ip_dst.s_addr, 0), ntohs(tcp->th_dport),
		ntohl(tcp->th_ack), 1);
}

static void
send_icmp_source_quench(int sock, struct libnet_ip_hdr *ip)
{
	struct libnet_icmp_hdr *icmp;
	int len;
	
	len = (ip->ip_hl * 4) + 8;

	libnet_build_ip(ICMP_ECHO_H + len, 0, libnet_get_prand(PRu16),
			0, 64, IPPROTO_ICMP, ip->ip_dst.s_addr,
			ip->ip_src.s_addr, NULL, 0, buf);
	
	icmp = (struct libnet_icmp_hdr *)(buf + IP_H);
	icmp->icmp_type = ICMP_SOURCEQUENCH;
	icmp->icmp_code = 0;
	memcpy((u_char *)icmp + ICMP_ECHO_H, (u_char *)ip, len);
	
	libnet_do_checksum(buf, IPPROTO_ICMP, ICMP_ECHO_H + len);
	
	len += (IP_H + ICMP_ECHO_H);
	
	if (libnet_write_ip(sock, buf, len) != len)
		warn("write");
	
	fprintf(stderr, "%s > %s: icmp: source quench\n",
		libnet_host_lookup(ip->ip_dst.s_addr, 0),
		libnet_host_lookup(ip->ip_src.s_addr, 0));
}

static void
send_icmp_frag_needed(int sock, struct libnet_ip_hdr *ip)
{
	struct libnet_icmp_hdr *icmp;
	int len;

	len = (ip->ip_hl * 4) + 8;
	
	libnet_build_ip(ICMP_MASK_H + len, 4, libnet_get_prand(PRu16),
			0, 64, IPPROTO_ICMP, ip->ip_dst.s_addr,
			ip->ip_src.s_addr, NULL, 0, buf);

	icmp = (struct libnet_icmp_hdr *)(buf + IP_H);
	icmp->icmp_type = ICMP_UNREACH;
	icmp->icmp_code = ICMP_UNREACH_NEEDFRAG;
	icmp->hun.frag.pad = 0;
	icmp->hun.frag.mtu = htons(MIN_MTU);
	memcpy((u_char *)icmp + ICMP_MASK_H, (u_char *)ip, len);

	libnet_do_checksum(buf, IPPROTO_ICMP, ICMP_MASK_H + len);
	
	len += (IP_H + ICMP_MASK_H);
	
	if (libnet_write_ip(sock, buf, len) != len)
		warn("write");
	
	fprintf(stderr, "%s > %s: icmp: ",
		libnet_host_lookup(ip->ip_dst.s_addr, 0),
		libnet_host_lookup(ip->ip_src.s_addr, 0));
	fprintf(stderr, "%s unreachable - need to frag (mtu %d)\n",
		libnet_host_lookup(ip->ip_src.s_addr, 0), MIN_MTU);
}

static void
tcp_nice_cb(u_char *user, const struct pcap_pkthdr *pcap, const u_char *pkt)
{
	struct libnet_ip_hdr *ip;
	struct libnet_tcp_hdr *tcp;
	int *sock, len;

	sock = (int *)user;
	pkt += pcap_off;
	len = pcap->caplen - pcap_off;

	ip = (struct libnet_ip_hdr *)pkt;
	if (ip->ip_p != IPPROTO_TCP)
		return;
	
	tcp = (struct libnet_tcp_hdr *)(pkt + (ip->ip_hl << 2));
	if (tcp->th_flags & (TH_SYN|TH_FIN|TH_RST))
		return;
	
	if (ntohs(ip->ip_len) > (ip->ip_hl << 2) + (tcp->th_off << 2)) {
		if (Opt_icmp)
			send_icmp_source_quench(*sock, ip);
		if (Opt_win)
			send_tcp_window_advertisement(*sock, ip, tcp);
		if (Opt_pmtu)
			send_icmp_frag_needed(*sock, ip);
	}
}

int
main(int argc, char *argv[])
{
	extern char *optarg;
	extern int optind;
	int c, sock;
	char *intf, *filter, ebuf[PCAP_ERRBUF_SIZE];
	pcap_t *pd;
	
	intf = NULL;
	
	while ((c = getopt(argc, argv, "i:AIMh?V")) != -1) {
		switch (c) {
		case 'i':
			intf = optarg;
			break;
		case 'A':
			Opt_win = 1;
			break;
		case 'I':
			Opt_icmp = 1;
			break;
		case 'M':
			Opt_pmtu = 1;
			break;
		default:
			usage();
			break;
		}
	}
	if (intf == NULL && (intf = pcap_lookupdev(ebuf)) == NULL)
		errx(1, "%s", ebuf);
	
	argc -= optind;
	argv += optind;
	
	if (argc == 0)
		usage();

	if ((Opt_win | Opt_icmp | Opt_pmtu) == 0)
		Opt_win = Opt_icmp = Opt_pmtu = 1;
	
	filter = copy_argv(argv);
	
	if ((pd = pcap_init(intf, filter, 128)) == NULL)
		errx(1, "couldn't initialize sniffing");

	if ((pcap_off = pcap_dloff(pd)) < 0)
		errx(1, "couldn't determine link layer offset");
	
	if ((sock = libnet_open_raw_sock(IPPROTO_RAW)) == -1)
		errx(1, "couldn't initialize sending");
	
	libnet_seed_prand();
	
	warnx("listening on %s [%s]", intf, filter);
	
	pcap_loop(pd, -1, tcp_nice_cb, (u_char *)&sock);
	
	/* NOTREACHED */
	
	exit(0);
}