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
|
/*
* 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;
}
|