Honor uninitialized private key in destructor
[gnutls.git] / tests / rng-fork.c
blob4bb396bc6d210426e8bae535409fb2e27447bfb4
1 /*
2 * Copyright (C) 2008, 2010 Free Software Foundation, Inc.
4 * Author: Nikos Mavrogiannopoulos
6 * This file is part of GnuTLS.
8 * GnuTLS is free software: you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
13 * GnuTLS is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with GnuTLS. If not, see <http://www.gnu.org/licenses/>.
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
27 #include <stdio.h>
28 #include <unistd.h>
29 #include <sys/types.h>
30 #if !defined(_WIN32)
31 #include <sys/wait.h>
32 #endif
34 #include "utils.h"
35 #include <gnutls/gnutls.h>
36 #include <gnutls/crypto.h>
37 #include "../lib/random.h"
39 #if !defined(_WIN32)
40 static void dump(const char* name, unsigned char* buf, int buf_size)
42 int i;
43 printf("%s: ", name);
44 for(i=0;i<buf_size;i++)
45 printf("%.2x:", buf[i]);
46 printf("\n");
49 #define FILENAME "./rng-test"
51 void
52 doit (void)
54 unsigned char buf1[32];
55 unsigned char buf2[32];
56 pid_t pid;
57 int ret;
58 FILE* fp;
60 gnutls_global_init ();
61 pid = fork();
62 if (pid == 0)
64 fp = fopen(FILENAME, "w");
65 if (fp == NULL)
66 fail("cannot open file");
68 _gnutls_rnd (GNUTLS_RND_RANDOM, buf1, sizeof (buf1));
69 if (debug) dump("buf1", buf1, sizeof(buf1));
71 fwrite(buf1, 1, sizeof(buf1), fp);
72 fclose(fp);
74 else
76 /* daddy */
77 _gnutls_rnd (GNUTLS_RND_RANDOM, buf2, sizeof (buf2));
78 if (debug) dump("buf2", buf2, sizeof(buf2));
79 waitpid(pid, NULL, 0);
81 fp = fopen(FILENAME, "r");
82 if (fp == NULL)
83 fail("cannot open file");
85 ret = fread(buf1, 1, sizeof(buf1), fp);
87 fclose(fp);
88 remove(FILENAME);
90 if (ret != sizeof(buf1))
92 fail("error testing the random generator.");
93 return;
96 if (memcmp(buf1, buf2, sizeof(buf1))==0)
98 fail("error in the random generator. Produces same valus after fork()");
99 return;
102 success("success");
105 #else
106 void
107 doit (void)
109 exit (77);
111 #endif