Imported Upstream version 0.6.29
[platform/upstream/libsolv.git] / ext / repo_susetags.c
1 /*
2  * Copyright (c) 2007, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 #include <sys/types.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12
13 #include "pool.h"
14 #include "repo.h"
15 #include "hash.h"
16 #include "chksum.h"
17 #include "tools_util.h"
18 #include "repo_susetags.h"
19 #ifdef ENABLE_COMPLEX_DEPS
20 #include "pool_parserpmrichdep.h"
21 #endif
22 #include "repodata_diskusage.h"
23
24 struct datashare {
25   Id name;
26   Id evr;
27   Id arch;
28 };
29
30 struct parsedata {
31   int ret;
32   Pool *pool;
33   Repo *repo;
34   Repodata *data;
35   char *kind;
36   int flags;
37   int last_found_source;
38   struct datashare *share_with;
39   int nshare;
40   Queue diskusageq;
41   struct joindata jd;
42   char *language;                       /* the default language */
43   Id langcache[ID_NUM_INTERNAL];        /* cache for the default language */
44   int lineno;
45   char *filelist;
46   int afilelist;                        /* allocated */
47   int nfilelist;                        /* used */
48 };
49
50 static char *flagtab[] = {
51   ">",
52   "=",
53   ">=",
54   "<",
55   "!=",
56   "<="
57 };
58
59
60 static Id
61 langtag(struct parsedata *pd, Id tag, const char *language)
62 {
63   if (language && *language)
64     return pool_id2langid(pd->repo->pool, tag, language, 1);
65   if (!pd->language)
66     return tag;
67   if (tag >= ID_NUM_INTERNAL)
68     return pool_id2langid(pd->repo->pool, tag, pd->language, 1);
69   if (!pd->langcache[tag])
70     pd->langcache[tag] = pool_id2langid(pd->repo->pool, tag, pd->language, 1);
71   return pd->langcache[tag];
72 }
73
74 /*
75  * adddep
76  * create and add dependency
77  */
78
79 static unsigned int
80 adddep(Pool *pool, struct parsedata *pd, unsigned int olddeps, char *line, Id marker, char *kind)
81 {
82   int i, flags;
83   Id id, evrid;
84   char *sp[4];
85
86   if (line[6] == '/')
87     {
88       /* A file dependency. Do not try to parse it */
89       id = pool_str2id(pool, line + 6, 1);
90     }
91 #ifdef ENABLE_COMPLEX_DEPS
92   else if (line[6] == '(')
93     {
94       id = pool_parserpmrichdep(pool, line + 6);
95       if (!id)
96         {
97           pd->ret = pool_error(pool, -1, "susetags: line %d: bad dependency: '%s'\n", pd->lineno, line);
98           return olddeps;
99         }
100     }
101 #endif
102   else
103     {
104       i = split(line + 6, sp, 4); /* name, <op>, evr, ? */
105       if (i != 1 && i != 3) /* expect either 'name' or 'name' <op> 'evr' */
106         {
107           pd->ret = pool_error(pool, -1, "susetags: line %d: bad dependency: '%s'\n", pd->lineno, line);
108           return olddeps;
109         }
110       if (kind)
111         id = pool_str2id(pool, join2(&pd->jd, kind, ":", sp[0]), 1);
112       else
113         id = pool_str2id(pool, sp[0], 1);
114       if (i == 3)
115         {
116           evrid = makeevr(pool, sp[2]);
117           for (flags = 0; flags < 6; flags++)
118             if (!strcmp(sp[1], flagtab[flags]))
119               break;
120           if (flags == 6)
121             {
122               if (!strcmp(sp[1], "<>"))
123                 flags = 4;
124               else
125                 {
126                   pd->ret = pool_error(pool, -1, "susetags: line %d: unknown relation: '%s'\n", pd->lineno, sp[1]);
127                   return olddeps;
128                 }
129             }
130           id = pool_rel2id(pool, id, evrid, flags + 1, 1);
131         }
132     }
133   return repo_addid_dep(pd->repo, olddeps, id, marker);
134 }
135
136
137 /*
138  * add_source
139  *
140  */
141
142 static void
143 add_source(struct parsedata *pd, char *line, Solvable *s, Id handle)
144 {
145   Pool *pool = s->repo->pool;
146   char *sp[5];
147   Id name;
148   Id arch;
149   const char *evr, *sevr;
150
151   if (split(line, sp, 5) != 4)
152     {
153       pd->ret = pool_error(pool, -1, "susetags: line %d: bad source line '%s'\n", pd->lineno, line);
154       return;
155     }
156
157   name = pool_str2id(pool, sp[0], 1);
158   arch = pool_str2id(pool, sp[3], 1);   /* do this before id2str */
159   evr = join2(&pd->jd, sp[1], "-", sp[2]);
160   sevr = pool_id2str(pool, s->evr);
161   if (sevr)
162     {
163       /* strip epoch */
164       const char *p;
165       for (p = sevr; *p >= '0' && *p <= '9'; p++)
166         ;
167       if (p != sevr && *p == ':' && p[1])
168         sevr = p;
169     }
170   if (name == s->name)
171     repodata_set_void(pd->data, handle, SOLVABLE_SOURCENAME);
172   else
173     repodata_set_id(pd->data, handle, SOLVABLE_SOURCENAME, name);
174   if (sevr && !strcmp(sevr, evr))
175     repodata_set_void(pd->data, handle, SOLVABLE_SOURCEEVR);
176   else
177     repodata_set_id(pd->data, handle, SOLVABLE_SOURCEEVR, pool_str2id(pool, evr, 1));
178   repodata_set_constantid(pd->data, handle, SOLVABLE_SOURCEARCH, arch);
179 }
180
181 static void
182 set_checksum(struct parsedata *pd, Repodata *data, Id handle, Id keyname, char *line)
183 {
184   char *sp[3];
185   Id type;
186   if (split(line, sp, 3) != 2)
187     {
188       pd->ret = pool_error(pd->pool, -1, "susetags: line %d: bad checksum line '%s'\n", pd->lineno, line);
189       return;
190     }
191   type = solv_chksum_str2type(sp[0]);
192   if (!type)
193     {
194       pd->ret = pool_error(pd->pool, -1, "susetags: line %d: unknown checksum type: '%s'\n", pd->lineno, sp[0]);
195       return;
196     }
197   if (strlen(sp[1]) != 2 * solv_chksum_len(type))
198     {
199       pd->ret = pool_error(pd->pool, -1, "susetags: line %d: bad checksum length for type %s: '%s'\n", pd->lineno, sp[0], sp[1]);
200       return;
201     }
202   repodata_set_checksum(data, handle, keyname, type, sp[1]);
203 }
204
205
206 /* Unfortunately "a"[0] is no constant expression in the C languages,
207    so we need to pass the four characters individually :-/  */
208 #define CTAG(a,b,c,d) ((unsigned)(((unsigned char)a) << 24) \
209  | ((unsigned char)b << 16) \
210  | ((unsigned char)c << 8) \
211  | ((unsigned char)d))
212
213 /*
214  * tag_from_string
215  *
216  */
217
218 static inline unsigned int
219 tag_from_string(char *cs)
220 {
221   unsigned char *s = (unsigned char *)cs;
222   return ((s[0] << 24) | (s[1] << 16) | (s[2] << 8) | s[3]);
223 }
224
225
226 /*
227  * repo_add_susetags
228  * Parse susetags file passed in fp, fill solvables into repo
229  *
230  * susetags is key,value based
231  *  for short values
232  *    =key: value
233  *  is used
234  *  for long (multi-line) values,
235  *    +key:
236  *    value
237  *    value
238  *    -key:
239  *  is used
240  *
241  * See http://en.opensuse.org/Standards/YaST2_Repository_Metadata
242  * and http://en.opensuse.org/Standards/YaST2_Repository_Metadata/packages
243  * and http://en.opensuse.org/Standards/YaST2_Repository_Metadata/pattern
244  *
245  * Assumptions:
246  *   All keys have 3 characters and end in ':'
247  */
248
249 static void
250 finish_solvable(struct parsedata *pd, Solvable *s, Offset freshens)
251 {
252   Pool *pool = pd->repo->pool;
253   Id handle = s - pool->solvables;
254
255   if (pd->nfilelist)
256     {
257       int l;
258       Id did;
259       for (l = 0; l < pd->nfilelist; l += strlen(pd->filelist + l) + 1)
260         {
261           char *p = strrchr(pd->filelist + l, '/');
262           if (!p)
263             continue;
264           *p++ = 0;
265           did = repodata_str2dir(pd->data, pd->filelist + l, 1);
266           p[-1] = '/';
267           if (!did)
268             did = repodata_str2dir(pd->data, "/", 1);
269           repodata_add_dirstr(pd->data, handle, SOLVABLE_FILELIST, did, p);
270         }
271       pd->nfilelist = 0;
272     }
273   /* Add self provide, except for source packages.  This is harmless
274      to do twice (in case we see the same package twice).  */
275   if (s->name && s->arch != ARCH_SRC && s->arch != ARCH_NOSRC)
276     s->provides = repo_addid_dep(pd->repo, s->provides, pool_rel2id(pool, s->name, s->evr, REL_EQ, 1), 0);
277   repo_rewrite_suse_deps(s, freshens);
278   if (pd->diskusageq.count)
279     repodata_add_diskusage(pd->data, handle, &pd->diskusageq);
280 }
281
282 static Hashtable
283 joinhash_init(Repo *repo, Hashval *hmp)
284 {
285   Hashval hm = mkmask(repo->nsolvables);
286   Hashtable ht = solv_calloc(hm + 1, sizeof(*ht));
287   Hashval h, hh;
288   Solvable *s;
289   int i;
290
291   FOR_REPO_SOLVABLES(repo, i, s)
292     {
293       hh = HASHCHAIN_START;
294       h = s->name & hm;
295       while (ht[h])
296         h = HASHCHAIN_NEXT(h, hh, hm);
297       ht[h] = i;
298     }
299   *hmp = hm;
300   return ht;
301 }
302
303 static Solvable *
304 joinhash_lookup(Repo *repo, Hashtable ht, Hashval hm, Id name, Id evr, Id arch, Id start)
305 {
306   Hashval h, hh;
307
308   if (!name || !arch || !evr)
309     return 0;
310   hh = HASHCHAIN_START;
311   h = name & hm;
312   while (ht[h])
313     {
314       Solvable *s = repo->pool->solvables + ht[h];
315       if (ht[h] >= start && s->name == name && s->evr == evr && s->arch == arch)
316         return s;
317       h = HASHCHAIN_NEXT(h, hh, hm);
318     }
319   return 0;
320 }
321
322 static Id
323 lookup_shared_id(Repodata *data, Id p, Id keyname, Id voidid, int uninternalized)
324 {
325   Id r;
326   r = repodata_lookup_type(data, p, keyname);
327   if (r)
328     {
329       if (r == REPOKEY_TYPE_VOID)
330         return voidid;
331       r = repodata_lookup_id(data, p, keyname);
332       if (r)
333         return r;
334     }
335   if (uninternalized)
336     return repodata_lookup_id_uninternalized(data, p, keyname, voidid);
337   return 0;
338 }
339
340 static inline Id
341 toevr(Pool *pool, struct parsedata *pd, const char *version, const char *release)
342 {
343   return makeevr(pool, !release || (release[0] == '-' && !release[1]) ?
344         version : join2(&pd->jd, version, "-", release));
345 }
346
347
348 static inline void record_share(struct parsedata *pd, Id handle, Id name, Id evr, Id arch)
349 {
350   Repo *repo = pd->repo;
351   int i = handle - repo->start;
352   if (i >= pd->nshare)
353     {
354       pd->share_with = solv_realloc2(pd->share_with, i + 256, sizeof(*pd->share_with));
355       memset(pd->share_with + pd->nshare, 0, (i + 256 - pd->nshare) * sizeof(*pd->share_with));
356       pd->nshare = i + 256;
357     }
358   pd->share_with[i].name = name;
359   pd->share_with[i].evr = evr;
360   pd->share_with[i].arch = arch;
361 }
362
363 static void process_shares(struct parsedata *pd)
364 {
365   Pool *pool = pd->pool;
366   Repo *repo = pd->repo;
367   Repodata *data = pd->data;
368   int i, last_found;
369   Map keyidmap;
370
371   map_init(&keyidmap, data->nkeys);
372   for (i = 1; i < data->nkeys; i++)
373     {
374       Id keyname = data->keys[i].name;
375       if (keyname == SOLVABLE_INSTALLSIZE || keyname == SOLVABLE_DISKUSAGE || keyname == SOLVABLE_FILELIST)
376         continue;
377       if (keyname == SOLVABLE_MEDIADIR || keyname == SOLVABLE_MEDIAFILE || keyname == SOLVABLE_MEDIANR)
378         continue;
379       if (keyname == SOLVABLE_DOWNLOADSIZE || keyname == SOLVABLE_CHECKSUM)
380         continue;
381       if (keyname == SOLVABLE_SOURCENAME || keyname == SOLVABLE_SOURCEARCH || keyname == SOLVABLE_SOURCEEVR)
382         continue;
383       if (keyname == SOLVABLE_PKGID || keyname == SOLVABLE_HDRID || keyname == SOLVABLE_LEADSIGID)
384         continue;
385       if (keyname == SUSETAGS_SHARE_NAME || keyname == SUSETAGS_SHARE_EVR || keyname == SUSETAGS_SHARE_ARCH)
386         continue;
387       MAPSET(&keyidmap, i);
388     }
389   last_found = 0;
390   for (i = 0; i < pd->nshare; i++)
391     {
392       unsigned int n, nn;
393       Solvable *found = 0;
394       if (!pd->share_with[i].name)
395         continue;
396       for (n = repo->start, nn = repo->start + last_found; n < repo->end; n++, nn++)
397         {
398           if (nn >= repo->end)
399             nn = repo->start;
400           found = pool->solvables + nn;
401           if (found->repo == repo
402               && found->name == pd->share_with[i].name
403               && found->evr == pd->share_with[i].evr
404               && found->arch == pd->share_with[i].arch)
405             {
406               last_found = nn - repo->start;
407               break;
408             }
409         }
410       if (n != repo->end)
411         repodata_merge_some_attrs(data, repo->start + i, repo->start + last_found, &keyidmap, 0);
412     }
413   pd->share_with = solv_free(pd->share_with);
414   pd->nshare = 0;
415   map_free(&keyidmap);
416 }
417
418
419 /*
420  * parse susetags
421  *
422  * fp: file to read from
423  * defvendor: default vendor (0 if none)
424  * language: current language (0 if none)
425  * flags: flags
426  */
427
428 int
429 repo_add_susetags(Repo *repo, FILE *fp, Id defvendor, const char *language, int flags)
430 {
431   Pool *pool = repo->pool;
432   char *line, *linep;
433   int aline;
434   Solvable *s;
435   Offset freshens;
436   int intag = 0;
437   int intag_linestart = 0;
438   int cummulate = 0;
439   int notfound = 0;
440   int indelta = 0;
441   int last_found_pack = 0;
442   Id first_new_pkg = 0;
443   char *sp[6];
444   struct parsedata pd;
445   Repodata *data = 0;
446   Id handle = 0;
447   Hashtable joinhash = 0;
448   Hashval joinhashm = 0;
449   int createdpkgs = 0;
450
451   if ((flags & (SUSETAGS_EXTEND|REPO_EXTEND_SOLVABLES)) != 0 && repo->nrepodata)
452     {
453       joinhash = joinhash_init(repo, &joinhashm);
454     }
455
456   data = repo_add_repodata(repo, flags);
457
458   memset(&pd, 0, sizeof(pd));
459   line = solv_malloc(1024);
460   aline = 1024;
461
462   pd.pool = pool;
463   pd.repo = repo;
464   pd.data = data;
465   pd.flags = flags;
466   pd.language = language && *language ? solv_strdup(language) : 0;
467   queue_init(&pd.diskusageq);
468
469   linep = line;
470   s = 0;
471   freshens = 0;
472
473   /* if this is a join setup the recorded share data */
474   if (joinhash)
475     {
476       Repodata *sdata;
477       int i;
478
479       FOR_REPODATAS(repo, i, sdata)
480         {
481           int p;
482           if (!repodata_has_keyname(sdata, SUSETAGS_SHARE_NAME))
483             continue;
484           for (p = sdata->start; p < sdata->end; p++)
485             {
486               Id name, evr, arch;
487               name = lookup_shared_id(sdata, p, SUSETAGS_SHARE_NAME, pool->solvables[p].name, sdata == data);
488               if (!name)
489                 continue;
490               evr = lookup_shared_id(sdata, p, SUSETAGS_SHARE_EVR, pool->solvables[p].evr, sdata == data);
491               if (!evr)
492                 continue;
493               arch = lookup_shared_id(sdata, p, SUSETAGS_SHARE_ARCH, pool->solvables[p].arch, sdata == data);
494               if (!arch)
495                 continue;
496               record_share(&pd, p, name, evr, arch);
497             }
498         }
499     }
500
501   /*
502    * read complete file
503    *
504    * collect values in 'struct parsedata pd'
505    * then build .solv (and .attr) file
506    */
507
508   for (;;)
509     {
510       unsigned int tag;
511       char line_lang[6];
512       int keylen;
513
514       if (pd.ret)
515         break;
516       if (linep - line + 16 > aline)              /* (re-)alloc buffer */
517         {
518           aline = linep - line;
519           line = solv_realloc(line, aline + 512);
520           linep = line + aline;
521           aline += 512;
522         }
523       if (!fgets(linep, aline - (linep - line), fp)) /* read line */
524         break;
525       linep += strlen(linep);
526       if (linep == line || linep[-1] != '\n')
527         continue;
528       pd.lineno++;
529       *--linep = 0;
530
531       if (intag)
532         {
533           /* in multi-line value tags (+Key:/-Key:), check for end, cummulate */
534           int is_end = line[intag_linestart] == '-' && linep[-1] == ':' && linep - line == intag_linestart + intag + 2;
535           if (is_end && strncmp(linep - 1 - intag, line + 1, intag))
536             {
537               pool_debug(pool, SOLV_ERROR, "susetags: Nonmatching multi-line tags: %d: '%s' '%.*s'\n", pd.lineno, linep - 1 - intag, intag, line + 1);
538             }
539           if (!is_end)
540             {
541               if (cummulate)
542                 {
543                   *linep++ = '\n';
544                   intag_linestart = linep - line;
545                   continue;
546                 }
547               intag_linestart = intag + 3;
548               linep = line + intag_linestart;
549               if (!*linep)
550                 continue;               /* ignore empty lines, bnc#381828 */
551             }
552           else
553             {
554               intag = 0;
555               linep = line;
556               if (!cummulate)
557                 continue;
558               line[intag_linestart] = 0;
559               if (line[intag_linestart - 1] == '\n')
560                 line[intag_linestart - 1] = 0;          /* strip trailing newline */
561             }
562         }
563       else
564         linep = line;
565
566       /* ignore comments and empty lines */
567       if (!*line || *line == '#')
568         continue;
569
570       /* ignore malformed lines */
571       if (!(line[0] && line[1] && line[2] && line[3] && (line[4] == ':' || line[4] == '.')))
572         continue;
573
574       if (!intag && line[0] == '+' && line[1] != ':') /* start of +Key:/-Key: tag */
575         {
576           char *tagend = strchr(line, ':');
577           if (!tagend || tagend - line > 100)
578             {
579               pd.ret = pool_error(pool, -1, "susetags: line %d: bad line '%s'\n", pd.lineno, line);
580               break;
581             }
582           intag = tagend - (line + 1);          /* set to tagsize */
583           cummulate = 0;
584           switch (tag_from_string(line))        /* check if accumulation is needed */
585             {
586               case CTAG('+', 'D', 'e', 's'):
587               case CTAG('+', 'E', 'u', 'l'):
588               case CTAG('+', 'I', 'n', 's'):
589               case CTAG('+', 'D', 'e', 'l'):
590               case CTAG('+', 'A', 'u', 't'):
591                 cummulate = 1;
592                 break;
593               default:
594                 break;
595             }
596           line[0] = '=';                        /* handle lines between +Key:/-Key: as =Key: */
597           line[intag + 2] = ' ';
598           intag_linestart = intag + 3;
599           linep = line + intag_linestart;
600           continue;
601         }
602
603       /* support language suffix */
604       keylen = 3;
605       line_lang[0] = 0;
606       if (line[4] == '.')
607         {
608           char *endlang;
609           endlang = strchr(line + 5, ':');
610           if (endlang)
611             {
612               int langsize = endlang - (line + 5);
613               keylen = endlang - line - 1;
614               if (langsize > 5)
615                 langsize = 5;
616               strncpy(line_lang, line + 5, langsize);
617               line_lang[langsize] = 0;
618             }
619         }
620
621       tag = tag_from_string(line);
622
623       /* handle global tags and tags that start a new section */
624       switch (tag)
625         {
626         case CTAG('=', 'V', 'e', 'r'):
627           /* start of a new file */
628           if (s)
629             finish_solvable(&pd, s, freshens);
630           s = 0;
631           handle = 0;
632           freshens = 0;
633           indelta = 0;
634           notfound = 0;
635           last_found_pack = 0;
636           if (createdpkgs)
637             {
638               solv_free(joinhash);
639               joinhash = joinhash_init(repo, &joinhashm);
640               createdpkgs = 0;
641             }
642           continue;
643
644         case CTAG('=', 'L', 'a', 'n'):
645           /* define language of the following material */
646           pd.language = solv_free(pd.language);
647           memset(pd.langcache, 0, sizeof(pd.langcache));
648           if (line[6])
649             pd.language = solv_strdup(line + 6);
650           continue;
651
652         case CTAG('=', 'P', 'k', 'g'):          /* start of a package */
653         case CTAG('=', 'P', 'a', 't'):          /* start of a pattern */
654         case CTAG('=', 'D', 'l', 't'):          /* start of a delta */
655           /* =Pkg: <name> <version> <release> <architecture> */
656           /* If we have an old solvable, complete it by filling in some default stuff.  */
657           if (s)
658             finish_solvable(&pd, s, freshens);
659           s = 0;
660           handle = 0;
661           freshens = 0;
662           indelta = 0;
663           notfound = 0;
664
665           /* define kind */
666           pd.kind = 0;
667           if (tag == CTAG('=', 'P', 'a', 't'))
668             pd.kind = "pattern";
669
670           /* parse nevra */
671           if (split(line + 5, sp, 5) != 4)
672             {
673               pd.ret = pool_error(pool, -1, "susetags: line %d: bad line '%s'\n", pd.lineno, line);
674               break;
675             }
676
677           if (tag == CTAG('=', 'D', 'l', 't'))
678             {
679               /* start new delta */
680               handle = repodata_new_handle(data);
681               repodata_set_id(data, handle, DELTA_PACKAGE_NAME, pool_str2id(pool, sp[0], 1));
682               repodata_set_id(data, handle, DELTA_PACKAGE_EVR, toevr(pool, &pd, sp[1], sp[2]));
683               repodata_set_id(data, handle, DELTA_PACKAGE_ARCH, pool_str2id(pool, sp[3], 1));
684               repodata_add_flexarray(data, SOLVID_META, REPOSITORY_DELTAINFO, handle);
685               indelta = 1;
686               continue;
687             }
688
689           if (joinhash)
690             {
691               /* data join operation. find solvable matching name/arch/evr and
692                * add data to it */
693               Id name, arch;
694               /* we don't use the create flag here as a simple pre-check for existance */
695               if (pd.kind)
696                 name = pool_str2id(pool, join2(&pd.jd, pd.kind, ":", sp[0]), 0);
697               else
698                 name = pool_str2id(pool, sp[0], 0);
699               arch = pool_str2id(pool, sp[3], 0);
700               if (name && arch)
701                 {
702                   Id start = (flags & REPO_EXTEND_SOLVABLES) ? 0 : first_new_pkg;
703                   Id evr = toevr(pool, &pd, sp[1], sp[2]);
704                   if (repo->start + last_found_pack + 1 >= start && repo->start + last_found_pack + 1 < repo->end)
705                     {
706                       s = pool->solvables + repo->start + last_found_pack + 1;
707                       if (s->repo != repo || s->name != name || s->evr != evr || s->arch != arch)
708                         s = 0;
709                     }
710                   if (!s)
711                     s = joinhash_lookup(repo, joinhash, joinhashm, name, evr, arch, start);
712                 }
713               /* do not create new packages in EXTEND_SOLVABLES mode */
714               if (!s && (flags & REPO_EXTEND_SOLVABLES) != 0)
715                 {
716                   notfound = 1;
717                   continue;
718                 }
719               /* fallthrough to package creation */
720             }
721           if (!s)
722             {
723               /* normal operation. create a new solvable. */
724               s = pool_id2solvable(pool, repo_add_solvable(repo));
725               if (pd.kind)
726                 s->name = pool_str2id(pool, join2(&pd.jd, pd.kind, ":", sp[0]), 1);
727               else
728                 s->name = pool_str2id(pool, sp[0], 1);
729               s->evr = toevr(pool, &pd, sp[1], sp[2]);
730               s->arch = pool_str2id(pool, sp[3], 1);
731               s->vendor = defvendor;
732               if (!first_new_pkg)
733                 first_new_pkg = s - pool->solvables;
734               createdpkgs = 1;
735             }
736           handle = s - pool->solvables;
737           last_found_pack = (s - pool->solvables) - repo->start;
738           continue;
739
740         default:
741           break;
742         }
743
744       /* handle delta tags */
745       if (indelta)
746         {
747           /* Example:
748             =Dlt: subversion 1.6.16 1.3.1 i586
749             =Dsq: subversion 1.6.15 4.2 i586 d57b3fc86e7a2f73796e8e35b96fa86212c910
750             =Cks: SHA1 14a8410cf741856a5d70d89dab62984dba6a1ca7
751             =Loc: 1 subversion-1.6.15_1.6.16-4.2_1.3.1.i586.delta.rpm
752             =Siz: 81558
753            */
754           switch (tag)
755             {
756             case CTAG('=', 'D', 's', 'q'):
757               {
758                 Id evr;
759                 if (split(line + 5, sp, 5) != 5)
760                   continue;
761                 repodata_set_id(data, handle, DELTA_SEQ_NAME, pool_str2id(pool, sp[0], 1));
762                 evr = toevr(pool, &pd, sp[1], sp[2]);
763                 repodata_set_id(data, handle, DELTA_SEQ_EVR, evr);
764                 /* repodata_set_id(data, handle, DELTA_SEQ_ARCH, pool_str2id(pool, sp[3], 1)); */
765                 repodata_set_str(data, handle, DELTA_SEQ_NUM, sp[4]);
766                 repodata_set_id(data, handle, DELTA_BASE_EVR, evr);
767                 continue;
768               }
769             case CTAG('=', 'C', 'k', 's'):
770               set_checksum(&pd, data, handle, DELTA_CHECKSUM, line + 6);
771               continue;
772             case CTAG('=', 'L', 'o', 'c'):
773               {
774                 int i = split(line + 6, sp, 3);
775                 if (i != 2 && i != 3)
776                   {
777                     pd.ret = pool_error(pool, -1, "susetags: line %d: bad location line '%s'\n", pd.lineno, line);
778                     continue;
779                   }
780                 repodata_set_deltalocation(data, handle, atoi(sp[0]), i == 3 ? sp[2] : 0, sp[1]);
781                 continue;
782               }
783             case CTAG('=', 'S', 'i', 'z'):
784               if (split(line + 6, sp, 3) == 2)
785                 repodata_set_num(data, handle, DELTA_DOWNLOADSIZE, strtoull(sp[0], 0, 10));
786               continue;
787             default:
788               pool_debug(pool, SOLV_WARN, "susetags: unknown line: %d: %s\n", pd.lineno, line);
789               continue;
790             }
791         }
792
793       /* we need a solvable for all other tags */
794       if (!s)
795         {
796           if (notfound)
797             continue;           /* did not find the solvable to extend */
798 #if 0
799           pool_debug(pool, SOLV_WARN, "susetags: stray line: %d: %s\n", pd.lineno, line);
800 #endif
801           continue;
802         }
803
804       switch (tag)
805         {
806           case CTAG('=', 'P', 'r', 'v'):                                        /* provides */
807             if (line[6] == '/')
808               {
809                 /* probably a filelist entry. stash it away for now */
810                 int l = strlen(line + 6) + 1;
811                 if (pd.nfilelist + l > pd.afilelist)
812                   {
813                     pd.afilelist = pd.nfilelist + l + 512;
814                     pd.filelist = solv_realloc(pd.filelist, pd.afilelist);
815                   }
816                 memcpy(pd.filelist + pd.nfilelist, line + 6, l);
817                 pd.nfilelist += l;
818                 break;
819               }
820             if (pd.nfilelist)
821               {
822                 int l;
823                 for (l = 0; l < pd.nfilelist; l += strlen(pd.filelist + l) + 1)
824                   s->provides = repo_addid_dep(pd.repo, s->provides, pool_str2id(pool, pd.filelist + l, 1), 0);
825                 pd.nfilelist = 0;
826               }
827             s->provides = adddep(pool, &pd, s->provides, line, 0, pd.kind);
828             continue;
829           case CTAG('=', 'R', 'e', 'q'):                                        /* requires */
830             s->requires = adddep(pool, &pd, s->requires, line, -SOLVABLE_PREREQMARKER, pd.kind);
831             continue;
832           case CTAG('=', 'P', 'r', 'q'):                                        /* pre-requires / packages required */
833             if (pd.kind)
834               s->requires = adddep(pool, &pd, s->requires, line, 0, 0);         /* pattern: package requires */
835             else
836               s->requires = adddep(pool, &pd, s->requires, line, SOLVABLE_PREREQMARKER, 0); /* pre-requires */
837             continue;
838           case CTAG('=', 'O', 'b', 's'):                                        /* obsoletes */
839             s->obsoletes = adddep(pool, &pd, s->obsoletes, line, 0, pd.kind);
840             continue;
841           case CTAG('=', 'C', 'o', 'n'):                                        /* conflicts */
842             s->conflicts = adddep(pool, &pd, s->conflicts, line, 0, pd.kind);
843             continue;
844           case CTAG('=', 'R', 'e', 'c'):                                        /* recommends */
845             s->recommends = adddep(pool, &pd, s->recommends, line, 0, pd.kind);
846             continue;
847           case CTAG('=', 'S', 'u', 'p'):                                        /* supplements */
848             s->supplements = adddep(pool, &pd, s->supplements, line, 0, pd.kind);
849             continue;
850           case CTAG('=', 'E', 'n', 'h'):                                        /* enhances */
851             s->enhances = adddep(pool, &pd, s->enhances, line, 0, pd.kind);
852             continue;
853           case CTAG('=', 'S', 'u', 'g'):                                        /* suggests */
854             s->suggests = adddep(pool, &pd, s->suggests, line, 0, pd.kind);
855             continue;
856           case CTAG('=', 'F', 'r', 'e'):                                        /* freshens */
857             freshens = adddep(pool, &pd, freshens, line, 0, pd.kind);
858             continue;
859           case CTAG('=', 'P', 'r', 'c'):                                        /* packages recommended */
860             s->recommends = adddep(pool, &pd, s->recommends, line, 0, 0);
861             continue;
862           case CTAG('=', 'P', 's', 'g'):                                        /* packages suggested */
863             s->suggests = adddep(pool, &pd, s->suggests, line, 0, 0);
864             continue;
865           case CTAG('=', 'P', 'c', 'n'):                                        /* pattern: package conflicts */
866             s->conflicts = adddep(pool, &pd, s->conflicts, line, 0, 0);
867             continue;
868           case CTAG('=', 'P', 'o', 'b'):                                        /* pattern: package obsoletes */
869             s->obsoletes = adddep(pool, &pd, s->obsoletes, line, 0, 0);
870             continue;
871           case CTAG('=', 'P', 'f', 'r'):                                        /* pattern: package freshens */
872             freshens = adddep(pool, &pd, freshens, line, 0, 0);
873             continue;
874           case CTAG('=', 'P', 's', 'p'):                                        /* pattern: package supplements */
875             s->supplements = adddep(pool, &pd, s->supplements, line, 0, 0);
876             continue;
877           case CTAG('=', 'P', 'e', 'n'):                                        /* pattern: package enhances */
878             s->enhances = adddep(pool, &pd, s->enhances, line, 0, 0);
879             continue;
880           case CTAG('=', 'V', 'n', 'd'):                                        /* vendor */
881             s->vendor = pool_str2id(pool, line + 6, 1);
882             continue;
883
884         /* From here it's the attribute tags.  */
885           case CTAG('=', 'G', 'r', 'p'):
886             repodata_set_poolstr(data, handle, SOLVABLE_GROUP, line + 6);
887             continue;
888           case CTAG('=', 'L', 'i', 'c'):
889             repodata_set_poolstr(data, handle, SOLVABLE_LICENSE, line + 6);
890             continue;
891           case CTAG('=', 'L', 'o', 'c'):
892             {
893               int i = split(line + 6, sp, 3);
894               if (i != 2 && i != 3)
895                 {
896                   pd.ret = pool_error(pool, -1, "susetags: line %d: bad location line '%s'\n", pd.lineno, line);
897                   continue;
898                 }
899               repodata_set_location(data, handle, atoi(sp[0]), i == 3 ? sp[2] : pool_id2str(pool, s->arch), sp[1]);
900             }
901             continue;
902           case CTAG('=', 'S', 'r', 'c'):
903             add_source(&pd, line + 6, s, handle);
904             continue;
905           case CTAG('=', 'S', 'i', 'z'):
906             if (split(line + 6, sp, 3) == 2)
907               {
908                 repodata_set_num(data, handle, SOLVABLE_DOWNLOADSIZE, strtoull(sp[0], 0, 10));
909                 repodata_set_num(data, handle, SOLVABLE_INSTALLSIZE, strtoull(sp[1], 0, 10));
910               }
911             continue;
912           case CTAG('=', 'T', 'i', 'm'):
913             {
914               unsigned int t = atoi(line + 6);
915               if (t)
916                 repodata_set_num(data, handle, SOLVABLE_BUILDTIME, t);
917             }
918             continue;
919           case CTAG('=', 'K', 'w', 'd'):
920             repodata_add_poolstr_array(data, handle, SOLVABLE_KEYWORDS, line + 6);
921             continue;
922           case CTAG('=', 'A', 'u', 't'):
923             repodata_set_str(data, handle, SOLVABLE_AUTHORS, line + 6);
924             continue;
925           case CTAG('=', 'S', 'u', 'm'):
926             repodata_set_str(data, handle, langtag(&pd, SOLVABLE_SUMMARY, line_lang), line + 3 + keylen);
927             continue;
928           case CTAG('=', 'D', 'e', 's'):
929             repodata_set_str(data, handle, langtag(&pd, SOLVABLE_DESCRIPTION, line_lang), line + 3 + keylen);
930             continue;
931           case CTAG('=', 'E', 'u', 'l'):
932             repodata_set_str(data, handle, langtag(&pd, SOLVABLE_EULA, line_lang), line + 6);
933             continue;
934           case CTAG('=', 'I', 'n', 's'):
935             repodata_set_str(data, handle, langtag(&pd, SOLVABLE_MESSAGEINS, line_lang), line + 6);
936             continue;
937           case CTAG('=', 'D', 'e', 'l'):
938             repodata_set_str(data, handle, langtag(&pd, SOLVABLE_MESSAGEDEL, line_lang), line + 6);
939             continue;
940           case CTAG('=', 'V', 'i', 's'):
941             {
942               /* Accept numbers and textual bools.  */
943               int k;
944               k = atoi(line + 6);
945               if (k || !strcasecmp(line + 6, "true"))
946                 repodata_set_void(data, handle, SOLVABLE_ISVISIBLE);
947               continue;
948             }
949           case CTAG('=', 'S', 'h', 'r'):
950             {
951               Id name, evr, arch;
952               if (split(line + 6, sp, 5) != 4)
953                 {
954                   pd.ret = pool_error(pool, -1, "susetags: line %d: bad =Shr line '%s'\n", pd.lineno, line);
955                   continue;
956                 }
957               name = pool_str2id(pool, sp[0], 1);
958               evr = toevr(pool, &pd, sp[1], sp[2]);
959               arch = pool_str2id(pool, sp[3], 1);
960               record_share(&pd, handle, name, evr, arch);
961               if ((flags & SUSETAGS_RECORD_SHARES) != 0)
962                 {
963                   if (s->name == name)
964                     repodata_set_void(data, handle, SUSETAGS_SHARE_NAME);
965                   else
966                     repodata_set_id(data, handle, SUSETAGS_SHARE_NAME, name);
967                   if (s->evr == evr)
968                     repodata_set_void(data, handle, SUSETAGS_SHARE_EVR);
969                   else
970                     repodata_set_id(data, handle, SUSETAGS_SHARE_EVR, evr);
971                   if (s->arch == arch)
972                     repodata_set_void(data, handle, SUSETAGS_SHARE_ARCH);
973                   else
974                     repodata_set_id(data, handle, SUSETAGS_SHARE_ARCH, arch);
975                 }
976               continue;
977             }
978           case CTAG('=', 'D', 'i', 'r'):
979             if (split(line + 6, sp, 6) == 5)
980               {
981                 long filesz, filenum;
982                 Id did;
983
984                 filesz = strtol(sp[1], 0, 0);
985                 filesz += strtol(sp[2], 0, 0);
986                 filenum = strtol(sp[3], 0, 0);
987                 filenum += strtol(sp[4], 0, 0);
988                 if (*sp[0] != '/')
989                   *--sp[0] = '/';       /* hack: we know that there's room for a / */
990                 did = repodata_str2dir(data, sp[0], 1);
991                 queue_push(&pd.diskusageq, did);
992                 queue_push2(&pd.diskusageq, (Id)filesz, (Id)filenum);
993               }
994             break;
995           case CTAG('=', 'C', 'a', 't'):
996             repodata_set_poolstr(data, handle, langtag(&pd, SOLVABLE_CATEGORY, line_lang), line + 3 + keylen);
997             break;
998           case CTAG('=', 'O', 'r', 'd'):
999             /* Order is a string not a number, so we can retroactively insert
1000                new patterns in the middle, i.e. 1 < 15 < 2.  */
1001             repodata_set_str(data, handle, SOLVABLE_ORDER, line + 6);
1002             break;
1003           case CTAG('=', 'I', 'c', 'o'):
1004             repodata_set_str(data, handle, SOLVABLE_ICON, line + 6);
1005             break;
1006           case CTAG('=', 'E', 'x', 't'):
1007             repodata_add_poolstr_array(data, handle, SOLVABLE_EXTENDS, join2(&pd.jd, "pattern", ":", line + 6));
1008             break;
1009           case CTAG('=', 'I', 'n', 'c'):
1010             repodata_add_poolstr_array(data, handle, SOLVABLE_INCLUDES, join2(&pd.jd, "pattern", ":", line + 6));
1011             break;
1012           case CTAG('=', 'C', 'k', 's'):
1013             set_checksum(&pd, data, handle, SOLVABLE_CHECKSUM, line + 6);
1014             break;
1015
1016           case CTAG('=', 'F', 'l', 's'):
1017             {
1018               char *p, *file = line + 6;
1019               Id did;
1020
1021               if (*file != '/')
1022                 *--file = '/';          /* hack: we know there is room */
1023               p  = strrchr(file, '/');
1024               /* strip trailing slashes */
1025               while (p != file && !p[1])
1026                 {
1027                   *p = 0;
1028                   p = strrchr(file, '/');
1029                 }
1030               *p++ = 0;
1031               did = repodata_str2dir(data, *file ? file : "/", 1);
1032               repodata_add_dirstr(data, handle, SOLVABLE_FILELIST, did, p);
1033               line[5] = ' ';
1034               break;
1035             }
1036           case CTAG('=', 'H', 'd', 'r'):
1037             /* rpm header range */
1038             if (split(line + 6, sp, 3) == 2)
1039               {
1040                 /* we ignore the start value */
1041                 unsigned int end = (unsigned int)atoi(sp[1]);
1042                 if (end)
1043                   repodata_set_num(data, handle, SOLVABLE_HEADEREND, end);
1044               }
1045             break;
1046
1047           default:
1048 #if 0
1049             pool_debug(pool, SOLV_WARN, "susetags: unknown line: %d: %s\n", pd.lineno, line);
1050 #endif
1051             break;
1052         }
1053     }
1054
1055   if (s)
1056     finish_solvable(&pd, s, freshens);
1057   solv_free(pd.filelist);
1058
1059   /* process shared attributes (e.g. multiple binaries built from same source) */
1060   if (pd.nshare)
1061     process_shares(&pd);
1062
1063   solv_free(joinhash);
1064   repodata_free_dircache(data);
1065   if (!(flags & REPO_NO_INTERNALIZE))
1066     repodata_internalize(data);
1067
1068   solv_free(pd.language);
1069   solv_free(line);
1070   join_freemem(&pd.jd);
1071   queue_free(&pd.diskusageq);
1072   return pd.ret;
1073 }