blob: 06d2eb6fa798cd0b69ac43afd008cf1f0c1e9682 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
* ulidgen_r - generate ULID
* (Universally Unique Lexicographically Sortable Identifier)
*
* To the extent possible under law, Leah Neukirchen <leah@vuxu.org>
* has waived all copyright and related or neighboring rights to this work.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
void
ulidgen_r(char ulid[27])
{
static const char *b32alphabet = "0123456789ABCDEFGHJKMNPQRSTVWXYZ";
char *buf = ulid + 10;
int same = 1;
ulid[26] = 0;
struct timespec tv;
clock_gettime(CLOCK_REALTIME, &tv);
uint64_t t = tv.tv_sec*1000 + tv.tv_nsec/1000000;
for (int i = 9; i >= 0; i--, t /= 32)
if (ulid[i] != b32alphabet[t % 32])
ulid[i] = b32alphabet[t % 32], same = 0;
if (same) { /* increment random part in place */
int i = 15;
while (i >= 0 && buf[i] == 'Z')
buf[i--] = '0';
if (i < 0) {
/* restart 1ms + a bit later */
nanosleep(&(struct timespec) { 0, 1234567 }, 0);
ulidgen_r(ulid);
return;
}
char *s = strchr(b32alphabet, buf[i]);
if (s) {
buf[i] = *(s+1);
return;
}
/* else randomize again when we found invalid chars */
}
unsigned char rnd[16]; /* use 16 bytes for easier encoding */
if (getentropy(rnd, sizeof rnd) < 0)
abort();
for (int i = 0; i < 16; i++)
buf[i] = b32alphabet[rnd[i] % 32];
}
|