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