random_seed.c 3.57 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
#if HAVE_IO_H
#include <io.h>
#endif
29 30 31 32
#if HAVE_CRYPTGENRANDOM
#include <windows.h>
#include <wincrypt.h>
#endif
33
#include <fcntl.h>
34 35
#include <math.h>
#include <time.h>
36
#include <string.h>
37
#include "avassert.h"
38
#include "internal.h"
39
#include "intreadwrite.h"
40 41
#include "timer.h"
#include "random_seed.h"
42 43 44 45 46
#include "sha.h"

#ifndef TEST
#define TEST 0
#endif
47

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

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

    return err;
60 61 62
#else
    return -1;
#endif
63 64
}

65 66
static uint32_t get_generic_seed(void)
{
67
    uint64_t tmp[120/8];
68
    struct AVSHA *sha = (void*)tmp;
69
    clock_t last_t  = 0;
70
    clock_t last_td = 0;
71
    clock_t init_t = 0;
72
    static uint64_t i = 0;
73
    static uint32_t buffer[512] = { 0 };
74
    unsigned char digest[20];
75
    uint64_t last_i = i;
76

77 78
    av_assert0(sizeof(tmp) >= av_sha_size);

79 80 81 82 83 84 85 86 87 88 89
    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 (;;) {
90
        clock_t t = clock();
91
        if (last_t + 2*last_td + (CLOCKS_PER_SEC > 1000) >= t) {
92 93
            last_td = t - last_t;
            buffer[i & 511] = 1664525*buffer[i & 511] + 1013904223 + (last_td % 3294638521U);
94
        } else {
95 96
            last_td = t - last_t;
            buffer[++i & 511] += last_td % 3294638521U;
97 98 99
            if ((t - init_t) >= CLOCKS_PER_SEC>>5)
                if (last_i && i - last_i > 4 || i - last_i > 64 || TEST && i - last_i > 8)
                    break;
100
        }
101
        last_t = t;
102 103
        if (!init_t)
            init_t = t;
104 105
    }

106
    if(TEST) {
107
        buffer[0] = buffer[1] = 0;
108 109 110 111 112
    } else {
#ifdef AV_READ_TIME
        buffer[111] += AV_READ_TIME();
#endif
    }
113

114
    av_sha_init(sha, 160);
115
    av_sha_update(sha, (const uint8_t *)buffer, sizeof(buffer));
116
    av_sha_final(sha, digest);
117
    return AV_RB32(digest) + AV_RB32(digest + 16);
118 119
}

120
uint32_t av_get_random_seed(void)
121 122
{
    uint32_t seed;
123

124 125 126 127 128 129 130 131 132 133 134
#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

135 136 137 138
#if HAVE_ARC4RANDOM
    return arc4random();
#endif

Måns Rullgård's avatar
Måns Rullgård committed
139 140 141
    if (read_random(&seed, "/dev/urandom") == sizeof(seed))
        return seed;
    if (read_random(&seed, "/dev/random")  == sizeof(seed))
142
        return seed;
143
    return get_generic_seed();
144
}