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_CRYPTGENRANDOM
27 #include <windows.h>
28 #include <wincrypt.h>
29 #endif
30 #include <fcntl.h>
31 #include <math.h>
32 #include <time.h>
33 #include <string.h>
34 #include "avassert.h"
35 #include "timer.h"
36 #include "random_seed.h"
37 #include "sha.h"
38 #include "intreadwrite.h"
39 
40 #ifndef TEST
41 #define TEST 0
42 #endif
43 
44 static int read_random(uint32_t *dst, const char *file)
45 {
46 #if HAVE_UNISTD_H
47  int fd = open(file, O_RDONLY);
48  int err = -1;
49 
50  if (fd == -1)
51  return -1;
52  err = read(fd, dst, sizeof(*dst));
53  close(fd);
54 
55  return err;
56 #else
57  return -1;
58 #endif
59 }
60 
61 static uint32_t get_generic_seed(void)
62 {
63  uint8_t tmp[120];
64  struct AVSHA *sha = (void*)tmp;
65  clock_t last_t = 0;
66  static uint64_t i = 0;
67  static uint32_t buffer[512] = {0};
68  unsigned char digest[20];
69  uint64_t last_i = i;
70 
71  av_assert0(sizeof(tmp) >= av_sha_size);
72 
73  if(TEST){
74  memset(buffer, 0, sizeof(buffer));
75  last_i = i = 0;
76  }else{
77 #ifdef AV_READ_TIME
78  buffer[13] ^= AV_READ_TIME();
79  buffer[41] ^= AV_READ_TIME()>>32;
80 #endif
81  }
82 
83  for (;;) {
84  clock_t t = clock();
85 
86  if(last_t == t){
87  buffer[i&511]++;
88  }else{
89  buffer[++i&511]+= (t-last_t) % 3294638521U;
90  if(last_i && i-last_i > 4 || i-last_i > 64 || TEST && i-last_i > 8)
91  break;
92  }
93  last_t = t;
94  }
95 
96  if(TEST)
97  buffer[0] = buffer[1] = 0;
98 
99  av_sha_init(sha, 160);
100  av_sha_update(sha, (uint8_t*)buffer, sizeof(buffer));
101  av_sha_final(sha, digest);
102  return AV_RB32(digest) + AV_RB32(digest+16);
103 }
104 
105 uint32_t av_get_random_seed(void)
106 {
107  uint32_t seed;
108 
109 #if HAVE_CRYPTGENRANDOM
110  HCRYPTPROV provider;
111  if (CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL,
112  CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
113  BOOL ret = CryptGenRandom(provider, sizeof(seed), (PBYTE) &seed);
114  CryptReleaseContext(provider, 0);
115  if (ret)
116  return seed;
117  }
118 #endif
119 
120  if (read_random(&seed, "/dev/urandom") == sizeof(seed))
121  return seed;
122  if (read_random(&seed, "/dev/random") == sizeof(seed))
123  return seed;
124  return get_generic_seed();
125 }
126 
127 #if TEST
128 #undef printf
129 #define N 256
130 #include <stdio.h>
131 
132 int main(void)
133 {
134  int i, j, retry;
135  uint32_t seeds[N];
136 
137  for (retry=0; retry<3; retry++){
138  for (i=0; i<N; i++){
139  seeds[i] = av_get_random_seed();
140  for (j=0; j<i; j++)
141  if (seeds[j] == seeds[i])
142  goto retry;
143  }
144  printf("seeds OK\n");
145  return 0;
146  retry:;
147  }
148  printf("FAIL at %d with %X\n", j, seeds[j]);
149  return 1;
150 }
151 #endif
void av_sha_final(AVSHA *ctx, uint8_t *digest)
Finish hashing and output digest value.
Definition: sha.c:320
void av_sha_update(AVSHA *ctx, const uint8_t *data, unsigned int len)
Update hash value.
Definition: sha.c:293
hash context
Definition: sha.c:32
static int read_random(uint32_t *dst, const char *file)
Definition: random_seed.c:44
int av_sha_init(AVSHA *ctx, int bits)
Initialize SHA-1 or SHA-2 hashing.
Definition: sha.c:252
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
uint8_t
#define AV_RB32
#define N
Definition: vf_pp7.c:200
static uint32_t get_generic_seed(void)
Definition: random_seed.c:61
#define AV_READ_TIME
Definition: bfin/timer.h:26
high precision timer, useful to profile code
#define U(x)
simple assert() macros that are a bit more flexible than ISO C assert().
ret
Definition: avfilter.c:821
FFmpeg Automated Testing Environment ************************************Table of Contents *****************FFmpeg Automated Testing Environment Introduction Using FATE from your FFmpeg source directory Submitting the results to the FFmpeg result aggregation server FATE makefile targets and variables Makefile targets Makefile variables Examples Introduction **************FATE is an extended regression suite on the client side and a means for results aggregation and presentation on the server side The first part of this document explains how you can use FATE from your FFmpeg source directory to test your ffmpeg binary The second part describes how you can run FATE to submit the results to FFmpeg s FATE server In any way you can have a look at the publicly viewable FATE results by visiting this as it can be seen if some test on some platform broke with their recent contribution This usually happens on the platforms the developers could not test on The second part of this document describes how you can run FATE to submit your results to FFmpeg s FATE server If you want to submit your results be sure to check that your combination of OS and compiler is not already listed on the above mentioned website In the third part you can find a comprehensive listing of FATE makefile targets and variables Using FATE from your FFmpeg source directory **********************************************If you want to run FATE on your machine you need to have the samples in place You can get the samples via the build target fate rsync Use this command from the top level source this will cause FATE to fail NOTE To use a custom wrapper to run the pass target exec to configure or set the TARGET_EXEC Make variable Submitting the results to the FFmpeg result aggregation server ****************************************************************To submit your results to the server you should run fate through the shell script tests fate sh from the FFmpeg sources This script needs to be invoked with a configuration file as its first argument tests fate sh path to fate_config A configuration file template with comments describing the individual configuration variables can be found at doc fate_config sh template Create a configuration that suits your based on the configuration template The slot configuration variable can be any string that is not yet but it is suggested that you name it adhering to the following pattern< arch >< os >< compiler >< compiler version > The configuration file itself will be sourced in a shell therefore all shell features may be used This enables you to setup the environment as you need it for your build For your first test runs the fate_recv variable should be empty or commented out This will run everything as normal except that it will omit the submission of the results to the server The following files should be present in $workdir as specified in the configuration file
Definition: fate.txt:34
t
Definition: genspecsines3.m:6
NULL
Definition: eval.c:55
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
static unsigned int seed
Definition: videogen.c:78
synthesis window for stochastic i
#define TEST
Definition: random_seed.c:41
the buffer and buffer reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFilterBuffer structures They must not be accessed but through references stored in AVFilterBufferRef structures Several references can point to the same buffer
uint32_t BOOL
const int av_sha_size
Definition: sha.c:41
printf("static const uint8_t my_array[100] = {\n")
else dst[i][x+y *dst_stride[i]]
Definition: vf_mcdeint.c:160
uint32_t av_get_random_seed(void)
Get a seed to use in conjunction with random functions.
Definition: random_seed.c:105
int main(int argc, char **argv)
Definition: main.c:22