2 * Copyright (c) 2007, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
11 #include <sys/types.h>
21 #include "repo_updateinfoxml.h"
22 #include "tools_util.h"
26 * <update from="rel-eng@fedoraproject.org" status="stable" type="security" version="1.4">
27 * <id>FEDORA-2007-4594</id>
28 * <title>imlib-1.9.15-6.fc8</title>
29 * <release>Fedora 8</release>
30 * <issued date="2007-12-28 16:42:30"/>
32 * <reference href="https://bugzilla.redhat.com/show_bug.cgi?id=426091" id="426091" title="CVE-2007-3568 imlib: infinite loop DoS using crafted BMP image" type="bugzilla"/>
34 * <description>This update includes a fix for a denial-of-service issue (CVE-2007-3568) whereby an attacker who could get an imlib-using user to view a specially-crafted BMP image could cause the user's CPU to go into an infinite loop.</description>
36 * <collection short="F8">
37 * <name>Fedora 8</name>
38 * <package arch="ppc64" name="imlib-debuginfo" release="6.fc8" src="http://download.fedoraproject.org/pub/fedora/linux/updates/8/ppc64/imlib-debuginfo-1.9.15-6.fc8.ppc64.rpm" version="1.9.15">
39 * <filename>imlib-debuginfo-1.9.15-6.fc8.ppc64.rpm</filename>
40 * <reboot_suggested>True</reboot_suggested>
50 STATE_UPDATES, /* 1 */
54 STATE_RELEASE, /* 5 */
56 STATE_MESSAGE, /* 7 */
57 STATE_REFERENCES, /* 8 */
58 STATE_REFERENCE, /* 9 */
59 STATE_DESCRIPTION, /* 10 */
60 STATE_PKGLIST, /* 11 */
61 STATE_COLLECTION, /* 12 */
63 STATE_PACKAGE, /* 14 */
64 STATE_FILENAME, /* 15 */
65 STATE_REBOOT, /* 16 */
66 STATE_RESTART, /* 17 */
67 STATE_RELOGIN, /* 18 */
79 /* !! must be sorted by first column !! */
80 static struct stateswitch stateswitches[] = {
81 { STATE_START, "updates", STATE_UPDATES, 0 },
82 { STATE_START, "update", STATE_UPDATE, 0 },
83 { STATE_UPDATES, "update", STATE_UPDATE, 0 },
84 { STATE_UPDATE, "id", STATE_ID, 1 },
85 { STATE_UPDATE, "title", STATE_TITLE, 1 },
86 { STATE_UPDATE, "release", STATE_RELEASE, 1 },
87 { STATE_UPDATE, "issued", STATE_ISSUED, 1 },
88 { STATE_UPDATE, "description", STATE_DESCRIPTION, 1 },
89 { STATE_UPDATE, "message", STATE_MESSAGE , 1 },
90 { STATE_UPDATE, "references", STATE_REFERENCES, 0 },
91 { STATE_UPDATE, "pkglist", STATE_PKGLIST, 0 },
92 { STATE_REFERENCES, "reference", STATE_REFERENCE, 0 },
93 { STATE_PKGLIST, "collection", STATE_COLLECTION, 0 },
94 { STATE_COLLECTION, "name", STATE_NAME, 1 },
95 { STATE_COLLECTION, "package", STATE_PACKAGE, 0 },
96 { STATE_PACKAGE, "filename", STATE_FILENAME, 1 },
97 { STATE_PACKAGE, "reboot_suggested",STATE_REBOOT, 1 },
98 { STATE_PACKAGE, "restart_suggested",STATE_RESTART, 1 },
99 { STATE_PACKAGE, "relogin_suggested",STATE_RELOGIN, 1 },
114 unsigned int datanum;
116 unsigned int timestamp;
119 struct stateswitch *swtab[NUMSTATES];
120 enum state sbtab[NUMSTATES];
127 * if we have seen a <filename>...
128 * inside of <package>...
131 * If not, we must insert an empty filename to UPDATE_COLLECTION_FILENAME
132 * at </package> in order to keep all UPDATE_COLLECTION_* arrays in sync
135 static int package_filename_seen = 0;
136 static int package_flags = 0; /* same for reboot/restart flags, to be written at </package> */
139 * create evr (as Id) from 'epoch', 'version' and 'release' attributes
143 makeevr_atts(Pool *pool, struct parsedata *pd, const char **atts)
145 const char *e, *v, *r, *v2;
150 for (; *atts; atts += 2)
152 if (!strcmp(*atts, "epoch"))
154 else if (!strcmp(*atts, "version"))
156 else if (!strcmp(*atts, "release"))
159 if (e && !strcmp(e, "0"))
163 for (v2 = v; *v2 >= '0' && *v2 <= '9'; v2++)
165 if (v2 > v && *v2 == ':')
175 if (l > pd->acontent)
177 pd->content = realloc(pd->content, l + 256);
178 pd->acontent = l + 256;
202 fprintf(stderr, "evr: %s\n", pd->content);
204 return str2id(pool, pd->content, 1);
210 startElement(void *userData, const char *name, const char **atts)
212 struct parsedata *pd = userData;
213 Pool *pool = pd->pool;
214 Solvable *solvable = pd->solvable;
215 struct stateswitch *sw;
216 /*const char *str; */
219 fprintf(stderr, "start: [%d]%s\n", pd->state, name);
221 if (pd->depth != pd->statedepth)
228 if (!pd->swtab[pd->state])
230 for (sw = pd->swtab[pd->state]; sw->from == pd->state; sw++) /* find name in statetable */
231 if (!strcmp(sw->ename, name))
234 if (sw->from != pd->state)
237 fprintf(stderr, "into unknown: %s (from: %d)\n", name, pd->state);
243 pd->docontent = sw->docontent;
244 pd->statedepth = pd->depth;
255 * <update from="rel-eng@fedoraproject.org"
257 * type="bugfix" (enhancement, security)
262 const char *from = 0, *status = 0, *type = 0, *version = 0;
263 for (; *atts; atts += 2)
265 if (!strcmp(*atts, "from"))
267 else if (!strcmp(*atts, "status"))
269 else if (!strcmp(*atts, "type"))
271 else if (!strcmp(*atts, "version"))
276 solvable = pd->solvable = pool_id2solvable(pool, repo_add_solvable(pd->repo));
277 pd->datanum = (pd->solvable - pool->solvables) - pd->repo->start;
278 repodata_extend(pd->data, pd->solvable - pool->solvables);
279 repodata_extend(pd->data, pd->solvable - pool->solvables);
280 pd->datanum = repodata_get_handle(pd->data, pd->datanum);
283 solvable->vendor = str2id(pool, from, 1);
284 solvable->evr = str2id(pool, version, 1);
285 solvable->arch = ARCH_NOARCH;
286 repodata_set_str(pd->data, pd->datanum, SOLVABLE_PATCHCATEGORY, type);
289 /* <id>FEDORA-2007-4594</id> */
292 /* <title>imlib-1.9.15-6.fc8</title> */
295 /* <release>Fedora 8</release> */
298 /* <issued date="2008-03-21 21:36:55"/>
302 const char *date = 0;
303 for (; *atts; atts += 2)
305 if (!strcmp(*atts, "date"))
308 repodata_set_str(pd->data, pd->datanum, SOLVABLE_BUILDTIME, date);
311 case STATE_REFERENCES:
313 /* <reference href="https://bugzilla.redhat.com/show_bug.cgi?id=330471"
315 * title="LDAP schema file missing for dhcpd"
318 case STATE_REFERENCE:
320 const char *href = 0, *id = 0, *title = 0, *type = 0;
321 for (; *atts; atts += 2)
323 if (!strcmp(*atts, "href"))
325 else if (!strcmp(*atts, "id"))
327 else if (!strcmp(*atts, "title"))
329 else if (!strcmp(*atts, "type"))
333 repodata_add_poolstr_array(pd->data, pd->datanum, UPDATE_REFERENCE_HREF, href);
334 repodata_add_poolstr_array(pd->data, pd->datanum, UPDATE_REFERENCE_ID, id);
335 repodata_add_poolstr_array(pd->data, pd->datanum, UPDATE_REFERENCE_TITLE, title);
336 repodata_add_poolstr_array(pd->data, pd->datanum, UPDATE_REFERENCE_TYPE, type);
340 /* <description>This update ...</description> */
341 case STATE_DESCRIPTION:
343 /* <message type="confirm">This update ...</message> */
348 /* <collection short="F8" */
349 case STATE_COLLECTION:
351 /* <name>Fedora 8</name> */
354 /* <package arch="ppc64" name="imlib-debuginfo" release="6.fc8"
355 * src="http://download.fedoraproject.org/pub/fedora/linux/updates/8/ppc64/imlib-debuginfo-1.9.15-6.fc8.ppc64.rpm"
359 * -> patch.conflicts: {name} < {version}.{release}
363 const char *arch = 0, *name = 0, *src = 0;
364 Id evr = makeevr_atts(pool, pd, atts); /* parse "epoch", "version", "release" */
369 /* reset package_* markers, to be evaluated at </package> */
370 package_filename_seen = 0;
374 for (; *atts; atts += 2)
376 if (!strcmp(*atts, "arch"))
378 else if (!strcmp(*atts, "name"))
380 else if (!strcmp(*atts, "src"))
383 /* generated Ids for name and arch */
384 n = str2id(pool, name, 1);
386 a = str2id(pool, arch, 1);
389 /* now combine both to a single Id */
390 na = rel2id(pool, n, a, REL_ARCH, 1);
393 rel_id = rel2id(pool, na, evr, REL_LT, 1);
395 solvable->conflicts = repo_addid_dep(pd->repo, solvable->conflicts, rel_id, 0);
397 repodata_add_idarray(pd->data, pd->datanum, UPDATE_COLLECTION_NAME, n);
398 repodata_add_idarray(pd->data, pd->datanum, UPDATE_COLLECTION_EVR, evr);
399 repodata_add_idarray(pd->data, pd->datanum, UPDATE_COLLECTION_ARCH, a);
401 /* _FILENAME and _FLAGS are written at </package> */
403 const char *evrstr = id2str(pool, evr);
404 int buflen = strlen(name) + 1 + strlen(evrstr) + 1 + strlen(arch?arch:"") + 1;
406 if (!arch) arch = "";
407 buf = (char *)malloc(buflen);
409 sprintf(buf, "%s %s %s", name, evrstr, arch);
410 repodata_add_poolstr_array(pd->data, pd->datanum, UPDATE_COLLECTION, buf);
416 /* <filename>libntlm-0.4.2-1.fc8.x86_64.rpm</filename> */
417 /* <filename>libntlm-0.4.2-1.fc8.x86_64.rpm</filename> */
420 /* <reboot_suggested>True</reboot_suggested> */
423 /* <restart_suggested>True</restart_suggested> */
426 /* <relogin_suggested>True</relogin_suggested> */
430 split(NULL, NULL, 0); /* just to keep gcc happy about tools_util.h: static ... split() {...} Urgs!*/
440 endElement(void *userData, const char *name)
442 struct parsedata *pd = userData;
443 Pool *pool = pd->pool;
444 Solvable *s = pd->solvable;
445 Repo *repo = pd->repo;
448 fprintf(stderr, "end: %s\n", name);
450 if (pd->depth != pd->statedepth)
454 fprintf(stderr, "back from unknown %d %d %d\n", pd->state, pd->depth, pd->statedepth);
468 s->provides = repo_addid_dep(repo, s->provides, rel2id(pool, s->name, s->evr, REL_EQ, 1), 0);
473 s->name = str2id(pool, join2("patch", ":", pd->content), 1);
477 /* <title>imlib-1.9.15-6.fc8</title> */
480 while (pd->lcontent > 0
481 && *(pd->content + pd->lcontent - 1) == '\n')
484 *(pd->content + pd->lcontent) = 0;
486 repodata_set_str(pd->data, pd->datanum, SOLVABLE_SUMMARY, pd->content);
490 * <release>Fedora 8</release>
496 case STATE_REFERENCES:
498 case STATE_REFERENCE:
501 * <description>This update ...</description>
503 case STATE_DESCRIPTION:
505 repodata_set_str(pd->data, pd->datanum, SOLVABLE_DESCRIPTION, pd->content);
510 * <message>Warning! ...</message>
514 repodata_set_str(pd->data, pd->datanum, UPDATE_MESSAGE, pd->content);
519 case STATE_COLLECTION:
526 /* write _FILENAME and _FLAGS at </package>
527 * to ensure all UPDATE_COLLECTION_* arrays are filled in parallel
529 if (!package_filename_seen)
531 repodata_add_poolstr_array(pd->data, pd->datanum, UPDATE_COLLECTION_FILENAME, "");
533 repodata_add_idarray(pd->data, pd->datanum, UPDATE_COLLECTION_FLAGS, package_flags+1);
537 /* <filename>libntlm-0.4.2-1.fc8.x86_64.rpm</filename> */
538 /* <filename>libntlm-0.4.2-1.fc8.x86_64.rpm</filename> */
542 repodata_add_poolstr_array(pd->data, pd->datanum, UPDATE_COLLECTION_FILENAME, pd->content);
543 package_filename_seen = 1;
547 /* <reboot_suggested>True</reboot_suggested> */
551 && (pd->content[0] == 'T'
552 || pd->content[0] == 't'|| pd->content[0] == '1'))
554 /* FIXME: this is per-package, the global flag should be computed at runtime */
555 repodata_set_void(pd->data, pd->datanum, UPDATE_REBOOT);
560 /* <restart_suggested>True</restart_suggested> */
564 && (pd->content[0] == 'T'
565 || pd->content[0] == 't' || pd->content[0] == '1'))
567 /* FIXME: this is per-package, the global flag should be computed at runtime */
568 repodata_set_void(pd->data, pd->datanum, UPDATE_RESTART);
573 /* <relogin_suggested>True</relogin_suggested> */
577 && (pd->content[0] == 'T'
578 || pd->content[0] == 't' || pd->content[0] == '1'))
580 /* FIXME: this is per-package, the global flag should be computed at runtime */
581 repodata_set_void(pd->data, pd->datanum, UPDATE_RELOGIN);
590 pd->state = pd->sbtab[pd->state];
599 characterData(void *userData, const XML_Char *s, int len)
601 struct parsedata *pd = userData;
604 if (!pd->docontent) {
606 char *dup = strndup( s, len );
607 fprintf(stderr, "Content: [%d]'%s'\n", pd->state, dup );
612 l = pd->lcontent + len + 1;
613 if (l > pd->acontent)
615 pd->content = realloc(pd->content, l + 256);
616 pd->acontent = l + 256;
618 c = pd->content + pd->lcontent;
626 #define BUFF_SIZE 8192
629 repo_add_updateinfoxml(Repo *repo, FILE *fp, int flags)
631 Pool *pool = repo->pool;
635 struct stateswitch *sw;
637 memset(&pd, 0, sizeof(pd));
638 for (i = 0, sw = stateswitches; sw->from != NUMSTATES; i++, sw++)
640 if (!pd.swtab[sw->from])
641 pd.swtab[sw->from] = sw;
642 pd.sbtab[sw->to] = sw->from;
646 pd.data = repo_add_repodata(pd.repo, 0);
648 pd.content = malloc(256);
651 pd.tempstr = malloc(256);
654 XML_Parser parser = XML_ParserCreate(NULL);
655 XML_SetUserData(parser, &pd);
656 XML_SetElementHandler(parser, startElement, endElement);
657 XML_SetCharacterDataHandler(parser, characterData);
660 l = fread(buf, 1, sizeof(buf), fp);
661 if (XML_Parse(parser, buf, l, l == 0) == XML_STATUS_ERROR)
663 fprintf(stderr, "repo_updateinfoxml: %s at line %u:%u\n", XML_ErrorString(XML_GetErrorCode(parser)), (unsigned int)XML_GetCurrentLineNumber(parser), (unsigned int)XML_GetCurrentColumnNumber(parser));
669 XML_ParserFree(parser);
672 repodata_internalize(pd.data);