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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include "config.h"
#include "global.h"
struct config_data {
size_t num_apikeys;
char **apikeys;
struct apikey_perm *apikey_perms;
};
static struct config_data config_data;
static void add_apikey(char *key, struct apikey_perm perm) {
// This is slow, but optimisation is not worth it
config_data.num_apikeys++;
config_data.apikeys = realloc(config_data.apikeys, config_data.num_apikeys, char*);
config_data.apikey_perms =
realloc(config_data.apikey_perms, config_data.num_apikeys, struct apikey_perm);
config_data.apikeys[config_data.num_apikeys - 1] = key;
config_data.apikey_perms[config_data.num_apikeys - 1] = perm;
}
struct slice {
const char *s;
size_t len;
};
static struct slice next_word(struct slice *line) {
size_t cursor = 0;
while (cursor < line->len && isspace(line->s[cursor])) cursor++;
const size_t start = cursor;
while (cursor < line->len && !isspace(line->s[cursor])) cursor++;
const struct slice word = (struct slice){line->s + start, cursor - start};
line->s += cursor;
line->len -= cursor;
return word;
}
static void apply_config_line(const char *linebuf, size_t linelen) {
struct slice line = (struct slice){linebuf, linelen};
struct slice cmd = next_word(&line);
if (cmd.len == 0) return;
if (cmd.len == 6 && memcmp(cmd.s, "apikey", 6) == 0) {
struct slice key = next_word(&line);
struct slice pbits = next_word(&line);
if (line.len > 0) die("Too many fields on 'apikey' line");
for (size_t i = 0; i < pbits.len; i++) {
if (pbits.s[i] != '0' && pbits.s[i] != '1') {
die("Invalid permission bit '%c' on 'apikey' line", pbits.s[i]);
}
}
if (pbits.len != 1) die("Incorrect permission bit vector length on 'apikey' line");
struct apikey_perm perm;
perm.sendat = pbits.s[0] == '1';
for (size_t i = 0; i < key.len; i++) {
if (key.s[i] == '\0') die("Invalid null byte in key on 'apikey' line");
}
char *keystr = malloc(key.len + 1, char);
memcpy(keystr, key.s, key.len);
keystr[key.len] = '\0';
add_apikey(keystr, perm);
} else {
char *cmdstr = malloc(cmd.len + 1, char);
memcpy(cmdstr, cmd.s, cmd.len);
cmdstr[cmd.len] = '\0';
die("Unknown command '%s' in config file", cmdstr);
}
}
void config_init(const char *filename) {
FILE *f = fopen(filename, "r");
if (!f) die("Cannot open config file '%s'", filename);
char *line = NULL;
size_t linecap = 0;
ssize_t nr;
while ((nr = getline(&line, &linecap, f)) >= 0) {
if (line[0] == '#') continue;
if (nr > 0 && line[nr - 1] == '\n') nr--;
if (nr > 0 && line[nr - 1] == '\r') nr--;
apply_config_line(line, nr);
}
free(line);
if (!feof(f) && ferror(f)) {
die("Error reading config file '%s': %s", filename, strerror(errno));
}
fprintf(stderr, "config: Registered %zu API key%s\n",
config_data.num_apikeys, config_data.num_apikeys == 1 ? "" : "s");
}
struct apikey_perm config_check_apikey(const char *apikey) {
for (size_t i = 0; i < config_data.num_apikeys; i++) {
if (strcmp(config_data.apikeys[i], apikey) == 0) {
return config_data.apikey_perms[i];
}
}
// Unknown key means no permissions
struct apikey_perm perm;
memset(&perm, 0, sizeof perm);
return perm;
}
|