-
Notifications
You must be signed in to change notification settings - Fork 1
/
proxy.c
274 lines (217 loc) · 6.72 KB
/
proxy.c
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 "includes.h"
static void
responde_mensagem(struct sock_ctx *ctx)
{
struct ether_header *eth;
struct ip6_hdr *ip6;
struct icmp6_hdr *icmp6;
struct tcphdr *tcp;
char mensagem[512];
int mlen;
/************************************
* XXX inicio da montagem da camada *
************************************/
eth = (struct ether_header *) ctx->pbuff;
/* XXX ETH_ALEN foi retirado do arquivo: net/ethernet.h */
memcpy(eth->ether_dhost, ctx->mto, ETH_ALEN);
memcpy(eth->ether_shost, ctx->mfrom, ETH_ALEN);
/* XXX IDs dos tipos de ethernet tambem podem ser achados no
* arquivo referenciado acima.
*/
eth->ether_type = htons(ETHERTYPE_IPV6);
ctx->ppos = ctx->pbuff + sizeof(struct ether_header);
/************************************
* XXX inicio da montagem da camada *
************************************/
ip6 = (struct ip6_hdr *) ctx->ppos;
/* nem vamo usa */
ip6->ip6_flow = htonl(0);
/* XXX guarda ponteiro para o tamanho do
* pacote de dados para atualizar mais tarde
*/
ctx->plen = &ip6->ip6_plen;
ip6->ip6_plen = htons(64);
/* next header -> 0x3a == ICMPv6 */
ip6->ip6_nxt = 0x3a;
/* XXX hop-limit a.k.a. ttl */
ip6->ip6_hlim = 64;
memcpy(&ip6->ip6_src, &ctx->ifrom.sin6_addr, sizeof(struct in6_addr));
memcpy(&ip6->ip6_dst, &ctx->ito.sin6_addr, sizeof(struct in6_addr));
ctx->ppos += sizeof(struct ip6_hdr);
/************************************
* XXX inicio da montagem da camada *
************************************/
icmp6 = (struct icmp6_hdr *) ctx->ppos;
if (ctx->proxy)
icmp6->icmp6_type = ICMP6_ECHO_REPLY;
else
icmp6->icmp6_type = ICMP6_ECHO_REQUEST;
/* Sempre zero */
icmp6->icmp6_code = 0;
/* XXX ponteiro para a posicao do pacote onde fica o checksum sera
* guardada para ser usada mais tarde
*/
ctx->icmp_cksum = &icmp6->icmp6_cksum;
icmp6->icmp6_seq = htons(++ctx->seq_atual);
/* XXX numero gerado por dados, garantido de ser aleartório */
icmp6->icmp6_id = htons(42);
ctx->ppos += sizeof(struct icmp6_hdr);
/************************************
* XXX inicio da montagem da camada *
************************************/
tcp = (struct tcphdr *) ctx->ppos;
/* source port */
tcp->source = htons(ctx->tcp_port);
/* destination port */
tcp->dest = htons(ctx->tcp_port);
/* sequential number */
tcp->seq = htonl(ctx->seq_atual);
/* ack number */
tcp->ack_seq = htonl(ctx->seq_atual);
/* data offset */
tcp->doff = 0;
/* TCP flags, TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG */
//tcp->th_flags = TH_SYN | TH_ACK; // BSD-Style
tcp->fin = 0;
tcp->syn = 1;
tcp->rst = 0;
tcp->psh = 0;
tcp->ack = 1;
tcp->urg = 0;
/* TCP window */
tcp->window = htons(0);
/* TCP checksum */
tcp->check = htons(0);
/* TCP urgent pointer ??? */
tcp->urg_ptr = htons(0);
ctx->ppos += sizeof(struct tcphdr);
memcpy(&ctx->ckf.tcp, (ctx->ppos - sizeof(struct tcphdr)),
sizeof(struct tcphdr));
/**************************************
* XXX inicio da montagem do checksum *
**************************************/
/* preenche o pacote que eh descrito pela RFC para o checksum */
memcpy(&ctx->ckf.ip6_src, &ip6->ip6_src, sizeof(struct in6_addr));
memcpy(&ctx->ckf.ip6_dst, &ip6->ip6_dst, sizeof(struct in6_addr));
ctx->ckf.nxthdr = 0x3a;
/* XXX copia header do ICMP para checksum */
memcpy(&ctx->ckf.icmp6, (ctx->ppos - sizeof(struct icmp6_hdr)),
sizeof(struct icmp6_hdr));
mlen = sprintf(mensagem, "TESTE RESPOSTA");
constroi_mensagem(ctx, (u_int8_t *) mensagem, mlen + 1);
manda_mensagem(ctx);
}
u_int8_t *
le_mensagem(struct sock_ctx *ctx, u_int8_t *buf, int len)
{
struct ether_header *eth;
struct ip6_hdr *ip6;
struct icmp6_hdr *icmp6;
struct tcphdr *tcp;
u_int8_t *pbuff = buf;
char debug_buf[INET6_ADDRSTRLEN];
/*******************
* Camada ethernet *
*******************/
if (len < sizeof(struct ether_header))
return(NULL);
eth = (struct ether_header *) buf;
debug_msg("[ETHER_TYPE=%s]",
(eth->ether_type == htons(ETHERTYPE_IPV6)) ?
"IPv6" : "NAO_CONHECO");
/* Filtra pacotes IPv6 */
if (eth->ether_type != htons(ETHERTYPE_IPV6))
return(NULL);
pbuff += sizeof(struct ether_header);
/***************
* Camada IPv6 *
***************/
if (len < (sizeof(struct ether_header) +
sizeof(struct ip6_hdr)))
return(NULL);
ip6 = (struct ip6_hdr *) pbuff;
debug_msg("[orig=%s]", inet_ntop(AF_INET6, &ip6->ip6_src,
debug_buf, INET6_ADDRSTRLEN));
debug_msg("[dest=%s]", inet_ntop(AF_INET6, &ip6->ip6_dst,
debug_buf, INET6_ADDRSTRLEN));
debug_msg("[NEXT_HEADER_TYPE=%s]",
(ip6->ip6_nxt == 0x3a) ?
"ICMPv6" : "DESCONHECIDO");
/* Filtra pacotes ICMP6 */
if (ip6->ip6_nxt != 0x3a)
return(NULL);
pbuff += sizeof(struct ip6_hdr);
/****************
* Camada ICMP6 *
****************/
if (len < (sizeof(struct ether_header) +
sizeof(struct ip6_hdr) +
sizeof(struct icmp6_hdr)))
return(NULL);
icmp6 = (struct icmp6_hdr *) pbuff;
debug_msg("[ICMP_TYPE=%s]",
(icmp6->icmp6_type == ICMP6_ECHO_REQUEST) ? "ECHO_REQUEST" :
(icmp6->icmp6_type == ICMP6_ECHO_REPLY) ? "ECHO_REPLY" : "NAO_SEI");
if (ctx->proxy) {
if (icmp6->icmp6_type != ICMP6_ECHO_REQUEST)
return(NULL);
} else {
if (icmp6->icmp6_type != ICMP6_ECHO_REPLY)
return(NULL);
}
pbuff += sizeof(struct icmp6_hdr);
/**************
* Camada TCP *
**************/
if (len < (sizeof(struct ether_header) +
sizeof(struct ip6_hdr) +
sizeof(struct icmp6_hdr) +
sizeof(struct tcphdr)))
return(NULL);
tcp = (struct tcphdr *) pbuff;
pbuff += sizeof(struct tcphdr);
return(pbuff);
}
void
run_proxy(struct sock_ctx *ctx)
{
fd_set read;
int nfds, bread;
struct timeval timer;
socklen_t ifrom_len;
struct sockaddr_in6 source;
retry_get:
memset(&timer, 0, sizeof(struct timeval));
timer.tv_sec = TEMPO_TIMEOUT;
timer.tv_usec = 0;
FD_ZERO(&read);
FD_SET(ctx->sd, &read);
nfds = select((ctx->sd + 1), &read, NULL, NULL, &timer);
if (nfds < 0)
err(1, "%s", __FUNCTION__);
else if (nfds == 0) {
fprintf(stderr, "ERRO: nao consegui receber nada em %d segundos.\n",
TEMPO_TIMEOUT);
exit(EXIT_FAILURE);
}
ifrom_len = sizeof(struct sockaddr_in6);
memset(&source, 0, sizeof(struct sockaddr_in6));
bread = recvfrom(ctx->sd, ctx->sbuff, BUFSIZ, 0,
(struct sockaddr *) &source, &ifrom_len);
debug_msg("[leu=%d]", bread);
if (bread == -1)
err(1, "%s", __FUNCTION__);
else if (bread == 0) {
fprintf(stderr, "ERRO: nao consegui ler nada do socket.\n");
exit(EXIT_SUCCESS);
}
/* XXX pega posicao da mensagem */
ctx->spos = le_mensagem(ctx, ctx->sbuff, bread);
if (ctx->spos == NULL) {
debug_msg("[DESCARTANDO PACOTE DESCONHECIDO]");
goto retry_get;
}
debug_msg("[mensagem=%s]", ctx->spos);
debug_msg("[RESPONDENDO_MENSAGEM_PERGUNTA]");
responde_mensagem(ctx);
}