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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
|
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <limits.h>
#include <string.h>
#include <sys/stat.h>
#include <dirent.h>
#include <libgen.h>
#include <alpm.h>
#include <alpm_list.h>
#define BASENAME "testdb"
int str_cmp(const void *s1, const void *s2)
{
return(strcmp(s1, s2));
}
static void diffrqdby(const char *pkgname, alpm_list_t *oldrqdby, alpm_list_t *newrqdby)
{
oldrqdby = alpm_list_msort(oldrqdby, alpm_list_count(oldrqdby), str_cmp);
newrqdby = alpm_list_msort(newrqdby, alpm_list_count(newrqdby), str_cmp);
alpm_list_t *i = oldrqdby;
alpm_list_t *j = newrqdby;
while(i || j) {
char *s1 = NULL;
char *s2 = NULL;
int n;
if(i && !j) {
n = -1;
} else if(!i && j) {
n = 1;
} else {
s1 = i->data;
s2 = j->data;
n = strcmp(s1, s2);
}
if(n < 0) {
s1 = i->data;
printf("wrong requiredby for %s : %s\n", pkgname, s1);
i = i->next;
} else if (n > 0) {
s2 = j->data;
printf("missing requiredby for %s : %s\n", pkgname, s2);
j = j->next;
} else {
i = i->next;
j = j->next;
}
}
}
static void cleanup(int signum) {
if(alpm_release() == -1) {
fprintf(stderr, "error releasing alpm: %s\n", alpm_strerrorlast());
}
exit(signum);
}
void output_cb(pmloglevel_t level, char *fmt, va_list args)
{
if(strlen(fmt)) {
switch(level) {
case PM_LOG_ERROR: printf("error: "); break;
case PM_LOG_WARNING: printf("warning: "); break;
default: return;
}
vprintf(fmt, args);
printf("\n");
}
}
static int db_test(char *dbpath)
{
struct dirent *ent;
char path[PATH_MAX];
struct stat buf;
int ret = 0;
DIR *dir;
if(!(dir = opendir(dbpath))) {
fprintf(stderr, "error : %s : %s\n", dbpath, strerror(errno));
return(1);
}
while ((ent = readdir(dir)) != NULL) {
if(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..")) {
continue;
}
snprintf(path, PATH_MAX, "%s/%s/desc", dbpath, ent->d_name);
if(stat(path, &buf)) {
printf("%s: description file is missing\n", ent->d_name);
ret++;
}
snprintf(path, PATH_MAX, "%s/%s/depends", dbpath, ent->d_name);
if(stat(path, &buf)) {
printf("%s: dependency file is missing\n", ent->d_name);
ret++;
}
snprintf(path, PATH_MAX, "%s/%s/files", dbpath, ent->d_name);
if(stat(path, &buf)) {
printf("%s: file list is missing\n", ent->d_name);
ret++;
}
}
return(ret);
}
int main(int argc, char **argv)
{
int retval = 0;
pmdb_t *db = NULL;
char *dbpath;
char localdbpath[PATH_MAX];
alpm_list_t *i;
if(argc == 1) {
dbpath = DBPATH;
} else if(argc == 3 && strcmp(argv[1], "-b") == 0) {
dbpath = argv[2];
} else {
fprintf(stderr, "usage: %s -b <pacman db>\n", BASENAME);
return(1);
}
snprintf(localdbpath, PATH_MAX, "%s/local", dbpath);
retval = db_test(localdbpath);
if(retval) {
return(retval);
}
if(alpm_initialize() == -1) {
fprintf(stderr, "cannot initialize alpm: %s\n", alpm_strerrorlast());
return(1);
}
alpm_option_set_logcb(output_cb);
alpm_option_set_dbpath(dbpath);
db = alpm_db_register_local();
if(db == NULL) {
fprintf(stderr, "error: could not register 'local' database (%s)\n",
alpm_strerrorlast());
cleanup(EXIT_FAILURE);
}
alpm_list_t *data;
data = alpm_checkdeps(db, PM_TRANS_TYPE_ADD, alpm_db_getpkgcache(db));
for(i = data; i; i = alpm_list_next(i)) {
pmdepmissing_t *miss = alpm_list_getdata(i);
pmdepend_t *dep = alpm_miss_get_dep(miss);
char *depstring = alpm_dep_get_string(dep);
printf("missing dependency for %s : %s\n", alpm_miss_get_target(miss),
depstring);
free(depstring);
}
for(i = alpm_db_getpkgcache(db); i; i = alpm_list_next(i)) {
pmpkg_t *pkg = alpm_list_getdata(i);
const char *pkgname = alpm_pkg_get_name(pkg);
alpm_list_t *rqdby = alpm_pkg_compute_requiredby(pkg);
diffrqdby(pkgname, alpm_pkg_get_requiredby(pkg), rqdby);
}
cleanup(retval);
}
|