Add randomness to PING/PONG packets to prevent crypto attacks on quiet
[tinc] / src / protocol.c
index 625c709..e3e7e39 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: protocol.c,v 1.28.4.86 2001/03/13 21:33:31 guus Exp $
+    $Id: protocol.c,v 1.28.4.88 2001/05/24 21:29:09 guus Exp $
 */
 
 #include "config.h"
@@ -915,7 +915,7 @@ cp
 int del_host_h(connection_t *cl)
 {
   char name[MAX_STRING_SIZE];
-  ip_t address;
+  ipv4_t address;
   port_t port;
   long int options;
   connection_t *old, *p;
@@ -1060,11 +1060,14 @@ cp
 
 int send_ping(connection_t *cl)
 {
+  char salt[SALTLEN*2+1];
 cp
   cl->status.pinged = 1;
   cl->last_ping_time = time(NULL);
+  RAND_bytes(salt, SALTLEN);
+  bin2hex(salt, salt, SALTLEN);
 cp
-  return send_request(cl, "%d", PING);
+  return send_request(cl, "%d %s", PING, salt);
 }
 
 int ping_h(connection_t *cl)
@@ -1075,8 +1078,12 @@ cp
 
 int send_pong(connection_t *cl)
 {
+  char salt[SALTLEN*2+1];
 cp
-  return send_request(cl, "%d", PONG);
+  RAND_bytes(salt, SALTLEN);
+  bin2hex(salt, salt, SALTLEN);
+cp
+  return send_request(cl, "%d %s", PONG, salt);
 }
 
 int pong_h(connection_t *cl)