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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
|
#include <dirent.h>
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <alpm.h>
#include <alpm_list.h>
#include "pacman.h"
#include "conf.h"
#include "util.h"
static int change_install_reason(alpm_list_t *targets)
{
alpm_list_t *i;
alpm_db_t *db_local;
int ret = 0;
alpm_pkgreason_t reason;
if(targets == NULL) {
pm_printf(ALPM_LOG_ERROR, _("no targets specified (use -h for help)\n"));
return 1;
}
if(config->flags & ALPM_TRANS_FLAG_ALLDEPS) {
reason = ALPM_PKG_REASON_DEPEND;
} else if(config->flags & ALPM_TRANS_FLAG_ALLEXPLICIT) {
reason = ALPM_PKG_REASON_EXPLICIT;
} else {
pm_printf(ALPM_LOG_ERROR, _("no install reason specified (use -h for help)\n"));
return 1;
}
if(trans_init(0, 0) == -1) {
return 1;
}
db_local = alpm_get_localdb(config->handle);
for(i = targets; i; i = alpm_list_next(i)) {
char *pkgname = i->data;
alpm_pkg_t *pkg = alpm_db_get_pkg(db_local, pkgname);
if(!pkg || alpm_pkg_set_reason(pkg, reason)) {
pm_printf(ALPM_LOG_ERROR, _("could not set install reason for package %s (%s)\n"),
pkgname, alpm_strerror(alpm_errno(config->handle)));
ret = 1;
} else {
if(reason == ALPM_PKG_REASON_DEPEND) {
printf(_("%s: install reason has been set to 'installed as dependency'\n"), pkgname);
} else {
printf(_("%s: install reason has been set to 'explicitly installed'\n"), pkgname);
}
}
}
if(trans_release() == -1) {
return 1;
}
return ret;
}
static int check_db_missing_deps(alpm_list_t *pkglist)
{
alpm_list_t *data, *i;
int ret = 0;
data = alpm_checkdeps(config->handle, NULL, NULL, pkglist, 0);
for(i = data; i; i = alpm_list_next(i)) {
alpm_depmissing_t *miss = i->data;
char *depstring = alpm_dep_compute_string(miss->depend);
pm_printf(ALPM_LOG_ERROR, "missing '%s' dependency for '%s'\n",
depstring, miss->target);
free(depstring);
ret++;
}
FREELIST(data);
return ret;
}
static int check_db_local_files(void)
{
struct dirent *ent;
const char *dbpath;
char path[PATH_MAX];
int ret = 0;
DIR *dbdir;
dbpath = alpm_option_get_dbpath(config->handle);
snprintf(path, PATH_MAX, "%slocal", dbpath);
if(!(dbdir = opendir(path))) {
pm_printf(ALPM_LOG_ERROR, "could not open local database directory %s: %s\n",
path, strerror(errno));
return 1;
}
while((ent = readdir(dbdir)) != NULL) {
if(strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0
|| strcmp(ent->d_name, "ALPM_DB_VERSION") == 0) {
continue;
}
snprintf(path, PATH_MAX, "%slocal/%s/desc", dbpath, ent->d_name);
if(access(path, F_OK)) {
pm_printf(ALPM_LOG_ERROR, "'%s': description file is missing\n", ent->d_name);
ret++;
}
snprintf(path, PATH_MAX, "%slocal/%s/files", dbpath, ent->d_name);
if(access(path, F_OK)) {
pm_printf(ALPM_LOG_ERROR, "'%s': file list is missing\n", ent->d_name);
ret++;
}
}
closedir(dbdir);
return ret;
}
static int check_db_local_package_conflicts(alpm_list_t *pkglist)
{
alpm_list_t *data, *i;
int ret = 0;
data = alpm_checkconflicts(config->handle, pkglist);
for(i = data; i; i = i->next) {
alpm_conflict_t *conflict = i->data;
pm_printf(ALPM_LOG_ERROR, "'%s' conflicts with '%s'\n",
conflict->package1, conflict->package2);
ret++;
}
FREELIST(data);
return ret;
}
struct fileitem {
alpm_file_t *file;
alpm_pkg_t *pkg;
};
static int fileitem_cmp(const void *p1, const void *p2)
{
const struct fileitem * fi1 = p1;
const struct fileitem * fi2 = p2;
return strcmp(fi1->file->name, fi2->file->name);
}
static int check_db_local_filelist_conflicts(alpm_list_t *pkglist)
{
alpm_list_t *i;
int ret = 0;
size_t list_size = 4096;
size_t offset = 0, j;
struct fileitem *all_files;
struct fileitem *prev_fileitem = NULL;
all_files = malloc(list_size * sizeof(struct fileitem));
for(i = pkglist; i; i = i->next) {
alpm_pkg_t *pkg = i->data;
alpm_filelist_t *filelist = alpm_pkg_get_files(pkg);
for(j = 0; j < filelist->count; j++) {
alpm_file_t *file = filelist->files + j;
if(file->name[strlen(file->name) - 1] == '/') {
continue;
}
if(offset >= list_size) {
struct fileitem *new_files;
new_files = realloc(all_files, list_size * 2 * sizeof(struct fileitem));
if(!new_files) {
free(all_files);
return 1;
}
all_files = new_files;
list_size *= 2;
}
all_files[offset].file = file;
all_files[offset].pkg = pkg;
offset++;
}
}
qsort(all_files, offset, sizeof(struct fileitem), fileitem_cmp);
for(j = 0; j < offset; j++) {
struct fileitem *fileitem = all_files + j;
if(prev_fileitem && fileitem_cmp(prev_fileitem, fileitem) == 0) {
pm_printf(ALPM_LOG_ERROR, "file owned by '%s' and '%s': '%s'\n",
alpm_pkg_get_name(prev_fileitem->pkg),
alpm_pkg_get_name(fileitem->pkg),
fileitem->file->name);
}
prev_fileitem = fileitem;
}
free(all_files);
return ret;
}
static int check_db_local(void) {
int ret = 0;
alpm_db_t *db = NULL;
alpm_list_t *pkglist;
ret = check_db_local_files();
if(ret) {
return ret;
}
db = alpm_get_localdb(config->handle);
pkglist = alpm_db_get_pkgcache(db);
ret += check_db_missing_deps(pkglist);
ret += check_db_local_package_conflicts(pkglist);
ret += check_db_local_filelist_conflicts(pkglist);
return ret;
}
static int check_db_sync(void) {
int ret = 0;
alpm_list_t *i, *dblist, *pkglist, *syncpkglist = NULL;
dblist = alpm_get_syncdbs(config->handle);
for(i = dblist; i; i = alpm_list_next(i)) {
pkglist = alpm_db_get_pkgcache(i->data);
syncpkglist = alpm_list_join(syncpkglist, alpm_list_copy(pkglist));
}
ret = check_db_missing_deps(syncpkglist);
alpm_list_free(syncpkglist);
return ret;
}
int pacman_database(alpm_list_t *targets)
{
int ret = 0;
if(config->op_q_check) {
if(config->op_q_check == 1) {
ret = check_db_local();
} else {
ret = check_db_sync();
}
}
if(config->flags & (ALPM_TRANS_FLAG_ALLDEPS | ALPM_TRANS_FLAG_ALLEXPLICIT)) {
ret = change_install_reason(targets);
}
return ret;
}
|