2 * curvetun - the cipherspace wormhole creator
3 * Part of the netsniff-ng project
4 * Copyright 2011 Daniel Borkmann <daniel@netsniff-ng.org>,
5 * Subject to the GPL, version 2.
17 #include <netinet/in.h>
18 #include <arpa/inet.h>
19 #include <sys/types.h>
20 #include <sys/socket.h>
21 #include <sys/ioctl.h>
24 #include <netinet/tcp.h>
25 #include <netinet/udp.h>
26 #include <linux/if_tun.h>
38 #include "curvetun_mgmt.h"
41 extern volatile sig_atomic_t sigint
;
42 static volatile sig_atomic_t closed_by_server
= 0;
44 static void handler_udp_tun_to_net(int sfd
, int dfd
, struct curve25519_proto
*p
,
45 struct curve25519_struct
*c
, char *buff
,
51 size_t off
= sizeof(struct ct_proto
) + crypto_box_zerobytes
;
53 if (!buff
|| len
<= off
)
57 while ((rlen
= read(sfd
, buff
+ off
, len
- off
)) > 0) {
58 hdr
= (struct ct_proto
*) buff
;
60 memset(hdr
, 0, sizeof(*hdr
));
63 clen
= curve25519_encode(c
, p
, (unsigned char *) (buff
+ off
-
64 crypto_box_zerobytes
), (rlen
+
65 crypto_box_zerobytes
), (unsigned char **)
67 if (unlikely(clen
<= 0))
70 hdr
->payload
= htons((uint16_t) clen
);
74 write_exact(dfd
, hdr
, sizeof(struct ct_proto
), 0);
75 write_exact(dfd
, cbuff
, clen
, 0);
87 static void handler_udp_net_to_tun(int sfd
, int dfd
, struct curve25519_proto
*p
,
88 struct curve25519_struct
*c
, char *buff
,
94 struct sockaddr_storage naddr
;
96 socklen_t nlen
= sizeof(naddr
);
101 memset(&naddr
, 0, sizeof(naddr
));
102 while ((rlen
= recvfrom(sfd
, buff
, len
, 0, (struct sockaddr
*) &naddr
,
104 hdr
= (struct ct_proto
*) buff
;
106 if (unlikely(rlen
< sizeof(struct ct_proto
)))
108 if (unlikely(rlen
- sizeof(*hdr
) != ntohs(hdr
->payload
)))
110 if (unlikely(ntohs(hdr
->payload
) == 0))
112 if (hdr
->flags
& PROTO_FLAG_EXIT
)
115 clen
= curve25519_decode(c
, p
, (unsigned char *) buff
+
116 sizeof(struct ct_proto
),
117 rlen
- sizeof(struct ct_proto
),
118 (unsigned char **) &cbuff
, NULL
);
119 if (unlikely(clen
<= 0))
122 cbuff
+= crypto_box_zerobytes
;
123 clen
-= crypto_box_zerobytes
;
125 if (write(dfd
, cbuff
, clen
)) { ; }
130 closed_by_server
= 1;
133 static void handler_tcp_tun_to_net(int sfd
, int dfd
, struct curve25519_proto
*p
,
134 struct curve25519_struct
*c
, char *buff
,
139 struct ct_proto
*hdr
;
140 size_t off
= sizeof(struct ct_proto
) + crypto_box_zerobytes
;
142 if (!buff
|| len
<= off
)
145 memset(buff
, 0, len
);
146 while ((rlen
= read(sfd
, buff
+ off
, len
- off
)) > 0) {
147 hdr
= (struct ct_proto
*) buff
;
149 memset(hdr
, 0, sizeof(*hdr
));
152 clen
= curve25519_encode(c
, p
, (unsigned char *) (buff
+ off
-
153 crypto_box_zerobytes
), (rlen
+
154 crypto_box_zerobytes
), (unsigned char **)
156 if (unlikely(clen
<= 0))
159 hdr
->payload
= htons((uint16_t) clen
);
163 write_exact(dfd
, hdr
, sizeof(struct ct_proto
), 0);
164 write_exact(dfd
, cbuff
, clen
, 0);
168 memset(buff
, 0, len
);
173 closed_by_server
= 1;
176 extern ssize_t
handler_tcp_read(int fd
, char *buff
, size_t len
);
178 static void handler_tcp_net_to_tun(int sfd
, int dfd
, struct curve25519_proto
*p
,
179 struct curve25519_struct
*c
, char *buff
,
184 struct ct_proto
*hdr
;
189 while ((rlen
= handler_tcp_read(sfd
, buff
, len
)) > 0) {
190 hdr
= (struct ct_proto
*) buff
;
192 if (unlikely(rlen
< sizeof(struct ct_proto
)))
194 if (unlikely(rlen
- sizeof(*hdr
) != ntohs(hdr
->payload
)))
196 if (unlikely(ntohs(hdr
->payload
) == 0))
198 if (hdr
->flags
& PROTO_FLAG_EXIT
)
201 clen
= curve25519_decode(c
, p
, (unsigned char *) buff
+
202 sizeof(struct ct_proto
),
203 rlen
- sizeof(struct ct_proto
),
204 (unsigned char **) &cbuff
, NULL
);
205 if (unlikely(clen
<= 0))
208 cbuff
+= crypto_box_zerobytes
;
209 clen
-= crypto_box_zerobytes
;
211 if (write(dfd
, cbuff
, clen
)) { ; }
216 closed_by_server
= 1;
219 static void notify_init(int fd
, int udp
, struct curve25519_proto
*p
,
220 struct curve25519_struct
*c
, char *home
)
224 size_t us_len
, msg_len
, pad
;
226 char username
[256], path
[PATH_MAX
], *us
, *cbuff
, *msg
;
227 unsigned char auth
[crypto_auth_hmacsha512256_BYTES
], *token
;
229 memset(&hdr
, 0, sizeof(hdr
));
230 hdr
.flags
|= PROTO_FLAG_INIT
;
232 memset(path
, 0, sizeof(path
));
233 slprintf(path
, sizeof(path
), "%s/%s", home
, FILE_USERNAM
);
235 fd2
= open_or_die(path
, O_RDONLY
);
237 memset(username
, 0, sizeof(username
));
238 err
= read(fd2
, username
, sizeof(username
));
239 username
[sizeof(username
) - 1] = 0;
243 token
= get_serv_store_entry_auth_token();
245 syslog_panic("Cannot find auth token for server!\n");
247 us_len
= sizeof(struct username_struct
) + crypto_box_zerobytes
;
248 us
= xzmalloc(us_len
);
250 err
= username_msg(username
, strlen(username
) + 1,
251 us
+ crypto_box_zerobytes
,
252 us_len
- crypto_box_zerobytes
);
254 syslog_panic("Cannot create init message!\n");
256 clen
= curve25519_encode(c
, p
, (unsigned char *) us
, us_len
,
257 (unsigned char **) &cbuff
);
258 if (unlikely(clen
<= 0))
259 syslog_panic("Init encrypt error!\n");
261 err
= crypto_auth_hmacsha512256(auth
, (unsigned char *) cbuff
, clen
, token
);
263 syslog_panic("Cannot create init hmac message!\n");
265 pad
= ((uint32_t) secrand()) % 200;
266 msg_len
= clen
+ sizeof(auth
) + pad
;
268 msg
= xzmalloc(msg_len
);
269 memcpy(msg
, auth
, sizeof(auth
));
270 memcpy(msg
+ sizeof(auth
), cbuff
, clen
);
272 for (i
= sizeof(auth
) + clen
; i
< msg_len
; ++i
)
273 msg
[i
] = (uint8_t) secrand();
275 hdr
.payload
= htons((uint16_t) msg_len
);
277 set_sock_cork(fd
, udp
);
279 write_exact(fd
, &hdr
, sizeof(struct ct_proto
), 0);
280 write_exact(fd
, msg
, msg_len
, 0);
282 set_sock_uncork(fd
, udp
);
288 static void notify_close(int fd
)
292 memset(&hdr
, 0, sizeof(hdr
));
294 hdr
.flags
|= PROTO_FLAG_EXIT
;
297 write_exact(fd
, &hdr
, sizeof(hdr
), 0);
300 int client_main(char *home
, char *dev
, char *host
, char *port
, int udp
)
302 int fd
= -1, tunfd
= 0, retry_server
= 0;
304 struct addrinfo hints
, *ahead
, *ai
;
305 struct pollfd fds
[2];
306 struct curve25519_proto
*p
;
307 struct curve25519_struct
*c
;
309 size_t blen
= TUNBUFF_SIZ
; //FIXME
313 openlog("curvetun", LOG_PID
| LOG_CONS
| LOG_NDELAY
, LOG_DAEMON
);
314 syslog(LOG_INFO
, "curvetun client booting!\n");
317 c
= curve25519_tfm_alloc();
318 p
= get_serv_store_entry_proto_inf();
320 syslog_panic("Cannot proto!\n");
322 memset(&hints
, 0, sizeof(hints
));
323 hints
.ai_family
= PF_UNSPEC
;
324 hints
.ai_socktype
= udp
? SOCK_DGRAM
: SOCK_STREAM
;
325 hints
.ai_protocol
= udp
? IPPROTO_UDP
: IPPROTO_TCP
;
326 hints
.ai_flags
= AI_NUMERICSERV
;
328 ret
= getaddrinfo(host
, port
, &hints
, &ahead
);
330 syslog(LOG_ERR
, "Cannot get address info! Retry!\n");
331 curve25519_tfm_free(c
);
334 closed_by_server
= 0;
339 for (ai
= ahead
; ai
!= NULL
&& fd
< 0; ai
= ai
->ai_next
) {
340 fd
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
343 ret
= connect(fd
, ai
->ai_addr
, ai
->ai_addrlen
);
345 syslog(LOG_ERR
, "Cannot connect to remote, try %d: %s!\n",
346 try++, strerror(errno
));
352 set_socket_keepalive(fd
);
353 set_mtu_disc_dont(fd
);
361 syslog(LOG_ERR
, "Cannot create socket! Retry!\n");
362 curve25519_tfm_free(c
);
365 closed_by_server
= 0;
371 tunfd
= tun_open_or_die(dev
? dev
: DEVNAME_CLIENT
,
372 IFF_TUN
| IFF_NO_PI
);
374 set_nonblocking_sloppy(fd
);
375 set_nonblocking_sloppy(tunfd
);
377 memset(fds
, 0, sizeof(fds
));
380 fds
[0].events
= POLLIN
;
381 fds
[1].events
= POLLIN
;
383 buff
= xmalloc_aligned(blen
, 64);
385 notify_init(fd
, udp
, p
, c
, home
);
387 syslog(LOG_INFO
, "curvetun client ready!\n");
389 while (likely(!sigint
&& !closed_by_server
)) {
391 for (i
= 0; i
< 2; ++i
) {
392 if ((fds
[i
].revents
& POLLIN
) != POLLIN
)
394 if (fds
[i
].fd
== tunfd
) {
396 handler_udp_tun_to_net(tunfd
, fd
, p
, c
,
399 handler_tcp_tun_to_net(tunfd
, fd
, p
, c
,
401 } else if (fds
[i
].fd
== fd
) {
403 handler_udp_net_to_tun(fd
, tunfd
, p
, c
,
406 handler_tcp_net_to_tun(fd
, tunfd
, p
, c
,
412 syslog(LOG_INFO
, "curvetun client prepare shut down!\n");
414 if (!closed_by_server
)
419 curve25519_tfm_free(c
);
421 /* tundev still active */
422 if (closed_by_server
&& !sigint
) {
423 syslog(LOG_ERR
, "curvetun connection retry attempt!\n");
426 closed_by_server
= 0;
432 syslog(LOG_INFO
, "curvetun client shut down!\n");