osRand.c 2.0 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program 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.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
wafwerar's avatar
wafwerar 已提交
15
#define ALLOW_FORBID_FUNC
S
Shengliang Guan 已提交
16 17
#define _DEFAULT_SOURCE
#include "os.h"
wafwerar's avatar
wafwerar 已提交
18 19 20
#ifdef WINDOWS
#include "windows.h"
#include "wincrypt.h"
S
Shengliang Guan 已提交
21 22
#else
#include <sys/file.h>
S
Shengliang Guan 已提交
23
#include <unistd.h>
S
Shengliang Guan 已提交
24
#endif
S
Shengliang Guan 已提交
25

wafwerar's avatar
wafwerar 已提交
26 27
void taosSeedRand(uint32_t seed) { return srand(seed); }

S
Shengliang Guan 已提交
28 29
uint32_t taosRand(void) { return rand(); }

wafwerar's avatar
wafwerar 已提交
30 31 32 33 34 35 36
uint32_t taosRandR(uint32_t *pSeed) {
#ifdef WINDOWS
  return rand_s(pSeed); 
#else
  return rand_r(pSeed); 
#endif
}
wafwerar's avatar
wafwerar 已提交
37

S
Shengliang Guan 已提交
38
uint32_t taosSafeRand(void) {
wafwerar's avatar
wafwerar 已提交
39
#ifdef WINDOWS
wafwerar's avatar
wafwerar 已提交
40
  uint32_t seed = taosRand();
wafwerar's avatar
wafwerar 已提交
41
  HCRYPTPROV hCryptProv;
wafwerar's avatar
wafwerar 已提交
42 43 44 45 46
  if (!CryptAcquireContext(&hCryptProv, NULL, NULL, PROV_RSA_FULL, 0)) {
    if (!CryptAcquireContext(&hCryptProv, NULL, NULL, PROV_RSA_FULL, CRYPT_NEWKEYSET)) {
      return seed;
    }
  }
wafwerar's avatar
wafwerar 已提交
47 48 49 50 51 52
  if (hCryptProv != NULL) {
    if (!CryptGenRandom(hCryptProv, 4, &seed)) return seed;
  }
  if (hCryptProv != NULL) CryptReleaseContext(hCryptProv, 0);
  return seed;
#else
53
  TdFilePtr pFile;
S
Shengliang Guan 已提交
54 55
  int seed;

56 57
  pFile = taosOpenFile("/dev/urandom", TD_FILE_READ);
  if (pFile == NULL) {
wafwerar's avatar
wafwerar 已提交
58
    seed = (int)taosGetTimestampSec();
S
Shengliang Guan 已提交
59
  } else {
60
    int len = taosReadFile(pFile, &seed, sizeof(seed));
S
Shengliang Guan 已提交
61
    if (len < 0) {
wafwerar's avatar
wafwerar 已提交
62
      seed = (int)taosGetTimestampSec();
S
Shengliang Guan 已提交
63
    }
64
    taosCloseFile(&pFile);
S
Shengliang Guan 已提交
65 66 67
  }

  return (uint32_t)seed;
wafwerar's avatar
wafwerar 已提交
68
#endif
S
Shengliang Guan 已提交
69 70 71 72 73 74 75 76 77 78
}

void taosRandStr(char* str, int32_t size) {
  const char* set = "abcdefghijklmnopqrstuvwxyz0123456789-_.";
  int32_t     len = 39;

  for (int32_t i = 0; i < size; ++i) {
    str[i] = set[taosRand() % len];
  }
}