/usr/include/dpkg/dpkg-db.h is in libdpkg-dev 1.17.5ubuntu5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 | /*
* libdpkg - Debian packaging suite library routines
* dpkg-db.h - declarations for in-core package database management
*
* Copyright © 1994,1995 Ian Jackson <ian@chiark.greenend.org.uk>
* Copyright © 2000,2001 Wichert Akkerman
* Copyright © 2006-2012 Guillem Jover <guillem@debian.org>
*
* 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 <https://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>
#include <dpkg/version.h>
#include <dpkg/arch.h>
DPKG_BEGIN_DECLS
/**
* @defgroup dpkg-db In-core package database management
* @ingroup dpkg-public
* @{
*/
enum deptype {
dep_suggests,
dep_recommends,
dep_depends,
dep_predepends,
dep_breaks,
dep_conflicts,
dep_provides,
dep_replaces,
dep_enhances
};
struct dependency {
struct pkginfo *up;
struct dependency *next;
struct deppossi *list;
enum deptype type;
};
struct deppossi {
struct dependency *up;
struct pkgset *ed;
struct deppossi *next, *rev_next, *rev_prev;
const struct dpkg_arch *arch;
struct dpkg_version version;
enum dpkg_relation verrel;
bool arch_is_implicit;
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;
};
/**
* Node describing a binary package file.
*
* This structure holds information contained on each binary package.
*/
struct pkgbin {
struct dependency *depends;
/** The ‘essential’ flag, true = yes, false = no (absent). */
bool essential;
enum pkgmultiarch {
multiarch_no,
multiarch_same,
multiarch_allowed,
multiarch_foreign,
} multiarch;
const struct dpkg_arch *arch;
/** The following is the "pkgname:archqual" cached string, if this was a
* C++ class this member would be mutable. */
const char *pkgname_archqual;
const char *description;
const char *maintainer;
const char *source;
const char *installedsize;
const char *origin;
const char *bugs;
struct dpkg_version version;
struct conffile *conffiles;
struct arbitraryfield *arbs;
};
/**
* Node indicates that parent's Triggers-Pending mentions name.
*
* Note: 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 {
struct trigpend *next;
const char *name;
};
/**
* Node indicates that aw's Triggers-Awaited mentions pend.
*/
struct trigaw {
struct pkginfo *aw, *pend;
struct trigaw *samepend_next;
struct {
struct trigaw *next, *prev;
} sameaw;
};
/* Note: dselect and dpkg have different versions of this. */
struct perpackagestate;
/**
* Node describing an architecture package instance.
*
* This structure holds state information.
*/
struct pkginfo {
struct pkgset *set;
struct pkginfo *arch_next;
enum pkgwant {
want_unknown, want_install, want_hold, want_deinstall, want_purge,
/** Not allowed except as special sentinel value in some places. */
want_sentinel,
} want;
/** The error flag bitmask. */
enum pkgeflag {
eflag_ok = 0,
eflag_reinstreq = 1,
} eflag;
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 dpkg_version configversion;
struct filedetails *files;
struct pkgbin installed;
struct pkgbin 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;
};
/**
* Node describing a package set sharing the same package name.
*/
struct pkgset {
struct pkgset *next;
const char *name;
struct pkginfo pkg;
struct {
struct deppossi *available;
struct deppossi *installed;
} depended;
int installed_instances;
};
/*** from dbdir.c ***/
const char *dpkg_db_set_dir(const char *dir);
const char *dpkg_db_get_dir(void);
char *dpkg_db_get_path(const char *pathpart);
#include <dpkg/atomic-file.h>
/*** 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 (starting at bit 8): */
msdbrw_available_readonly = DPKG_BIT(8),
msdbrw_available_write = DPKG_BIT(9),
msdbrw_available_mask = 0xff00,
};
void modstatdb_init(void);
void modstatdb_done(void);
bool modstatdb_is_locked(void);
bool modstatdb_can_lock(void);
void modstatdb_lock(void);
void modstatdb_unlock(void);
enum modstatdb_rw modstatdb_open(enum modstatdb_rw reqrwflags);
enum modstatdb_rw modstatdb_get_status(void);
void modstatdb_note(struct pkginfo *pkg);
void modstatdb_note_ifwrite(struct pkginfo *pkg);
void modstatdb_checkpoint(void);
void modstatdb_shutdown(void);
/*** from database.c ***/
void pkgset_blank(struct pkgset *set);
int pkgset_installed_instances(struct pkgset *set);
void pkg_blank(struct pkginfo *pp);
void pkgbin_blank(struct pkgbin *pkgbin);
bool pkg_is_informative(struct pkginfo *pkg, struct pkgbin *info);
struct pkgset *pkg_db_find_set(const char *name);
struct pkginfo *pkg_db_get_singleton(struct pkgset *set);
struct pkginfo *pkg_db_find_singleton(const char *name);
struct pkginfo *pkg_db_get_pkg(struct pkgset *set, const struct dpkg_arch *arch);
struct pkginfo *pkg_db_find_pkg(const char *name, const struct dpkg_arch *arch);
int pkg_db_count_set(void);
int pkg_db_count_pkg(void);
void pkg_db_reset(void);
struct pkgiterator *pkg_db_iter_new(void);
struct pkgset *pkg_db_iter_next_set(struct pkgiterator *iter);
struct pkginfo *pkg_db_iter_next_pkg(struct pkgiterator *iter);
void pkg_db_iter_free(struct pkgiterator *iter);
void pkg_db_report(FILE *);
/*** from parse.c ***/
enum parsedbflags {
/** Parse a single control stanza. */
pdb_single_stanza = DPKG_BIT(0),
/** Store in ‘available’ in-core structures, not ‘status’. */
pdb_recordavailable = DPKG_BIT(1),
/** Throw up an error if ‘Status’ encountered. */
pdb_rejectstatus = DPKG_BIT(2),
/** Ignore priority/section info if we already have any. */
pdb_weakclassification = DPKG_BIT(3),
/** Ignore files info if we already have them. */
pdb_ignorefiles = DPKG_BIT(4),
/** Ignore packages with older versions already read. */
pdb_ignoreolder = DPKG_BIT(5),
/** Perform laxer version parsing. */
pdb_lax_version_parser = DPKG_BIT(6),
/** Perform laxer parsing, used to transition to stricter parsing. */
pdb_lax_parser = pdb_lax_version_parser,
/* Standard operations. */
pdb_parse_status = pdb_lax_parser | pdb_weakclassification,
pdb_parse_update = pdb_parse_status | pdb_single_stanza,
pdb_parse_available = pdb_recordavailable | pdb_rejectstatus |
pdb_lax_parser,
pdb_parse_binary = pdb_recordavailable | pdb_rejectstatus |
pdb_single_stanza,
};
const char *pkg_name_is_illegal(const char *p);
int parsedb(const char *filename, enum parsedbflags, struct pkginfo **donep);
void copy_dependency_links(struct pkginfo *pkg,
struct dependency **updateme,
struct dependency *newdepends,
bool available);
/*** from parsehelp.c ***/
#include <dpkg/namevalue.h>
extern const struct namevalue booleaninfos[];
extern const struct namevalue multiarchinfos[];
extern const struct namevalue priorityinfos[];
extern const struct namevalue statusinfos[];
extern const struct namevalue eflaginfos[];
extern const struct namevalue wantinfos[];
#include <dpkg/error.h>
enum versiondisplayepochwhen { vdew_never, vdew_nonambig, vdew_always };
void varbufversion(struct varbuf *, const struct dpkg_version *,
enum versiondisplayepochwhen);
int parseversion(struct dpkg_version *version, const char *,
struct dpkg_error *err);
const char *versiondescribe(const struct dpkg_version *,
enum versiondisplayepochwhen);
enum pkg_name_arch_when {
/** Never display arch. */
pnaw_never,
/** Display arch only when it's non-ambiguous. */
pnaw_nonambig,
/** Display arch only when it's a foreign one. */
pnaw_foreign,
/** Always display arch. */
pnaw_always,
};
void varbuf_add_pkgbin_name(struct varbuf *vb, const struct pkginfo *pkg,
const struct pkgbin *pkgbin,
enum pkg_name_arch_when pnaw);
const char *pkgbin_name(struct pkginfo *pkg, struct pkgbin *pkgbin,
enum pkg_name_arch_when pnaw);
const char *pkg_name(struct pkginfo *pkg, enum pkg_name_arch_when pnaw);
/*** from dump.c ***/
void writerecord(FILE*, const char*,
const struct pkginfo *, const struct pkgbin *);
enum writedb_flags {
/** Dump ‘available’ in-core structures, not ‘status’. */
wdb_dump_available = DPKG_BIT(0),
/** Must sync the written file. */
wdb_must_sync = DPKG_BIT(1),
};
void writedb(const char *filename, enum writedb_flags flags);
/* Note: The varbufs must have been initialized and will not be
* NUL-terminated. */
void varbufrecord(struct varbuf *, const struct pkginfo *,
const struct pkgbin *);
void varbufdependency(struct varbuf *vb, struct dependency *dep);
/*** from depcon.c ***/
bool versionsatisfied(struct pkgbin *it, struct deppossi *against);
bool deparchsatisfied(struct pkgbin *it, const struct dpkg_arch *arch,
struct deppossi *against);
bool archsatisfied(struct pkgbin *it, struct deppossi *against);
/*** 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 */
|