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
|
/*
* src/zonefile.c
* (c) 2021 Jonas Gunz <himself@jonasgunz.de>
* License: MIT
*/
#include "zonefile.h"
int zonefile_parse_line(database_t *_database, char *_line) {
unsigned int i, o, start;
char *parts[5];
/* Does this work? */
memset(&parts, 0, sizeof(parts));
start = 0;
for ( i=0; i < 4; i++ ) {
for ( o=start; _line[o] && _line[o] != ' '; o++ );
parts[i] = &_line[start];
if(!_line[o])
break;
_line[o] = '\0';
start = o+1;
}
/* parts is the first 5 space-seperated parts of _line */
return -1;
}
int zonefile_to_database (database_t *_database, char* _file) {
FILE *zfile = NULL;
char *line = NULL;
ssize_t line_len = 0;
unsigned int line_cnt = 0;
zfile = fopen(_file, "r");
if (!zfile) {
LOGPRINTF(_LOG_ERRNO, "Could not open %s", _file);
return -1;
}
while(!feof(zfile)) {
line_cnt ++;
line_len = getline(&line, 0, zfile);
/* getline includes the line break. ONLY UNIX!! */
if( line[line_len - 2] == '\n' )
line[line_len - 2] = '\0';
if ( zonefile_parse_line(_database, line) < 0) {
LOGPRINTF(_LOG_ERROR, "Error is in line %u", line_cnt)
return -1;
}
free(line);
line = NULL;
}
fclose(zfile);
return -1;
}
|