| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- /*
- * libdpkg - Debian packaging suite library routines
- * parsehelp.c - helpful routines for parsing and writing
- *
- * Copyright (C) 1995 Ian Jackson <iwj10@cus.cam.ac.uk>
- *
- * 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,
- * 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 dpkg; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
- #include <stdio.h>
- #include <ctype.h>
- #include <string.h>
- #include <config.h>
- #include <dpkg.h>
- #include <dpkg-db.h>
- #include "parsedump.h"
- void parseerr
- (FILE *file, const char *filename, int lno, FILE *warnto, int *warncount,
- const struct pkginfo *pigp, int warnonly,
- const char *fmt, ...)
- {
- va_list al;
- char buf1[768], buf2[1000], *p, *q;
- if (file && ferror(file)) ohshite(_("failed to read `%s' at line %d"),filename,lno);
- sprintf(buf1, _("%s, in file `%.255s' near line %d"),
- warnonly ? _("warning") : _("parse error"), filename, lno);
- if (pigp && pigp->name) {
- sprintf(buf2, _(" package `%.255s'"), pigp->name);
- strcat(buf1,buf2);
- }
- for (p=buf1, q=buf2; *p; *q++= *p++) if (*p == '%') *q++= '%';
- strcpy(q,":\n "); strcat(q,fmt);
- va_start(al,fmt);
- if (!warnonly) ohshitv(buf2,al);
- if (warncount) (*warncount)++;
- if (warnto) {
- strcat(q,"\n");
- if (vfprintf(warnto,buf2,al) == EOF)
- ohshite(_("failed to write parsing warning"));
- }
- va_end(al);
- }
- const struct namevalue booleaninfos[]= { /* Note ! These must be in order ! */
- { "no", 0 },
- { "yes", 1 },
- { 0 }
- };
- const struct namevalue priorityinfos[]= { /* Note ! These must be in order ! */
- { "required", pri_required },
- { "important", pri_important },
- { "standard", pri_standard },
- { "recommended", pri_recommended }, /* fixme: obsolete */
- { "optional", pri_optional },
- { "extra", pri_extra },
- { "contrib", pri_contrib }, /* fixme: keep? */
- { "this is a bug - please report", pri_other },
- { "unknown", pri_unknown },
-
- { "base", pri_required }, /* fixme: alias, remove */
- { 0 }
- };
- const struct namevalue statusinfos[]= { /* Note ! These must be in order ! */
- { "not-installed", stat_notinstalled },
- { "unpacked", stat_unpacked },
- { "half-configured", stat_halfconfigured },
- { "installed", stat_installed },
- { "half-installed", stat_halfinstalled },
- { "config-files", stat_configfiles },
- /* These are additional entries for reading only, in any order ... */
- { "postinst-failed", stat_halfconfigured }, /* fixme: backwards compat., remove */
- { "removal-failed", stat_halfinstalled }, /* fixme: backwards compat., remove */
- { 0 }
- };
- const struct namevalue eflaginfos[]= { /* Note ! These must be in order ! */
- { "ok", eflagv_ok },
- { "reinstreq", eflagv_reinstreq },
- { "hold", eflagv_obsoletehold },
- { "hold-reinstreq", eflagv_obsoleteboth },
- { 0 }
- };
- const struct namevalue wantinfos[]= { /* Note ! These must be in order ! */
- { "unknown", want_unknown },
- { "install", want_install },
- { "hold", want_hold },
- { "deinstall", want_deinstall },
- { "purge", want_purge },
- { 0 }
- };
- const char *illegal_packagename(const char *p, const char **ep) {
- static const char alsoallowed[]= "-+._"; /* _ is deprecated */
- static char buf[150];
- int c;
-
- if (!*p) return _("may not be empty string");
- if (!isalnum(*p)) return _("must start with an alphanumeric");
- if (!*++p) return _("must be at least two characters");
- while ((c= *p++)!=0)
- if (!isalnum(c) && !strchr(alsoallowed,c)) break;
- if (!c) return 0;
- if (isspace(c) && ep) {
- while (isspace(*p)) p++;
- *ep= p; return 0;
- }
- snprintf(buf, sizeof(buf),
- _("character `%c' not allowed - only letters, digits and %s allowed"),
- c, alsoallowed);
- return buf;
- }
- const struct nickname nicknames[]= {
- /* NB: capitalisation of these strings is important. */
- { "Recommended", "Recommends" },
- { "Optional", "Suggests" },
- { "Class", "Priority" },
- { "Package-Revision", "Revision" },
- { "Package_Revision", "Revision" },
- { 0 }
- };
- int informativeversion(const struct versionrevision *version) {
- return (version->epoch ||
- (version->version && *version->version) ||
- (version->revision && *version->revision));
- }
- void varbufversion
- (struct varbuf *vb,
- const struct versionrevision *version,
- enum versiondisplayepochwhen vdew)
- {
- switch (vdew) {
- case vdew_never:
- break;
- case vdew_nonambig:
- if (!version->epoch &&
- (!version->version || !strchr(version->version,':')) &&
- (!version->revision || !strchr(version->revision,':'))) break;
- case vdew_always: /* FALL THROUGH */
- varbufprintf(vb,"%lu:",version->epoch);
- break;
- default:
- internerr("bad versiondisplayepochwhen in varbufversion");
- }
- if (version->version) varbufaddstr(vb,version->version);
- if (version->revision && *version->revision) {
- varbufaddc(vb,'-');
- varbufaddstr(vb,version->revision);
- }
- }
- const char *versiondescribe
- (const struct versionrevision *version,
- enum versiondisplayepochwhen vdew)
- {
- static struct varbuf bufs[10];
- static int bufnum=0;
- struct varbuf *vb;
-
- if (!informativeversion(version)) return _("<none>");
- vb= &bufs[bufnum]; bufnum++; if (bufnum == 10) bufnum= 0;
- varbufreset(vb);
- varbufversion(vb,version,vdew);
- varbufaddc(vb,0);
- return vb->buf;
- }
- const char *parseversion(struct versionrevision *rversion, const char *string) {
- char *hyphen, *colon, *eepochcolon;
- unsigned long epoch;
- if (!*string) return _("version string is empty");
-
- colon= strchr(string,':');
- if (colon) {
- epoch= strtoul(string,&eepochcolon,10);
- if (colon != eepochcolon) return _("epoch in version is not number");
- if (!*++colon) return _("nothing after colon in version number");
- string= colon;
- rversion->epoch= epoch;
- } else {
- rversion->epoch= 0;
- }
- rversion->version= nfstrsave(string);
- hyphen= strrchr(rversion->version,'-');
- if (hyphen) *hyphen++= 0;
- rversion->revision= hyphen ? hyphen : nfstrsave("");
-
- return 0;
- }
- void parsemustfield
- (FILE *file, const char *filename, int lno,
- FILE *warnto, int *warncount,
- const struct pkginfo *pigp, int warnonly,
- char **value, const char *what)
- {
- if (!*value) {
- parseerr(file,filename,lno, warnto,warncount,pigp,warnonly, _("missing %s"),what);
- *value= nfstrsave("");
- } else if (!**value) {
- parseerr(file,filename,lno, warnto,warncount,pigp,warnonly,
- _("empty value for %s"),what);
- }
- }
- const char *skip_slash_dotslash(const char *p) {
- while (p[0] == '/' || (p[0] == '.' && p[1] == '/')) p++;
- return p;
- }
|