Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 1 | /* |
| 2 | * UDP proxy: emulate an unreliable UDP connexion for DTLS testing |
| 3 | * |
| 4 | * Copyright (C) 2006-2014, Brainspark B.V. |
| 5 | * |
| 6 | * This file is part of PolarSSL (http://www.polarssl.org) |
| 7 | * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org> |
| 8 | * |
| 9 | * All rights reserved. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or |
| 14 | * (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along |
| 22 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 23 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 24 | */ |
| 25 | |
| 26 | #if !defined(POLARSSL_CONFIG_FILE) |
| 27 | #include "polarssl/config.h" |
| 28 | #else |
| 29 | #include POLARSSL_CONFIG_FILE |
| 30 | #endif |
| 31 | |
| 32 | #if !defined(POLARSSL_NET_C) |
| 33 | #include <stdio.h> |
| 34 | int main( void ) |
| 35 | { |
| 36 | printf( "POLARSSL_NET_C not defined.\n" ); |
| 37 | return( 0 ); |
| 38 | } |
| 39 | #else |
| 40 | |
| 41 | #include "polarssl/net.h" |
| 42 | #include "polarssl/error.h" |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 43 | #include "polarssl/ssl.h" |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 44 | |
| 45 | #include <stdio.h> |
| 46 | #include <stdlib.h> |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 47 | #if defined(POLARSSL_HAVE_TIME) |
| 48 | #include <time.h> |
| 49 | #endif |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 50 | |
| 51 | /* For select() */ |
| 52 | #if (defined(_WIN32) || defined(_WIN32_WCE)) && !defined(EFIX64) && \ |
| 53 | !defined(EFI32) |
| 54 | #include <winsock2.h> |
| 55 | #include <windows.h> |
| 56 | #if defined(_MSC_VER) |
| 57 | #if defined(_WIN32_WCE) |
| 58 | #pragma comment( lib, "ws2.lib" ) |
| 59 | #else |
| 60 | #pragma comment( lib, "ws2_32.lib" ) |
| 61 | #endif |
| 62 | #endif /* _MSC_VER */ |
| 63 | #else /* ( _WIN32 || _WIN32_WCE ) && !EFIX64 && !EFI32 */ |
| 64 | #include <sys/time.h> |
| 65 | #include <sys/types.h> |
| 66 | #include <unistd.h> |
| 67 | #endif /* ( _WIN32 || _WIN32_WCE ) && !EFIX64 && !EFI32 */ |
| 68 | |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 69 | #define MAX_MSG_SIZE 4096 /* Reasonable max size for our tests */ |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 70 | |
| 71 | #define DFL_SERVER_ADDR "localhost" |
| 72 | #define DFL_SERVER_PORT 4433 |
| 73 | #define DFL_LISTEN_ADDR "localhost" |
| 74 | #define DFL_LISTEN_PORT 5556 |
| 75 | |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 76 | #define USAGE \ |
| 77 | "\n usage: udp_proxy param=<>...\n" \ |
| 78 | "\n acceptable parameters:\n" \ |
| 79 | " server_addr=%%d default: localhost\n" \ |
| 80 | " server_port=%%d default: 4433\n" \ |
| 81 | " listen_addr=%%d default: localhost\n" \ |
| 82 | " listen_port=%%d default: 4433\n" \ |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 83 | "\n" \ |
| 84 | " duplicate=%%d default: 0 (no duplication)\n" \ |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 85 | " duplicate 1 packet every N packets\n" \ |
| 86 | " delay=%%d default: 0 (no delayed packets)\n" \ |
| 87 | " delay 1 packet every N packets\n" \ |
Manuel Pégourié-Gonnard | 60fdd7e | 2014-09-06 14:49:52 +0200 | [diff] [blame^] | 88 | " drop=%%d default: 0 (no dropped packets)\n" \ |
| 89 | " drop 1 packet every N packets\n" \ |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 90 | "\n" |
| 91 | |
Manuel Pégourié-Gonnard | 44d5e63 | 2014-09-06 08:07:45 +0200 | [diff] [blame] | 92 | /* |
| 93 | * global options |
| 94 | */ |
| 95 | static struct options |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 96 | { |
Manuel Pégourié-Gonnard | 44d5e63 | 2014-09-06 08:07:45 +0200 | [diff] [blame] | 97 | const char *server_addr; /* address to forward packets to */ |
| 98 | int server_port; /* port to forward packets to */ |
| 99 | const char *listen_addr; /* address for accepting client connections */ |
| 100 | int listen_port; /* port for accepting client connections */ |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 101 | |
| 102 | int duplicate; /* duplicate 1 in N packets (none if 0) */ |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 103 | int delay; /* delay 1 packet in N (none if 0) */ |
Manuel Pégourié-Gonnard | 60fdd7e | 2014-09-06 14:49:52 +0200 | [diff] [blame^] | 104 | int drop; /* drop 1 packet in N (none if 0) */ |
Manuel Pégourié-Gonnard | 44d5e63 | 2014-09-06 08:07:45 +0200 | [diff] [blame] | 105 | } opt; |
| 106 | |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 107 | /* |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 108 | * global counters |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 109 | */ |
| 110 | static int dupl_cnt; |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 111 | static int delay_cnt; |
Manuel Pégourié-Gonnard | 60fdd7e | 2014-09-06 14:49:52 +0200 | [diff] [blame^] | 112 | static int drop_cnt; |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 113 | |
| 114 | /* Do not always start with the same state */ |
| 115 | static void randomize_counters( void ) |
| 116 | { |
| 117 | #if defined(POLARSSL_HAVE_TIME) |
| 118 | srand( time( NULL ) ); |
| 119 | #endif |
| 120 | |
| 121 | if( opt.duplicate != 0 ) |
| 122 | dupl_cnt = rand() % opt.duplicate; |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 123 | if( opt.delay != 0 ) |
| 124 | delay_cnt = rand() % opt.delay; |
Manuel Pégourié-Gonnard | 60fdd7e | 2014-09-06 14:49:52 +0200 | [diff] [blame^] | 125 | if( opt.drop != 0 ) |
| 126 | drop_cnt = rand() % opt.drop; |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 127 | } |
| 128 | |
Manuel Pégourié-Gonnard | 44d5e63 | 2014-09-06 08:07:45 +0200 | [diff] [blame] | 129 | static void exit_usage( const char *name, const char *value ) |
| 130 | { |
| 131 | if( value == NULL ) |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 132 | printf( " unknown option or missing value: %s\n", name ); |
Manuel Pégourié-Gonnard | 44d5e63 | 2014-09-06 08:07:45 +0200 | [diff] [blame] | 133 | else |
| 134 | printf( " option %s: illegal value: %s\n", name, value ); |
| 135 | |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 136 | printf( USAGE ); |
| 137 | exit( 1 ); |
| 138 | } |
| 139 | |
| 140 | static void get_options( int argc, char *argv[] ) |
| 141 | { |
| 142 | int i; |
| 143 | char *p, *q; |
| 144 | |
| 145 | opt.server_addr = DFL_SERVER_ADDR; |
| 146 | opt.server_port = DFL_SERVER_PORT; |
| 147 | opt.listen_addr = DFL_LISTEN_ADDR; |
| 148 | opt.listen_port = DFL_LISTEN_PORT; |
Manuel Pégourié-Gonnard | 60fdd7e | 2014-09-06 14:49:52 +0200 | [diff] [blame^] | 149 | /* Other members default to 0 */ |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 150 | |
| 151 | for( i = 1; i < argc; i++ ) |
| 152 | { |
| 153 | p = argv[i]; |
| 154 | if( ( q = strchr( p, '=' ) ) == NULL ) |
Manuel Pégourié-Gonnard | 44d5e63 | 2014-09-06 08:07:45 +0200 | [diff] [blame] | 155 | exit_usage( p, NULL ); |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 156 | *q++ = '\0'; |
| 157 | |
| 158 | if( strcmp( p, "server_addr" ) == 0 ) |
| 159 | opt.server_addr = q; |
| 160 | else if( strcmp( p, "server_port" ) == 0 ) |
| 161 | { |
| 162 | opt.server_port = atoi( q ); |
| 163 | if( opt.server_port < 1 || opt.server_port > 65535 ) |
Manuel Pégourié-Gonnard | 44d5e63 | 2014-09-06 08:07:45 +0200 | [diff] [blame] | 164 | exit_usage( p, q ); |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 165 | } |
| 166 | else if( strcmp( p, "listen_addr" ) == 0 ) |
| 167 | opt.listen_addr = q; |
| 168 | else if( strcmp( p, "listen_port" ) == 0 ) |
| 169 | { |
| 170 | opt.listen_port = atoi( q ); |
| 171 | if( opt.listen_port < 1 || opt.listen_port > 65535 ) |
Manuel Pégourié-Gonnard | 44d5e63 | 2014-09-06 08:07:45 +0200 | [diff] [blame] | 172 | exit_usage( p, q ); |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 173 | } |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 174 | else if( strcmp( p, "duplicate" ) == 0 ) |
| 175 | { |
| 176 | opt.duplicate = atoi( q ); |
| 177 | if( opt.duplicate < 0 || opt.duplicate > 10 ) |
| 178 | exit_usage( p, q ); |
| 179 | } |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 180 | else if( strcmp( p, "delay" ) == 0 ) |
| 181 | { |
| 182 | opt.delay = atoi( q ); |
| 183 | if( opt.delay < 0 || opt.delay > 10 || opt.delay == 1 ) |
| 184 | exit_usage( p, q ); |
| 185 | } |
Manuel Pégourié-Gonnard | 60fdd7e | 2014-09-06 14:49:52 +0200 | [diff] [blame^] | 186 | else if( strcmp( p, "drop" ) == 0 ) |
| 187 | { |
| 188 | opt.drop = atoi( q ); |
| 189 | if( opt.drop < 0 || opt.drop > 10 || opt.drop == 1 ) |
| 190 | exit_usage( p, q ); |
| 191 | } |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 192 | else |
Manuel Pégourié-Gonnard | 44d5e63 | 2014-09-06 08:07:45 +0200 | [diff] [blame] | 193 | exit_usage( p, NULL ); |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | static const char *msg_type( unsigned char *msg, size_t len ) |
| 198 | { |
| 199 | if( len < 1 ) return( "Invalid" ); |
| 200 | switch( msg[0] ) |
| 201 | { |
| 202 | case SSL_MSG_CHANGE_CIPHER_SPEC: return( "ChangeCipherSpec" ); |
| 203 | case SSL_MSG_ALERT: return( "Alert" ); |
| 204 | case SSL_MSG_APPLICATION_DATA: return( "ApplicationData" ); |
| 205 | case SSL_MSG_HANDSHAKE: break; /* See below */ |
| 206 | default: return( "Unknown" ); |
| 207 | } |
| 208 | |
| 209 | if( len < 13 ) return( "Invalid handshake" ); |
| 210 | switch( msg[13] ) |
| 211 | { |
| 212 | case SSL_HS_HELLO_REQUEST: return( "HelloRequest" ); |
| 213 | case SSL_HS_CLIENT_HELLO: return( "ClientHello" ); |
| 214 | case SSL_HS_SERVER_HELLO: return( "ServerHello" ); |
| 215 | case SSL_HS_HELLO_VERIFY_REQUEST: return( "HelloVerifyRequest" ); |
| 216 | case SSL_HS_NEW_SESSION_TICKET: return( "NewSessionTicket" ); |
| 217 | case SSL_HS_CERTIFICATE: return( "Certificate" ); |
| 218 | case SSL_HS_SERVER_KEY_EXCHANGE: return( "ServerKeyExchange" ); |
| 219 | case SSL_HS_CERTIFICATE_REQUEST: return( "CertificateRequest" ); |
| 220 | case SSL_HS_SERVER_HELLO_DONE: return( "ServerHelloDone" ); |
| 221 | case SSL_HS_CERTIFICATE_VERIFY: return( "CertificateVerify" ); |
| 222 | case SSL_HS_CLIENT_KEY_EXCHANGE: return( "ClientKeyExchange" ); |
| 223 | case SSL_HS_FINISHED: return( "Finished" ); |
| 224 | default: return( "Unkown handshake" ); |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 225 | } |
| 226 | } |
| 227 | |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 228 | typedef struct |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 229 | { |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 230 | void *dst; |
| 231 | const char *way; |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 232 | const char *type; |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 233 | unsigned len; |
| 234 | unsigned char buf[MAX_MSG_SIZE]; |
| 235 | } packet; |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 236 | |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 237 | /* Print packet. Outgoing packets come with a reason (forward, dupl, etc.) */ |
| 238 | void print_packet( const packet *p, const char *why ) |
| 239 | { |
| 240 | if( why == NULL ) |
| 241 | printf( " > %s: %s (%u bytes)\n", p->way, p->type, p->len ); |
| 242 | else |
| 243 | printf( " < %s: %s (%u bytes): %s\n", p->way, p->type, p->len, why ); |
| 244 | fflush( stdout ); |
| 245 | } |
| 246 | |
| 247 | int send_packet( const packet *p, const char *why ) |
| 248 | { |
| 249 | int ret; |
| 250 | |
| 251 | print_packet( p, why ); |
| 252 | if( ( ret = net_send( p->dst, p->buf, p->len ) ) <= 0 ) |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 253 | { |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 254 | printf( " ! net_send returned %d\n", ret ); |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 255 | return( ret ); |
| 256 | } |
| 257 | |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 258 | /* Don't duplicate Application Data, only handshake covered */ |
| 259 | // Don't duplicate CSS for now (TODO later) |
| 260 | if( opt.duplicate != 0 && |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 261 | strcmp( p->type, "ApplicationData" ) != 0 && |
| 262 | strcmp( p->type, "ChangeCipherSpec" ) != 0 && |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 263 | ++dupl_cnt == opt.duplicate ) |
| 264 | { |
| 265 | dupl_cnt = 0; |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 266 | print_packet( p, "duplicated" ); |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 267 | |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 268 | if( ( ret = net_send( p->dst, p->buf, p->len ) ) <= 0 ) |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 269 | { |
| 270 | printf( " ! net_send returned %d\n", ret ); |
| 271 | return( ret ); |
| 272 | } |
| 273 | } |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 274 | |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 275 | return( 0 ); |
| 276 | } |
| 277 | |
| 278 | int handle_message( const char *way, int dst, int src ) |
| 279 | { |
| 280 | int ret; |
| 281 | packet cur; |
| 282 | static packet prev; |
| 283 | |
| 284 | /* receivec packet */ |
| 285 | if( ( ret = net_recv( &src, cur.buf, sizeof( cur.buf ) ) ) <= 0 ) |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 286 | { |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 287 | printf( " ! net_recv returned %d\n", ret ); |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 288 | return( ret ); |
| 289 | } |
| 290 | |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 291 | cur.len = ret; |
| 292 | cur.type = msg_type( cur.buf, cur.len ); |
| 293 | cur.way = way; |
| 294 | cur.dst = &dst; |
| 295 | print_packet( &cur, NULL ); |
| 296 | |
Manuel Pégourié-Gonnard | 60fdd7e | 2014-09-06 14:49:52 +0200 | [diff] [blame^] | 297 | /* do we want to drop, delay, or forward it? */ |
| 298 | if( opt.drop != 0 && |
| 299 | strcmp( cur.type, "ApplicationData" ) != 0 && |
| 300 | ++drop_cnt == opt.drop ) |
| 301 | { |
| 302 | drop_cnt = 0; |
| 303 | } |
| 304 | else if( opt.delay != 0 && |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 305 | strcmp( cur.type, "ApplicationData" ) != 0 && |
| 306 | ++delay_cnt == opt.delay ) |
| 307 | { |
| 308 | delay_cnt = 0; |
| 309 | memcpy( &prev, &cur, sizeof( packet ) ); |
| 310 | } |
| 311 | else |
| 312 | { |
Manuel Pégourié-Gonnard | 60fdd7e | 2014-09-06 14:49:52 +0200 | [diff] [blame^] | 313 | /* forward and possibly duplicate */ |
Manuel Pégourié-Gonnard | 21398c3 | 2014-09-06 14:36:46 +0200 | [diff] [blame] | 314 | if( ( ret = send_packet( &cur, "forwarded" ) ) != 0 ) |
| 315 | return( ret ); |
| 316 | |
| 317 | /* send previously delayed message if any */ |
| 318 | if( prev.dst != NULL ) |
| 319 | { |
| 320 | ret = send_packet( &prev, "delayed" ); |
| 321 | memset( &prev, 0, sizeof( packet ) ); |
| 322 | if( ret != 0 ) |
| 323 | return( ret ); |
| 324 | } |
| 325 | } |
| 326 | |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 327 | return( 0 ); |
| 328 | } |
| 329 | |
| 330 | int main( int argc, char *argv[] ) |
| 331 | { |
| 332 | int ret; |
| 333 | |
| 334 | int listen_fd = -1; |
| 335 | int client_fd = -1; |
| 336 | int server_fd = -1; |
| 337 | |
| 338 | int nb_fds; |
| 339 | fd_set read_fds; |
| 340 | |
| 341 | get_options( argc, argv ); |
Manuel Pégourié-Gonnard | 2c41bd8 | 2014-09-06 08:14:47 +0200 | [diff] [blame] | 342 | randomize_counters(); |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 343 | |
| 344 | /* |
Manuel Pégourié-Gonnard | 44d5e63 | 2014-09-06 08:07:45 +0200 | [diff] [blame] | 345 | * 0. "Connect" to the server |
Manuel Pégourié-Gonnard | cb4137b | 2014-09-04 14:55:28 +0200 | [diff] [blame] | 346 | */ |
| 347 | printf( " . Connect to server on UDP/%s/%d ...", |
| 348 | opt.server_addr, opt.server_port ); |
| 349 | fflush( stdout ); |
| 350 | |
| 351 | if( ( ret = net_connect( &server_fd, opt.server_addr, opt.server_port, |
| 352 | NET_PROTO_UDP ) ) != 0 ) |
| 353 | { |
| 354 | printf( " failed\n ! net_connect returned %d\n\n", ret ); |
| 355 | goto exit; |
| 356 | } |
| 357 | |
| 358 | printf( " ok\n" ); |
| 359 | |
| 360 | /* |
| 361 | * 1. Setup the "listening" UDP socket |
| 362 | */ |
| 363 | printf( " . Bind on UDP/%s/%d ...", |
| 364 | opt.listen_addr, opt.listen_port ); |
| 365 | fflush( stdout ); |
| 366 | |
| 367 | if( ( ret = net_bind( &listen_fd, opt.listen_addr, opt.listen_port, |
| 368 | NET_PROTO_UDP ) ) != 0 ) |
| 369 | { |
| 370 | printf( " failed\n ! net_bind returned %d\n\n", ret ); |
| 371 | goto exit; |
| 372 | } |
| 373 | |
| 374 | printf( " ok\n" ); |
| 375 | |
| 376 | /* |
| 377 | * 2. Wait until a client connects |
| 378 | */ |
| 379 | printf( " . Waiting for a remote connection ..." ); |
| 380 | fflush( stdout ); |
| 381 | |
| 382 | if( ( ret = net_accept( listen_fd, &client_fd, NULL ) ) != 0 ) |
| 383 | { |
| 384 | printf( " failed\n ! net_accept returned %d\n\n", ret ); |
| 385 | goto exit; |
| 386 | } |
| 387 | |
| 388 | printf( " ok\n" ); |
| 389 | fflush( stdout ); |
| 390 | |
| 391 | /* |
| 392 | * 3. Forward packets forever (kill the process to terminate it) |
| 393 | */ |
| 394 | nb_fds = ( client_fd > server_fd ? client_fd : server_fd ) + 1; |
| 395 | |
| 396 | while( 1 ) |
| 397 | { |
| 398 | FD_ZERO( &read_fds ); |
| 399 | FD_SET( server_fd, &read_fds ); |
| 400 | FD_SET( client_fd, &read_fds ); |
| 401 | |
| 402 | if( ( ret = select( nb_fds, &read_fds, NULL, NULL, NULL ) ) <= 0 ) |
| 403 | { |
| 404 | perror( "select" ); |
| 405 | goto exit; |
| 406 | } |
| 407 | |
| 408 | if( FD_ISSET( client_fd, &read_fds ) ) |
| 409 | { |
| 410 | if( ( ret = handle_message( "c2s", server_fd, client_fd ) ) != 0 ) |
| 411 | goto exit; |
| 412 | } |
| 413 | |
| 414 | if( FD_ISSET( server_fd, &read_fds ) ) |
| 415 | { |
| 416 | if( ( ret = handle_message( "s2c", client_fd, server_fd ) ) != 0 ) |
| 417 | goto exit; |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | exit: |
| 422 | |
| 423 | #ifdef POLARSSL_ERROR_C |
| 424 | if( ret != 0 ) |
| 425 | { |
| 426 | char error_buf[100]; |
| 427 | polarssl_strerror( ret, error_buf, 100 ); |
| 428 | printf( "Last error was: -0x%04X - %s\n\n", - ret, error_buf ); |
| 429 | fflush( stdout ); |
| 430 | } |
| 431 | #endif |
| 432 | |
| 433 | if( client_fd != -1 ) |
| 434 | net_close( client_fd ); |
| 435 | |
| 436 | if( listen_fd != -1 ) |
| 437 | net_close( listen_fd ); |
| 438 | |
| 439 | #if defined(_WIN32) |
| 440 | printf( " Press Enter to exit this program.\n" ); |
| 441 | fflush( stdout ); getchar(); |
| 442 | #endif |
| 443 | |
| 444 | return( ret != 0 ); |
| 445 | } |
| 446 | |
| 447 | #endif /* POLARSSL_NET_C */ |