Merge branch 'master' into 1.1
[tinc] / src / sptps_test.c
1 /*
2     sptps_test.c -- Simple Peer-to-Peer Security test program
3     Copyright (C) 2011 Guus Sliepen <guus@tinc-vpn.org>,
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "system.h"
21 #include "poll.h"
22
23 #include "crypto.h"
24 #include "ecdsa.h"
25 #include "sptps.h"
26 #include "utils.h"
27
28 // Symbols necessary to link with logger.o
29 char *logfilename;
30 char *connection_tree;
31 char *send_request;
32 char *send_meta;
33
34 ecdsa_t mykey, hiskey;
35
36 static bool send_data(void *handle, const char *data, size_t len) {
37         char hex[len * 2 + 1];
38         bin2hex(data, hex, len);
39         fprintf(stderr, "Sending %zu bytes of data:\n%s\n", len, hex);
40         const int *sock = handle;
41         if(send(*sock, data, len, 0) != len)
42                 return false;
43         return true;
44 }
45
46 static bool receive_record(void *handle, uint8_t type, const char *data, uint16_t len) {
47         fprintf(stderr, "Received type %d record of %hu bytes:\n", type, len);
48         fwrite(data, len, 1, stdout);
49         return true;
50 }
51
52 int main(int argc, char *argv[]) {
53         bool initiator = false;
54         bool datagram = false;
55
56         if(argc > 1 && !strcmp(argv[1], "-d")) {
57                 datagram = true;
58                 argc--;
59                 argv++;
60         }
61
62         if(argc < 4) {
63                 fprintf(stderr, "Usage: %s [-d] my_ecdsa_key_file his_ecdsa_key_file [host] port\n", argv[0]);
64                 return 1;
65         }
66
67         if(argc > 4)
68                 initiator = true;
69
70         struct addrinfo *ai, hint;
71         memset(&hint, 0, sizeof hint);
72
73         hint.ai_family = AF_UNSPEC;
74         hint.ai_socktype = SOCK_STREAM;
75         hint.ai_protocol = IPPROTO_TCP;
76         hint.ai_flags = initiator ? 0 : AI_PASSIVE;
77         
78         if(getaddrinfo(initiator ? argv[3] : NULL, initiator ? argv[4] : argv[3], &hint, &ai) || !ai) {
79                 fprintf(stderr, "getaddrinfo() failed: %s\n", strerror(errno));
80                 return 1;
81         }
82
83         int sock = socket(ai->ai_family, SOCK_STREAM, IPPROTO_TCP);
84         if(sock < 0) {
85                 fprintf(stderr, "Could not create socket: %s\n", strerror(errno));
86                 return 1;
87         }
88
89         int one = 1;
90         setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&one, sizeof one);
91
92         if(initiator) {
93                 if(connect(sock, ai->ai_addr, ai->ai_addrlen)) {
94                         fprintf(stderr, "Could not connect to peer: %s\n", strerror(errno));
95                         return 1;
96                 }
97                 fprintf(stderr, "Connected\n");
98         } else {
99                 if(bind(sock, ai->ai_addr, ai->ai_addrlen)) {
100                         fprintf(stderr, "Could not bind socket: %s\n", strerror(errno));
101                         return 1;
102                 }
103                 if(listen(sock, 1)) {
104                         fprintf(stderr, "Could not listen on socket: %s\n", strerror(errno));
105                         return 1;
106                 }
107                 fprintf(stderr, "Listening...\n");
108
109                 sock = accept(sock, NULL, NULL);
110                 if(sock < 0) {
111                         fprintf(stderr, "Could not accept connection: %s\n", strerror(errno));
112                         return 1;
113                 }
114
115                 fprintf(stderr, "Connected\n");
116         }
117
118         crypto_init();
119
120         FILE *fp = fopen(argv[1], "r");
121         if(!ecdsa_read_pem_private_key(&mykey, fp))
122                 return 1;
123         fclose(fp);
124
125         fp = fopen(argv[2], "r");
126         if(!ecdsa_read_pem_public_key(&hiskey, fp))
127                 return 1;
128         fclose(fp);
129
130         fprintf(stderr, "Keys loaded\n");
131
132         sptps_t s;
133         if(!sptps_start(&s, &sock, initiator, datagram, mykey, hiskey, "sptps_test", 10, send_data, receive_record))
134                 return 1;
135
136         while(true) {
137                 char buf[65535] = "";
138
139                 struct pollfd fds[2];
140                 fds[0].fd = 0;
141                 fds[0].events = POLLIN;
142                 fds[1].fd = sock;
143                 fds[1].events = POLLIN;
144                 if(poll(fds, 2, -1) < 0)
145                         return 1;
146
147                 if(fds[0].revents) {
148                         ssize_t len = read(0, buf, sizeof buf);
149                         if(len < 0) {
150                                 fprintf(stderr, "Could not read from stdin: %s\n", strerror(errno));
151                                 return 1;
152                         }
153                         if(len == 0)
154                                 break;
155                         if(buf[0] == '^')
156                                 sptps_send_record(&s, SPTPS_HANDSHAKE, NULL, 0);
157                         else if(buf[0] == '$') {
158                                 sptps_force_kex(&s);
159                                 if(len > 1)
160                                         sptps_send_record(&s, 0, buf, len);
161                         } else
162                         if(!sptps_send_record(&s, buf[0] == '!' ? 1 : 0, buf, buf[0] == '\n' ? 0 : buf[0] == '*' ? sizeof buf : len))
163                                 return 1;
164                 }
165
166                 if(fds[1].revents) {
167                         ssize_t len = recv(sock, buf, sizeof buf, 0);
168                         if(len < 0) {
169                                 fprintf(stderr, "Could not read from socket: %s\n", strerror(errno));
170                                 return 1;
171                         }
172                         if(len == 0) {
173                                 fprintf(stderr, "Connection terminated by peer.\n");
174                                 break;
175                         }
176                         char hex[len * 2 + 1];
177                         bin2hex(buf, hex, len);
178                         fprintf(stderr, "Received %zd bytes of data:\n%s\n", len, hex);
179                         if(!sptps_receive_data(&s, buf, len))
180                                 return 1;
181                 }
182         }
183
184         if(!sptps_stop(&s))
185                 return 1;
186
187         return 0;
188 }