random_seed.c 3.56 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Copyright (c) 2009 Baptiste Coudurier <baptiste.coudurier@gmail.com>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

21 22 23
#include "config.h"

#if HAVE_UNISTD_H
24
#include <unistd.h>
25
#endif
26 27 28 29
#if HAVE_CRYPTGENRANDOM
#include <windows.h>
#include <wincrypt.h>
#endif
30
#include <fcntl.h>
31 32
#include <math.h>
#include <time.h>
33
#include <string.h>
34
#include "avassert.h"
35
#include "internal.h"
36
#include "intreadwrite.h"
37 38
#include "timer.h"
#include "random_seed.h"
39 40 41 42 43
#include "sha.h"

#ifndef TEST
#define TEST 0
#endif
44

45 46
static int read_random(uint32_t *dst, const char *file)
{
47
#if HAVE_UNISTD_H
48
    int fd = avpriv_open(file, O_RDONLY);
49 50 51 52
    int err = -1;

    if (fd == -1)
        return -1;
Måns Rullgård's avatar
Måns Rullgård committed
53
    err = read(fd, dst, sizeof(*dst));
54 55 56
    close(fd);

    return err;
57 58 59
#else
    return -1;
#endif
60 61
}

62 63
static uint32_t get_generic_seed(void)
{
64
    uint8_t tmp[120];
65
    struct AVSHA *sha = (void*)tmp;
66
    clock_t last_t  = 0;
67
    static uint64_t i = 0;
68
    static uint32_t buffer[512] = { 0 };
69
    unsigned char digest[20];
70
    uint64_t last_i = i;
71

72 73
    av_assert0(sizeof(tmp) >= av_sha_size);

74 75 76 77 78 79 80 81 82 83 84
    if(TEST){
        memset(buffer, 0, sizeof(buffer));
        last_i = i = 0;
    }else{
#ifdef AV_READ_TIME
        buffer[13] ^= AV_READ_TIME();
        buffer[41] ^= AV_READ_TIME()>>32;
#endif
    }

    for (;;) {
85
        clock_t t = clock();
86

87 88 89 90
        if (last_t == t) {
            buffer[i & 511]++;
        } else {
            buffer[++i & 511] += (t - last_t) % 3294638521U;
91
            if (last_i && i - last_i > 4 || i - last_i > 64 || TEST && i - last_i > 8)
92
                break;
93
        }
94
        last_t = t;
95 96
    }

97 98
    if(TEST)
        buffer[0] = buffer[1] = 0;
99

100
    av_sha_init(sha, 160);
101
    av_sha_update(sha, (const uint8_t *)buffer, sizeof(buffer));
102
    av_sha_final(sha, digest);
103
    return AV_RB32(digest) + AV_RB32(digest + 16);
104 105
}

106
uint32_t av_get_random_seed(void)
107 108
{
    uint32_t seed;
109

110 111 112 113 114 115 116 117 118 119 120
#if HAVE_CRYPTGENRANDOM
    HCRYPTPROV provider;
    if (CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL,
                            CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
        BOOL ret = CryptGenRandom(provider, sizeof(seed), (PBYTE) &seed);
        CryptReleaseContext(provider, 0);
        if (ret)
            return seed;
    }
#endif

Måns Rullgård's avatar
Måns Rullgård committed
121 122 123
    if (read_random(&seed, "/dev/urandom") == sizeof(seed))
        return seed;
    if (read_random(&seed, "/dev/random")  == sizeof(seed))
124
        return seed;
125
    return get_generic_seed();
126
}
127

128
#if TEST
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
#undef printf
#define N 256
#include <stdio.h>

int main(void)
{
    int i, j, retry;
    uint32_t seeds[N];

    for (retry=0; retry<3; retry++){
        for (i=0; i<N; i++){
            seeds[i] = av_get_random_seed();
            for (j=0; j<i; j++)
                if (seeds[j] == seeds[i])
                    goto retry;
        }
        printf("seeds OK\n");
        return 0;
        retry:;
    }
    printf("FAIL at %d with %X\n", j, seeds[j]);
    return 1;
}
#endif