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
116
117
118
119
120
121
122
123
124
125
126
|
/* release_parse.c - the opkg package management system
Copyright (C) 2010,2011 Javier Palacios
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.
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. See the GNU
General Public License for more details.
*/
#include "config.h"
#include <stdio.h>
#include "release.h"
#include "release_parse.h"
#include "libbb/libbb.h"
#include "parse_util.h"
static int
release_parse_line(void *ptr, const char *line, uint mask)
{
release_t *release = (release_t *) ptr;
int ret = 0;
unsigned int count = 0;
char **list = 0;
static int reading_md5sums = 0;
#ifdef HAVE_SHA256
static int reading_sha256sums = 0;
#endif
switch (*line) {
case 'A':
if (is_field("Architectures", line)) {
release->architectures = parse_list(line, &release->architectures_count, ' ', 0);
}
break;
case 'C':
if (is_field("Codename", line)) {
release->name = parse_simple("Codename", line);
}
else if (is_field("Components", line)) {
release->components = parse_list(line, &release->components_count, ' ', 0);
}
break;
case 'D':
if (is_field("Date", line)) {
release->datestring = parse_simple("Date", line);
}
break;
case 'M':
if (is_field("MD5sum", line)) {
reading_md5sums = 1;
if (release->md5sums == NULL) {
release->md5sums = xcalloc(1, sizeof(cksum_list_t));
cksum_list_init(release->md5sums);
}
goto dont_reset_flags;
}
break;
#ifdef HAVE_SHA256
case 'S':
if (is_field("SHA256", line)) {
reading_sha256sums = 1;
if (release->sha256sums == NULL) {
release->sha256sums = xcalloc(1, sizeof(cksum_list_t));
cksum_list_init(release->sha256sums);
}
goto dont_reset_flags;
}
break;
#endif
case ' ':
if (reading_md5sums) {
list = parse_list(line, &count, ' ', 1);
cksum_list_append(release->md5sums, list);
goto dont_reset_flags;
}
#ifdef HAVE_SHA256
else if (reading_sha256sums) {
list = parse_list(line, &count, ' ', 1);
cksum_list_append(release->sha256sums, list);
goto dont_reset_flags;
}
#endif
break;
default:
ret = 1;
}
reading_md5sums = 0;
#ifdef HAVE_SHA256
reading_sha256sums = 0;
#endif
dont_reset_flags:
return ret;
}
int
release_parse_from_stream(release_t *release, FILE *fp)
{
int ret;
char *buf;
const size_t len = 4096;
buf = xmalloc(len);
ret = parse_from_stream_nomalloc(release_parse_line, release, fp, 0, &buf, len);
free(buf);
return ret;
}
|