-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdpkg-db.h
303 lines (258 loc) · 8.66 KB
/
dpkg-db.h
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
299
300
301
302
303
/*
* libdpkg - Debian packaging suite library routines
* dpkg-db.h - declarations for in-core package database management
*
* Copyright © 1994,1995 Ian Jackson <[email protected]>
* Copyright © 2000,2001 Wichert Akkerman
*
* This 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 of the License, or
* (at your option) any later version.
*
* This 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBDPKG_DPKG_DB_H
#define LIBDPKG_DPKG_DB_H
#include <sys/types.h>
#include <stdbool.h>
#include <stdio.h>
#include <dpkg/macros.h>
#include <dpkg/varbuf.h>
DPKG_BEGIN_DECLS
struct versionrevision {
unsigned long epoch;
const char *version;
const char *revision;
};
enum deptype {
dep_suggests,
dep_recommends,
dep_depends,
dep_predepends,
dep_breaks,
dep_conflicts,
dep_provides,
dep_replaces,
dep_enhances
};
enum depverrel {
dvrf_earlier= 0001,
dvrf_later= 0002,
dvrf_strict= 0010,
dvrf_orequal= 0020,
dvrf_builtup= 0100,
dvr_none= 0200,
dvr_earlierequal= dvrf_builtup | dvrf_earlier | dvrf_orequal,
dvr_earlierstrict= dvrf_builtup | dvrf_earlier | dvrf_strict,
dvr_laterequal= dvrf_builtup | dvrf_later | dvrf_orequal,
dvr_laterstrict= dvrf_builtup | dvrf_later | dvrf_strict,
dvr_exact= 0400
};
struct dependency {
struct pkginfo *up;
struct dependency *next;
struct deppossi *list;
enum deptype type;
};
struct deppossi {
struct dependency *up;
struct pkginfo *ed;
struct deppossi *next, *rev_next, *rev_prev;
struct versionrevision version;
enum depverrel verrel;
bool cyclebreak;
};
struct arbitraryfield {
struct arbitraryfield *next;
const char *name;
const char *value;
};
struct conffile {
struct conffile *next;
const char *name;
const char *hash;
bool obsolete;
};
struct filedetails {
struct filedetails *next;
const char *name;
const char *msdosname;
const char *size;
const char *md5sum;
};
struct pkginfoperfile { /* pif */
struct dependency *depends;
struct deppossi *depended;
bool essential; /* The ‘essential’ flag, true = yes, false = no (absent). */
const char *description;
const char *maintainer;
const char *source;
const char *architecture;
const char *installedsize;
const char *origin;
const char *bugs;
struct versionrevision version;
struct conffile *conffiles;
struct arbitraryfield *arbs;
};
struct trigpend {
/* Node indicates that parent's Triggers-Pending mentions name. */
/* NB that these nodes do double duty: after they're removed from
* a package's trigpend list, references may be preserved by the
* trigger cycle checker (see trigproc.c).
*/
struct trigpend *next;
const char *name;
};
struct trigaw {
/* Node indicates that aw's Triggers-Awaited mentions pend. */
struct pkginfo *aw, *pend;
struct trigaw *samepend_next;
struct {
struct trigaw *next, *prev;
} sameaw;
};
struct perpackagestate; /* dselect and dpkg have different versions of this */
struct pkginfo { /* pig */
struct pkginfo *next;
const char *name;
enum pkgwant {
want_unknown, want_install, want_hold, want_deinstall, want_purge,
want_sentinel /* Not allowed except as special sentinel value
in some places */
} want;
enum pkgeflag {
eflag_ok = 0,
eflag_reinstreq = 1,
} eflag; /* Bitmask. */
enum pkgstatus {
stat_notinstalled,
stat_configfiles,
stat_halfinstalled,
stat_unpacked,
stat_halfconfigured,
stat_triggersawaited,
stat_triggerspending,
stat_installed
} status;
enum pkgpriority {
pri_required,
pri_important,
pri_standard,
pri_optional,
pri_extra,
pri_other, pri_unknown, pri_unset=-1
} priority;
const char *otherpriority;
const char *section;
struct versionrevision configversion;
struct filedetails *files;
struct pkginfoperfile installed;
struct pkginfoperfile available;
struct perpackagestate *clientdata;
struct {
/* ->aw == this */
struct trigaw *head, *tail;
} trigaw;
/* ->pend == this, non-NULL for us when Triggers-Pending. */
struct trigaw *othertrigaw_head;
struct trigpend *trigpend_head;
};
/*** from dbmodify.c ***/
enum modstatdb_rw {
/* Those marked with \*s*\ are possible returns from modstatdb_init. */
msdbrw_readonly/*s*/, msdbrw_needsuperuserlockonly/*s*/,
msdbrw_writeifposs,
msdbrw_write/*s*/, msdbrw_needsuperuser,
/* Now some optional flags: */
msdbrw_flagsmask= ~077,
/* flags start at 0100 */
msdbrw_noavail= 0100,
};
bool modstatdb_is_locked(const char *admindir);
void modstatdb_lock(const char *admindir);
void modstatdb_unlock(void);
enum modstatdb_rw modstatdb_init(const char *admindir, enum modstatdb_rw reqrwflags);
void modstatdb_note(struct pkginfo *pkg);
void modstatdb_note_ifwrite(struct pkginfo *pkg);
void modstatdb_checkpoint(void);
void modstatdb_shutdown(void);
const char *pkgadmindir(void);
const char *pkgadminfile(struct pkginfo *pkg, const char *whichfile);
/*** from database.c ***/
struct pkginfo *findpackage(const char *name);
void blankpackage(struct pkginfo *pp);
void blankpackageperfile(struct pkginfoperfile *pifp);
void blankversion(struct versionrevision*);
bool informative(struct pkginfo *pkg, struct pkginfoperfile *info);
int countpackages(void);
void resetpackages(void);
struct pkgiterator *iterpkgstart(void);
struct pkginfo *iterpkgnext(struct pkgiterator*);
void iterpkgend(struct pkgiterator*);
void hashreport(FILE*);
/*** from parse.c ***/
enum parsedbflags {
pdb_recordavailable =001, /* Store in `available' in-core structures, not `status' */
pdb_rejectstatus =002, /* Throw up an error if `Status' encountered */
pdb_weakclassification=004, /* Ignore priority/section info if we already have any */
pdb_ignorefiles =010, /* Ignore files info if we already have them */
/* Ignore packages with older versions already read. */
pdb_ignoreolder =020,
/* Perform laxer parsing, used to transition to stricter parsing. */
pdb_lax_parser =040,
};
const char *illegal_packagename(const char *p, const char **ep);
int parsedb(const char *filename, enum parsedbflags, struct pkginfo **donep,
FILE *warnto, int *warncount);
void copy_dependency_links(struct pkginfo *pkg,
struct dependency **updateme,
struct dependency *newdepends,
bool available);
/*** from parsehelp.c ***/
struct namevalue {
const char *name;
int value, length;
};
extern const struct namevalue booleaninfos[];
extern const struct namevalue priorityinfos[];
extern const struct namevalue statusinfos[];
extern const struct namevalue eflaginfos[];
extern const struct namevalue wantinfos[];
bool informativeversion(const struct versionrevision *version);
enum versiondisplayepochwhen { vdew_never, vdew_nonambig, vdew_always };
void varbufversion(struct varbuf*, const struct versionrevision*,
enum versiondisplayepochwhen);
const char *parseversion(struct versionrevision *rversion, const char*);
const char *versiondescribe(const struct versionrevision*,
enum versiondisplayepochwhen);
/*** from dump.c ***/
void writerecord(FILE*, const char*,
const struct pkginfo*, const struct pkginfoperfile*);
void writedb(const char *filename, bool available, bool mustsync);
void varbufrecord(struct varbuf*, const struct pkginfo*, const struct pkginfoperfile*);
void varbufdependency(struct varbuf *vb, struct dependency *dep);
/* NB THE VARBUF MUST HAVE BEEN INITIALISED AND WILL NOT BE NULL-TERMINATED */
/*** from vercmp.c ***/
bool versionsatisfied(struct pkginfoperfile *it, struct deppossi *against);
bool versionsatisfied3(const struct versionrevision *it,
const struct versionrevision *ref,
enum depverrel verrel);
int versioncompare(const struct versionrevision *version,
const struct versionrevision *refversion);
bool epochsdiffer(const struct versionrevision *a,
const struct versionrevision *b);
/*** from nfmalloc.c ***/
void *nfmalloc(size_t);
char *nfstrsave(const char*);
char *nfstrnsave(const char*, size_t);
void nffreeall(void);
DPKG_END_DECLS
#endif /* LIBDPKG_DPKG_DB_H */