]> sjero.net Git - wget/blobdiff - src/gen_sslfunc.c
[svn] Implement EGD support.
[wget] / src / gen_sslfunc.c
index c19cc66fe08d0af64e9e272b143a5d55ce1df66f..5ef5105063fc3e6f59581b98eb76c6f0df3cac9a 100644 (file)
@@ -1,20 +1,21 @@
 /* SSL support.
-   Copyright (C) 2000 Christian Fraenkel.
+   Copyright (C) 2000 Free Software Foundation, Inc.
+   Contributed by Christian Fraenkel.
 
-This file is part of Wget.
+This file is part of GNU Wget.
 
-This program is free software; you can redistribute it and/or modify
+GNU Wget is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 
-This program is distributed in the hope that it will be useful,
+GNU Wget is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
+along with Wget; if not, write to the Free Software
 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #include <config.h>
@@ -22,8 +23,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #ifdef HAVE_SSL
 
 #include <assert.h>
-#include <sys/time.h>
 #include <errno.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
 
 #include <openssl/bio.h>
 #include <openssl/crypto.h>
@@ -31,6 +34,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include <openssl/ssl.h>
 #include <openssl/err.h>
 #include <openssl/pem.h>
+#include <openssl/rand.h>
 
 #include "wget.h"
 #include "connect.h"
@@ -41,6 +45,50 @@ extern int errno;
 
 static int verify_callback PARAMS ((int, X509_STORE_CTX *));
 
+static void
+ssl_init_prng (void)
+{
+#if SSLEAY_VERSION_NUMBER >= 0x00905100
+  if (RAND_status () == 0)
+    {
+      char rand_file[256];
+      time_t t;
+      long l,seed;
+
+      t = time(NULL);
+      /* gets random data from egd if opt.sslegdsock was set */
+      if (opt.sslegdsock != NULL)
+       RAND_egd(opt.sslegdsock);
+      /* gets the file ~/.rnd or $RANDFILE if set */
+      RAND_file_name(rand_file, 256);
+      if (rand_file != NULL)
+       {
+         /* Seed as much as 1024 bytes from RAND_file_name */
+         RAND_load_file(rand_file, 1024);
+       }
+      /* Seed in time (mod_ssl does this) */
+      RAND_seed((unsigned char *)&t, sizeof(time_t));
+      /* Initialize system's random number generator */
+      RAND_bytes((unsigned char *)&seed, sizeof(long));
+      srand48(seed);
+      while (RAND_status () == 0)
+       {
+         /* Repeatedly seed the PRNG using the system's random number
+            generator until it has been seeded with enough data.  */
+         l = lrand48();
+         RAND_seed((unsigned char *)&l, sizeof(long));
+       }
+      if (rand_file != NULL)
+       {
+         /* Write a rand_file */
+         RAND_write_file(rand_file);
+       }
+    }
+#endif /* SSLEAY_VERSION_NUMBER >= 0x00905100 */
+  return;
+}
+
+
 /* Creates a SSL Context and sets some defaults for it */
 uerr_t
 init_ssl (SSL_CTX **ctx)
@@ -66,6 +114,7 @@ init_ssl (SSL_CTX **ctx)
                                       SSL_FILETYPE_PEM) <= 0)
        return SSLERRCERTKEY;
   }
+  ssl_init_prng();
   return 0; /* Succeded */
 }
 
@@ -82,6 +131,9 @@ connect_ssl (SSL **con, SSL_CTX *ctx, int fd)
   SSL_connect (*con);  
   if ((*con)->state != SSL_ST_OK)
     return 1;
+  /*while((SSLerror=ERR_get_error())!=0)
+    printf("%s\n", ERR_error_string(SSLerror,NULL));*/
+
   return 0;
 }