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
|
#include <stdlib.h>
#include "pdesc.h"
#include "options.h"
#include "utils.h"
#include "ptunnel.h"
/* create_and_insert_proxy_desc: Creates a new proxy descriptor, linking it into
* the descriptor chain. If the sock argument is 0, the function will establish
* a TCP connection to the ip and port given by dst_ip, dst_port.
*/
proxy_desc_t* create_and_insert_proxy_desc(uint16_t id_no, uint16_t icmp_id,
int sock, struct sockaddr_in *addr,
uint32_t dst_ip, uint32_t dst_port,
uint32_t init_state, uint32_t type) {
proxy_desc_t *cur;
pthread_mutex_lock(&chain_lock);
if (num_tunnels >= opts.max_tunnels) {
pt_log(kLog_info, "Discarding incoming connection - too many tunnels! Maximum count is %u (adjust with the -m switch).\n", opts.max_tunnels);
if (sock)
close(sock);
pthread_mutex_unlock(&chain_lock);
return 0;
}
num_tunnels++;
pthread_mutex_unlock(&chain_lock);
pt_log(kLog_debug, "Adding proxy desc to run loop. Type is %s. Will create socket: %s\n", (type == kUser_flag ? "user" : "proxy"), (sock ? "No" : "Yes"));
cur = (proxy_desc_t *) calloc(1, sizeof(proxy_desc_t));
cur->id_no = id_no;
cur->dest_addr = *addr;
cur->dst_ip = dst_ip;
cur->dst_port = dst_port;
cur->icmp_id = icmp_id;
if (!sock) {
cur->sock = socket(AF_INET, SOCK_STREAM, 0);
memset(addr, 0, sizeof(struct sockaddr_in));
addr->sin_port = htons((uint16_t)dst_port);
addr->sin_addr.s_addr = dst_ip;
addr->sin_family = AF_INET;
/* Let's just assume success, shall we? */
if (connect(cur->sock, (struct sockaddr*)addr, sizeof(struct sockaddr_in)) < 0) {
pt_log(kLog_error, "Connect to %s:%d failed: %s\n", inet_ntoa(*(struct in_addr*)&addr->sin_addr.s_addr) , ntohs(addr->sin_port), strerror(errno));
}
}
else
cur->sock = sock;
cur->state = init_state;
cur->type_flag = type;
if (cur->type_flag == kUser_flag)
cur->pkt_type = kICMP_echo_request;
else
cur->pkt_type = (opts.unprivileged ? kICMP_echo_request : kICMP_echo_reply);
cur->buf = (char *) malloc(icmp_receive_buf_len);
cur->last_activity = time_as_double();
cur->authenticated = 0;
pthread_mutex_lock(&chain_lock);
cur->next = chain;
chain = cur;
pthread_mutex_unlock(&chain_lock);
cur->xfer.bytes_in = 0.0;
cur->xfer.bytes_out = 0.0;
return cur;
}
/* remove_proxy_desc: Removes the given proxy desc, freeing its resources.
* Assumes that we hold the chain_lock.
*/
void remove_proxy_desc(proxy_desc_t *cur, proxy_desc_t *prev) {
int i;
struct timeval tt;
pt_log(kLog_debug, "Removing proxy descriptor.\n");
/* Get a timestamp, for making an entry in the seq_expiry_tbl */
gettimeofday(&tt, 0);
seq_expiry_tbl[cur->id_no] = tt.tv_sec+(2*kAutomatic_close_timeout);
/* Free resources associated with connection */
if (cur->buf)
free(cur->buf);
cur->buf = 0;
for (i=0;i<kPing_window_size;i++) {
if (cur->send_ring[i].pkt)
free(cur->send_ring[i].pkt);
cur->send_ring[i].pkt = 0;
if (cur->recv_ring[i])
free(cur->recv_ring[i]);
cur->recv_ring[i] = 0;
}
close(cur->sock);
cur->sock = 0;
/* Keep list up-to-date */
if (prev)
prev->next = cur->next;
else
chain = cur->next;
if (cur->challenge)
free(cur->challenge);
free(cur);
num_tunnels--;
}
forward_desc_t* create_fwd_desc(uint16_t seq_no, uint32_t data_len, char *data) {
forward_desc_t *fwd_desc;
fwd_desc = (forward_desc_t *) malloc(sizeof(forward_desc_t)+data_len);
fwd_desc->seq_no = seq_no;
fwd_desc->length = data_len;
fwd_desc->remaining = data_len;
if (data_len > 0)
memcpy(fwd_desc->data, data, data_len);
return fwd_desc;
}
/* queue_packet:
* Creates an ICMP packet descriptor, and sends it. The packet descriptor is added
* to the given send ring, for potential resends later on.
*/
int queue_packet(int icmp_sock, uint8_t type, char *buf, int num_bytes,
uint16_t id_no, uint16_t icmp_id, uint16_t *seq, icmp_desc_t ring[],
int *insert_idx, int *await_send, uint32_t ip, uint32_t port,
uint32_t state, struct sockaddr_in *dest_addr, uint16_t next_expected_seq,
int *first_ack, uint16_t *ping_seq)
{
#if kPT_add_iphdr
ip_packet_t *ip_pkt = 0;
int pkt_len = sizeof(ip_packet_t) + sizeof(icmp_echo_packet_t) +
sizeof(ping_tunnel_pkt_t) + num_bytes;
#else
int pkt_len = sizeof(icmp_echo_packet_t) +
sizeof(ping_tunnel_pkt_t) + num_bytes;
#endif
int err = 0;
icmp_echo_packet_t *pkt = 0;
ping_tunnel_pkt_t *pt_pkt = 0;
uint16_t ack_val = next_expected_seq - 1;
if (pkt_len % 2)
pkt_len++;
#if kPT_add_iphdr
printf("add header\n");
ip_pkt = (ip_packet_t *) malloc(pkt_len);
pkt = (icmp_echo_packet_t *) ip_pkt->data;
memset(ip_pkt, 0, sizeof(ip_packet_t));
/* |(pkt_len>>2);//5;//(IPVERSION << 4) | (sizeof(ip_packet_t) >> 2); */
ip_pkt->vers_ihl = 0x45;
ip_pkt->tos = IPTOS_LOWDELAY;
ip_pkt->pkt_len = pkt_len;
/* kernel sets proper value htons(ip_id_counter); */
ip_pkt->id = 0;
ip_pkt->flags_frag_offset = 0;
/* default time to live (64) */
ip_pkt->ttl = IPDEFTTL;
/* ICMP */
ip_pkt->proto = 1;
/* maybe the kernel helps us out..? */
ip_pkt->checksum = 0;
/* insert source IP address here */
ip_pkt->src_ip = htonl(0x0);
/* htonl(0x7f000001); -> localhost.. */
ip_pkt->dst_ip = dest_addr->sin_addr.s_addr;
#else
pkt = (icmp_echo_packet_t *) calloc(1, pkt_len);
#endif
/* ICMP Echo request or reply */
pkt->type = type;
/* Must be zero (non-zero requires root) */
pkt->code = 0;
pkt->identifier = htons(icmp_id);
pkt->seq = htons(*ping_seq);
pkt->checksum = 0;
(*ping_seq)++;
/* Add our information */
pt_pkt = (ping_tunnel_pkt_t*)pkt->data;
pt_pkt->magic = htonl(opts.magic);
pt_pkt->dst_ip = ip;
pt_pkt->dst_port = htonl(port);
pt_pkt->ack = htonl(ack_val);
pt_pkt->data_len = htonl(num_bytes);
pt_pkt->state = htonl(state);
pt_pkt->seq_no = htons(*seq);
pt_pkt->id_no = htons(id_no);
/* Copy user data */
if (buf && num_bytes > 0)
memcpy(pt_pkt->data, buf, num_bytes);
#if kPT_add_iphdr
pkt->checksum = htons(calc_icmp_checksum((uint16_t*)pkt, pkt_len-sizeof(ip_packet_t)));
ip_pkt->checksum = htons(calc_icmp_checksum((uint16_t*)ip_pkt, sizeof(ip_packet_t)));
#else
pkt->checksum = htons(calc_icmp_checksum((uint16_t*)pkt, pkt_len));
#endif
/* Send it! */
pt_log(kLog_sendrecv, "Send: %d [%d] bytes [seq = %d] "
"[type = %s] [ack = %d] [icmp = %d] [user = %s]\n",
pkt_len, num_bytes, *seq, state_name[state & (~kFlag_mask)],
ack_val, type, ((state & kUser_flag) == kUser_flag ? "yes" : "no"));
#if kPT_add_iphdr
err = sendto(icmp_sock, (const void*)ip_pkt, pkt_len, 0,
(struct sockaddr*)dest_addr, sizeof(struct sockaddr));
#else
err = sendto(icmp_sock, (const void*)pkt, pkt_len, 0,
(struct sockaddr*)dest_addr, sizeof(struct sockaddr));
#endif
if (err < 0) {
pt_log(kLog_error, "Failed to send ICMP packet: %s\n", strerror(errno));
return -1;
}
else if (err != pkt_len)
pt_log(kLog_error, "WARNING WARNING, didn't send entire packet\n");
/* Update sequence no's and so on */
#if kPT_add_iphdr
/* NOTE: Retry mechanism needs update for PT_add_ip_hdr */
ring[*insert_idx].pkt = ip_pkt;
#else
ring[*insert_idx].pkt = pkt;
#endif
ring[*insert_idx].pkt_len = pkt_len;
ring[*insert_idx].last_resend = time_as_double();
ring[*insert_idx].seq_no = *seq;
ring[*insert_idx].icmp_id = icmp_id;
(*seq)++;
if (!ring[*first_ack].pkt)
*first_ack = *insert_idx;
(*await_send)++;
(*insert_idx)++;
if (*insert_idx >= kPing_window_size)
*insert_idx = 0;
return 0;
}
/* send_packets:
* Examines the passed-in ring, and forwards data in it over TCP.
*/
uint32_t send_packets(forward_desc_t *ring[], int *xfer_idx, int *await_send, int *sock) {
forward_desc_t *fwd_desc;
int bytes, total = 0;
while (*await_send > 0) {
fwd_desc = ring[*xfer_idx];
if (!fwd_desc)/* We haven't got this packet yet.. */
break;
if (fwd_desc->length > 0) {
bytes = send(*sock, &fwd_desc->data[fwd_desc->length - fwd_desc->remaining],
fwd_desc->remaining, 0);
if (bytes < 0) {
printf("Weirdness.\n");
/* TODO: send close stuff */
close(*sock);
*sock = 0;
break;
}
fwd_desc->remaining -= bytes;
total += bytes;
}
if (!fwd_desc->remaining) {
ring[*xfer_idx] = 0;
free(fwd_desc);
(*xfer_idx)++;
(*await_send)--;
if (*xfer_idx >= kPing_window_size)
*xfer_idx = 0;
}
else
break;
}
return total;
}
|