FFmpeg  2.8.15
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
random_seed.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2009 Baptiste Coudurier <baptiste.coudurier@gmail.com>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include "config.h"
22 
23 #if HAVE_UNISTD_H
24 #include <unistd.h>
25 #endif
26 #if HAVE_IO_H
27 #include <io.h>
28 #endif
29 #if HAVE_CRYPTGENRANDOM
30 #include <windows.h>
31 #include <wincrypt.h>
32 #endif
33 #include <fcntl.h>
34 #include <math.h>
35 #include <time.h>
36 #include <string.h>
37 #include "avassert.h"
38 #include "internal.h"
39 #include "intreadwrite.h"
40 #include "timer.h"
41 #include "random_seed.h"
42 #include "sha.h"
43 
44 #ifndef TEST
45 #define TEST 0
46 #endif
47 
48 static int read_random(uint32_t *dst, const char *file)
49 {
50 #if HAVE_UNISTD_H
51  int fd = avpriv_open(file, O_RDONLY);
52  int err = -1;
53 
54  if (fd == -1)
55  return -1;
56  err = read(fd, dst, sizeof(*dst));
57  close(fd);
58 
59  return err;
60 #else
61  return -1;
62 #endif
63 }
64 
65 static uint32_t get_generic_seed(void)
66 {
67  uint8_t tmp[120];
68  struct AVSHA *sha = (void*)tmp;
69  clock_t last_t = 0;
70  clock_t last_td = 0;
71  static uint64_t i = 0;
72  static uint32_t buffer[512] = { 0 };
73  unsigned char digest[20];
74  uint64_t last_i = i;
75 
76  av_assert0(sizeof(tmp) >= av_sha_size);
77 
78  if(TEST){
79  memset(buffer, 0, sizeof(buffer));
80  last_i = i = 0;
81  }else{
82 #ifdef AV_READ_TIME
83  buffer[13] ^= AV_READ_TIME();
84  buffer[41] ^= AV_READ_TIME()>>32;
85 #endif
86  }
87 
88  for (;;) {
89  clock_t t = clock();
90  if (last_t + 2*last_td + (CLOCKS_PER_SEC > 1000) >= t) {
91  last_td = t - last_t;
92  buffer[i & 511] = 1664525*buffer[i & 511] + 1013904223 + (last_td % 3294638521U);
93  } else {
94  last_td = t - last_t;
95  buffer[++i & 511] += last_td % 3294638521U;
96  if (last_i && i - last_i > 4 || i - last_i > 64 || TEST && i - last_i > 8)
97  break;
98  }
99  last_t = t;
100  }
101 
102  if(TEST) {
103  buffer[0] = buffer[1] = 0;
104  } else {
105 #ifdef AV_READ_TIME
106  buffer[111] += AV_READ_TIME();
107 #endif
108  }
109 
110  av_sha_init(sha, 160);
111  av_sha_update(sha, (const uint8_t *)buffer, sizeof(buffer));
112  av_sha_final(sha, digest);
113  return AV_RB32(digest) + AV_RB32(digest + 16);
114 }
115 
116 uint32_t av_get_random_seed(void)
117 {
118  uint32_t seed;
119 
120 #if HAVE_CRYPTGENRANDOM
121  HCRYPTPROV provider;
122  if (CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL,
123  CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
124  BOOL ret = CryptGenRandom(provider, sizeof(seed), (PBYTE) &seed);
125  CryptReleaseContext(provider, 0);
126  if (ret)
127  return seed;
128  }
129 #endif
130 
131  if (read_random(&seed, "/dev/urandom") == sizeof(seed))
132  return seed;
133  if (read_random(&seed, "/dev/random") == sizeof(seed))
134  return seed;
135  return get_generic_seed();
136 }
137 
138 #if TEST
139 #undef printf
140 #define N 256
141 #include <stdio.h>
142 
143 int main(void)
144 {
145  int i, j, retry;
146  uint32_t seeds[N];
147 
148  for (retry=0; retry<3; retry++){
149  for (i=0; i<N; i++){
150  seeds[i] = av_get_random_seed();
151  for (j=0; j<i; j++)
152  if (seeds[j] == seeds[i])
153  goto retry;
154  }
155  printf("seeds OK\n");
156  return 0;
157  retry:;
158  }
159  printf("FAIL at %d with %X\n", j, seeds[j]);
160  return 1;
161 }
162 #endif
void av_sha_final(AVSHA *ctx, uint8_t *digest)
Finish hashing and output digest value.
Definition: sha.c:341
#define NULL
Definition: coverity.c:32
void av_sha_update(AVSHA *ctx, const uint8_t *data, unsigned int len)
Update hash value.
Definition: sha.c:314
hash context
Definition: sha.c:34
static int read_random(uint32_t *dst, const char *file)
Definition: random_seed.c:48
av_cold int av_sha_init(AVSHA *ctx, int bits)
Initialize SHA-1 or SHA-2 hashing.
Definition: sha.c:273
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
uint8_t
#define AV_RB32
Definition: intreadwrite.h:130
int avpriv_open(const char *filename, int flags,...)
A wrapper for open() setting O_CLOEXEC.
Definition: file_open.c:66
#define N
Definition: vf_pp7.c:73
static uint32_t get_generic_seed(void)
Definition: random_seed.c:65
#define AV_READ_TIME
Definition: timer.h:26
high precision timer, useful to profile code
#define U(x)
Definition: vp56_arith.h:37
simple assert() macros that are a bit more flexible than ISO C assert().
common internal API header
static unsigned int seed
Definition: videogen.c:78
#define TEST
Definition: random_seed.c:45
uint32_t BOOL
const int av_sha_size
Definition: sha.c:43
uint32_t av_get_random_seed(void)
Get a seed to use in conjunction with random functions.
Definition: random_seed.c:116
int main(int argc, char **argv)
Definition: main.c:22
GLuint buffer
Definition: opengl_enc.c:102