07d81eb62041a45ec150da1ec45a3829a1a2e508
[samba.git] / source4 / heimdal / lib / hcrypto / rand-unix.c
1 /*
2  * Copyright (c) 2006 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden).
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the Institute nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifdef HAVE_CONFIG_H
35 #include <config.h>
36 #endif
37
38 RCSID("$Id$");
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <rand.h>
43 #include <heim_threads.h>
44
45 #include <roken.h>
46
47 #include "randi.h"
48
49 static int random_fd = -1;
50 static HEIMDAL_MUTEX random_mutex = HEIMDAL_MUTEX_INITIALIZER;
51
52 /*
53  * Unix /dev/random
54  */
55
56 static int
57 get_device_fd(int flags)
58 {
59     static const char *rnd_devices[] = {
60         "/dev/urandom",
61         "/dev/random",
62         "/dev/srandom",
63         "/dev/arandom",
64         NULL
65     };
66     const char **p;
67
68     for(p = rnd_devices; *p; p++) {
69         int fd = open(*p, flags | O_NDELAY);
70         if(fd >= 0) {
71             rk_cloexec(fd);
72             return fd;
73         }
74     }
75     return -1;
76 }
77
78 static void
79 unix_seed(const void *indata, int size)
80 {
81     int fd;
82
83     if (size <= 0)
84         return;
85
86     fd = get_device_fd(O_WRONLY);
87     if (fd < 0)
88         return;
89
90     write(fd, indata, size);
91     close(fd);
92
93 }
94
95
96 static int
97 unix_bytes(unsigned char *outdata, int size)
98 {
99     ssize_t count;
100     int once = 0;
101
102     if (size <= 0)
103         return 0;
104
105     HEIMDAL_MUTEX_lock(&random_mutex);
106     if (random_fd == -1) {
107     retry:
108         random_fd = get_device_fd(O_RDONLY);
109         if (random_fd < 0) {
110             HEIMDAL_MUTEX_unlock(&random_mutex);
111             return 0;
112         }
113     }
114
115     while (size > 0) {
116         HEIMDAL_MUTEX_unlock(&random_mutex);
117         count = read (random_fd, outdata, size);
118         HEIMDAL_MUTEX_lock(&random_mutex);
119         if (random_fd < 0) {
120             if (errno == EINTR)
121                 continue;
122             else if (errno == EBADF && once++ == 0) {
123                 close(random_fd);
124                 random_fd = -1;
125                 goto retry;
126             }
127             return 0;
128         } else if (count <= 0) {
129             HEIMDAL_MUTEX_unlock(&random_mutex);
130             return 0;
131         }
132         outdata += count;
133         size -= count;
134     }
135     HEIMDAL_MUTEX_unlock(&random_mutex);
136
137     return 1;
138 }
139
140 static void
141 unix_cleanup(void)
142 {
143 }
144
145 static void
146 unix_add(const void *indata, int size, double entropi)
147 {
148     unix_seed(indata, size);
149 }
150
151 static int
152 unix_pseudorand(unsigned char *outdata, int size)
153 {
154     return unix_bytes(outdata, size);
155 }
156
157 static int
158 unix_status(void)
159 {
160     int fd;
161
162     fd = get_device_fd(O_RDONLY);
163     if (fd < 0)
164         return 0;
165     close(fd);
166
167     return 1;
168 }
169
170 const RAND_METHOD hc_rand_unix_method = {
171     unix_seed,
172     unix_bytes,
173     unix_cleanup,
174     unix_add,
175     unix_pseudorand,
176     unix_status
177 };
178
179 const RAND_METHOD *
180 RAND_unix_method(void)
181 {
182     return &hc_rand_unix_method;
183 }