- add pool_error and pool_errstr. get rid of lots of exit() calls.
[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   int ret;
30   Pool *pool;
31   Repo *repo;
32   Repodata *data;
33   char *kind;
34   int flags;
35   int last_found_source;
36   struct datashare *share_with;
37   int nshare;
38   Id (*dirs)[3];                        /* dirid, size, nfiles */
39   int ndirs;
40   struct joindata jd;
41   char *language;                       /* the default language */
42   Id langcache[ID_NUM_INTERNAL];        /* cache for the default language */
43   int lineno;
44   char *filelist;
45   int afilelist;                        /* allocated */
46   int nfilelist;                        /* used */
47 };
48
49 static char *flagtab[] = {
50   ">",
51   "=",
52   ">=",
53   "<",
54   "!=",
55   "<="
56 };
57
58
59 static Id
60 langtag(struct parsedata *pd, Id tag, const char *language)
61 {
62   if (language && *language)
63     return pool_id2langid(pd->repo->pool, tag, language, 1);
64   if (!pd->language)
65     return tag;
66   if (tag >= ID_NUM_INTERNAL)
67     return pool_id2langid(pd->repo->pool, tag, pd->language, 1);
68   if (!pd->langcache[tag])
69     pd->langcache[tag] = pool_id2langid(pd->repo->pool, tag, pd->language, 1);
70   return pd->langcache[tag];
71 }
72
73 /*
74  * adddep
75  * create and add dependency
76  */
77
78 static unsigned int
79 adddep(Pool *pool, struct parsedata *pd, unsigned int olddeps, char *line, Id marker, char *kind)
80 {
81   int i, flags;
82   Id id, evrid;
83   char *sp[4];
84
85   if (line[6] == '/')
86     {
87       /* A file dependency. Do not try to parse it */
88       id = pool_str2id(pool, line + 6, 1);
89     }
90   else
91     {
92       i = split(line + 6, sp, 4); /* name, <op>, evr, ? */
93       if (i != 1 && i != 3) /* expect either 'name' or 'name' <op> 'evr' */
94         {
95           pd->ret = pool_error(pool, -1, "susetags: line %d: bad dependency: '%s'\n", pd->lineno, line);
96           return olddeps;
97         }
98       if (kind)
99         id = pool_str2id(pool, join2(&pd->jd, kind, ":", sp[0]), 1);
100       else
101         id = pool_str2id(pool, sp[0], 1);
102       if (i == 3)
103         {
104           evrid = makeevr(pool, sp[2]);
105           for (flags = 0; flags < 6; flags++)
106             if (!strcmp(sp[1], flagtab[flags]))
107               break;
108           if (flags == 6)
109             {
110               if (!strcmp(sp[1], "<>"))
111                 flags = 4;
112               else
113                 {
114                   pd->ret = pool_error(pool, -1, "susetags: line %d: unknown relation: '%s'\n", pd->lineno, sp[1]);
115                   return olddeps;
116                 }
117             }
118           id = pool_rel2id(pool, id, evrid, flags + 1, 1);
119         }
120     }
121   return repo_addid_dep(pd->repo, olddeps, id, marker);
122 }
123
124
125 /*
126  * add_source
127  *
128  */
129
130 static void
131 add_source(struct parsedata *pd, char *line, Solvable *s, Id handle)
132 {
133   Repo *repo = s->repo;
134   Pool *pool = repo->pool;
135   char *sp[5];
136   Id name;
137   Id evr;
138   Id arch;
139
140   if (split(line, sp, 5) != 4)
141     {
142       pd->ret = pool_error(pool, -1, "susetags: line %d: bad source line '%s'\n", pd->lineno, line);
143       return;
144     }
145
146   name = pool_str2id(pool, sp[0], 1);
147   evr = makeevr(pool, join2(&pd->jd, sp[1], "-", sp[2]));
148   arch = pool_str2id(pool, sp[3], 1);
149   /* XXX: could record a dep here, depends on where we want to store the data */
150   if (name == s->name)
151     repodata_set_void(pd->data, handle, SOLVABLE_SOURCENAME);
152   else
153     repodata_set_id(pd->data, handle, SOLVABLE_SOURCENAME, name);
154   if (evr == s->evr)
155     repodata_set_void(pd->data, handle, SOLVABLE_SOURCEEVR);
156   else
157     repodata_set_id(pd->data, handle, SOLVABLE_SOURCEEVR, evr);
158   repodata_set_constantid(pd->data, handle, SOLVABLE_SOURCEARCH, arch);
159 }
160
161 /*
162  * add_dirline
163  * add a line with directory information
164  *
165  */
166
167 static void
168 add_dirline(struct parsedata *pd, char *line)
169 {
170   char *sp[6];
171   long filesz;
172   long filenum;
173   Id dirid;
174   if (split(line, sp, 6) != 5)
175     return;
176   pd->dirs = solv_extend(pd->dirs, pd->ndirs, 1, sizeof(pd->dirs[0]), 31);
177   filesz = strtol(sp[1], 0, 0);
178   filesz += strtol(sp[2], 0, 0);
179   filenum = strtol(sp[3], 0, 0);
180   filenum += strtol(sp[4], 0, 0);
181   /* hack: we know that there's room for a / */
182   if (*sp[0] != '/')
183     *--sp[0] = '/';
184   dirid = repodata_str2dir(pd->data, sp[0], 1);
185 #if 0
186 fprintf(stderr, "%s -> %d\n", sp[0], dirid);
187 #endif
188   pd->dirs[pd->ndirs][0] = dirid;
189   pd->dirs[pd->ndirs][1] = filesz;
190   pd->dirs[pd->ndirs][2] = filenum;
191   pd->ndirs++;
192 }
193
194 static void
195 set_checksum(struct parsedata *pd, Repodata *data, Id handle, Id keyname, char *line)
196 {
197   char *sp[3];
198   Id type;
199   if (split(line, sp, 3) != 2)
200     {
201       pd->ret = pool_error(pd->pool, -1, "susetags: line %d: bad checksum line '%s'\n", pd->lineno, line);
202       return;
203     }
204   type = solv_chksum_str2type(sp[0]);
205   if (!type)
206     {
207       pd->ret = pool_error(pd->pool, -1, "susetags: line %d: unknown checksum type: '%s'\n", pd->lineno, sp[0]);
208       return;
209     }
210   if (strlen(sp[1]) != 2 * solv_chksum_len(type))
211     {
212       pd->ret = pool_error(pd->pool, -1, "susetags: line %d: bad checksum length for type %s: '%s'\n", pd->lineno, sp[0], sp[1]);
213       return;
214     }
215   repodata_set_checksum(data, handle, keyname, type, sp[1]);
216 }
217
218 static void
219 set_delta_location(Repodata *data, Id handle, int medianr, char *dir, char *file)
220 {
221   Pool *pool = data->repo->pool;
222   int l = 0; 
223   char *p, *op;
224
225   if (!dir)
226     {    
227       if ((dir = strrchr(file, '/')) != 0)
228         {
229           l = dir - file;
230           dir = file;
231           file = dir + l + 1; 
232           if (!l) 
233             l++;
234         }
235     }    
236   else 
237     l = strlen(dir);
238   if (l >= 2 && dir[0] == '.' && dir[1] == '/' && (l == 2 || dir[2] != '/'))
239     {    
240       dir += 2;
241       l -= 2;
242     }    
243   if (l == 1 && dir[0] == '.') 
244     l = 0; 
245   if (dir && l)
246     repodata_set_id(data, handle, DELTA_LOCATION_DIR, pool_strn2id(pool, dir, l, 1));
247   if ((p = strrchr(file, '.')) != 0)
248     {
249       *p = 0;
250       if ((op = strrchr(file, '.')) != 0)
251         {
252           *p = '.';
253           p = op;
254           *p = 0;
255           if (!strcmp(p + 1, "delta.rpm") && (op = strrchr(file, '.')) != 0)
256             {
257               *p = '.';
258               p = op;
259               *p = 0;
260             }
261         }
262       repodata_set_id(data, handle, DELTA_LOCATION_SUFFIX, pool_str2id(pool, p + 1, 1));
263     }
264   if ((p = strrchr(file, '-')) != 0)
265     {
266       *p = 0;
267       if ((op = strrchr(file, '-')) != 0)
268         {
269           *p = '-';
270           p = op;
271           *p = 0;
272         }
273       repodata_set_id(data, handle, DELTA_LOCATION_EVR, pool_str2id(pool, p + 1, 1));
274     }
275   repodata_set_id(data, handle, DELTA_LOCATION_NAME, pool_str2id(pool, file, 1));
276 }
277
278
279
280 /*
281  * id3_cmp
282  * compare
283  *
284  */
285
286 static int
287 id3_cmp(const void *v1, const void *v2, void *dp)
288 {
289   Id *i1 = (Id*)v1;
290   Id *i2 = (Id*)v2;
291   return i1[0] - i2[0];
292 }
293
294
295 /*
296  * commit_diskusage
297  *
298  */
299
300 static void
301 commit_diskusage(struct parsedata *pd, Id handle)
302 {
303   int i;
304   Dirpool *dp = &pd->data->dirpool;
305   /* Now sort in dirid order.  This ensures that parents come before
306      their children.  */
307   if (pd->ndirs > 1)
308     solv_sort(pd->dirs, pd->ndirs, sizeof(pd->dirs[0]), id3_cmp, 0);
309   /* Substract leaf numbers from all parents to make the numbers
310      non-cumulative.  This must be done post-order (i.e. all leafs
311      adjusted before parents).  We ensure this by starting at the end of
312      the array moving to the start, hence seeing leafs before parents.  */
313   for (i = pd->ndirs; i--;)
314     {
315       Id p = dirpool_parent(dp, pd->dirs[i][0]);
316       int j = i;
317       for (; p; p = dirpool_parent(dp, p))
318         {
319           for (; j--;)
320             if (pd->dirs[j][0] == p)
321               break;
322           if (j >= 0)
323             {
324               if (pd->dirs[j][1] < pd->dirs[i][1])
325                 pd->dirs[j][1] = 0;
326               else
327                 pd->dirs[j][1] -= pd->dirs[i][1];
328               if (pd->dirs[j][2] < pd->dirs[i][2])
329                 pd->dirs[j][2] = 0;
330               else
331                 pd->dirs[j][2] -= pd->dirs[i][2];
332             }
333           else
334             /* Haven't found this parent in the list, look further if
335                we maybe find the parents parent.  */
336             j = i;
337         }
338     }
339 #if 0
340   char sbuf[1024];
341   char *buf = sbuf;
342   unsigned slen = sizeof(sbuf);
343   for (i = 0; i < pd->ndirs; i++)
344     {
345       dir2str(attr, pd->dirs[i][0], &buf, &slen);
346       fprintf(stderr, "have dir %d %d %d %s\n", pd->dirs[i][0], pd->dirs[i][1], pd->dirs[i][2], buf);
347     }
348   if (buf != sbuf)
349     free (buf);
350 #endif
351   for (i = 0; i < pd->ndirs; i++)
352     if (pd->dirs[i][1] || pd->dirs[i][2])
353       {
354         repodata_add_dirnumnum(pd->data, handle, SOLVABLE_DISKUSAGE, pd->dirs[i][0], pd->dirs[i][1], pd->dirs[i][2]);
355       }
356   pd->ndirs = 0;
357 }
358
359
360 /* Unfortunately "a"[0] is no constant expression in the C languages,
361    so we need to pass the four characters individually :-/  */
362 #define CTAG(a,b,c,d) ((unsigned)(((unsigned char)a) << 24) \
363  | ((unsigned char)b << 16) \
364  | ((unsigned char)c << 8) \
365  | ((unsigned char)d))
366
367 /*
368  * tag_from_string
369  *
370  */
371
372 static inline unsigned
373 tag_from_string(char *cs)
374 {
375   unsigned char *s = (unsigned char *)cs;
376   return ((s[0] << 24) | (s[1] << 16) | (s[2] << 8) | s[3]);
377 }
378
379
380 /*
381  * repo_add_susetags
382  * Parse susetags file passed in fp, fill solvables into repo
383  *
384  * susetags is key,value based
385  *  for short values
386  *    =key: value
387  *  is used
388  *  for long (multi-line) values,
389  *    +key:
390  *    value
391  *    value
392  *    -key:
393  *  is used
394  *
395  * See http://en.opensuse.org/Standards/YaST2_Repository_Metadata
396  * and http://en.opensuse.org/Standards/YaST2_Repository_Metadata/packages
397  * and http://en.opensuse.org/Standards/YaST2_Repository_Metadata/pattern
398  *
399  * Assumptions:
400  *   All keys have 3 characters and end in ':'
401  */
402
403 static void
404 finish_solvable(struct parsedata *pd, Solvable *s, Id handle, Offset freshens)
405 {
406   Pool *pool = pd->repo->pool;
407
408   if (pd->nfilelist)
409     {
410       int l;
411       Id did;
412       for (l = 0; l < pd->nfilelist; l += strlen(pd->filelist + l) + 1)
413         {
414           char *p = strrchr(pd->filelist + l, '/');
415           if (!p)
416             continue;
417           *p++ = 0;
418           did = repodata_str2dir(pd->data, pd->filelist + l, 1);
419           p[-1] = '/';
420           if (!did)
421             did = repodata_str2dir(pd->data, "/", 1);
422           repodata_add_dirstr(pd->data, handle, SOLVABLE_FILELIST, did, p);
423         }
424       pd->nfilelist = 0;
425     }
426   /* A self provide, except for source packages.  This is harmless
427      to do twice (in case we see the same package twice).  */
428   if (s->name && s->arch != ARCH_SRC && s->arch != ARCH_NOSRC)
429     s->provides = repo_addid_dep(pd->repo, s->provides,
430                 pool_rel2id(pool, s->name, s->evr, REL_EQ, 1), 0);
431   /* XXX This uses repo_addid_dep internally, so should also be
432      harmless to do twice.  */
433   s->supplements = repo_fix_supplements(pd->repo, s->provides, s->supplements, freshens);
434   s->conflicts = repo_fix_conflicts(pd->repo, s->conflicts);
435   if (pd->ndirs)
436     commit_diskusage(pd, handle);
437 }
438
439 static Hashtable
440 joinhash_init(Repo *repo, Hashmask *hmp)
441 {
442   Hashmask hm = mkmask(repo->nsolvables);
443   Hashtable ht = solv_calloc(hm + 1, sizeof(*ht));
444   Hashval h, hh;
445   Solvable *s;
446   int i;
447
448   FOR_REPO_SOLVABLES(repo, i, s)
449     {
450       hh = HASHCHAIN_START;
451       h = s->name & hm;
452       while (ht[h])
453         h = HASHCHAIN_NEXT(h, hh, hm);
454       ht[h] = i;
455     }
456   *hmp = hm;
457   return ht;
458 }
459
460 static Solvable *
461 joinhash_lookup(Repo *repo, Hashtable ht, Hashmask hm, Id name, Id evr, Id arch, Id start)
462 {
463   Hashval h, hh;
464
465   if (!name || !arch || !evr)
466     return 0;
467   hh = HASHCHAIN_START;
468   h = name & hm;
469   while (ht[h])
470     {
471       Solvable *s = repo->pool->solvables + ht[h];
472       if (ht[h] >= start && s->name == name && s->evr == evr && s->arch == arch)
473         return s;
474       h = HASHCHAIN_NEXT(h, hh, hm);
475     }
476   return 0;
477 }
478
479 static Id
480 lookup_shared_id(Repodata *data, Id p, Id keyname, Id voidid, int uninternalized)
481 {
482   Id r;
483   r = repodata_lookup_type(data, p, keyname);
484   if (r)
485     {
486       if (r == REPOKEY_TYPE_VOID)
487         return voidid;
488       r = repodata_lookup_id(data, p, keyname);
489       if (r)
490         return r;
491     }
492   if (uninternalized)
493     return repodata_lookup_id_uninternalized(data, p, keyname, voidid);
494   return 0;
495 }
496
497 static inline Id
498 toevr(Pool *pool, struct parsedata *pd, const char *version, const char *release)
499 {
500   return makeevr(pool, !release || (release[0] == '-' && !release[1]) ?
501         version : join2(&pd->jd, version, "-", release));
502 }
503
504
505 /*
506  * parse susetags
507  *
508  * fp: file to read from
509  * defvendor: default vendor (0 if none)
510  * language: current language (0 if none)
511  * flags: flags
512  */
513
514 int
515 repo_add_susetags(Repo *repo, FILE *fp, Id defvendor, const char *language, int flags)
516 {
517   Pool *pool = repo->pool;
518   char *line, *linep;
519   int aline;
520   Solvable *s;
521   Offset freshens;
522   int intag = 0;
523   int cummulate = 0;
524   int indesc = 0;
525   int indelta = 0;
526   int last_found_pack = 0;
527   Id first_new_pkg = 0;
528   char *sp[5];
529   struct parsedata pd;
530   Repodata *data = 0;
531   Id handle = 0;
532   Hashtable joinhash = 0;
533   Hashmask joinhashm = 0;
534   int createdpkgs = 0;
535
536   if ((flags & (SUSETAGS_EXTEND|REPO_EXTEND_SOLVABLES)) != 0 && repo->nrepodata)
537     {
538       joinhash = joinhash_init(repo, &joinhashm);
539       indesc = 1;
540     }
541
542   data = repo_add_repodata(repo, flags);
543
544   memset(&pd, 0, sizeof(pd));
545   line = solv_malloc(1024);
546   aline = 1024;
547
548   pd.pool = pool;
549   pd.repo = repo;
550   pd.data = data;
551   pd.flags = flags;
552   pd.language = language && *language ? solv_strdup(language) : 0;
553
554   linep = line;
555   s = 0;
556   freshens = 0;
557
558   /* if this is a join setup the recorded share data */
559   if (joinhash)
560     {
561       Repodata *sdata;
562       int i;
563       
564       FOR_REPODATAS(repo, i, sdata)
565         {
566           int p;
567           if (!repodata_has_keyname(sdata, SUSETAGS_SHARE_NAME))
568             continue;
569           for (p = sdata->start; p < sdata->end; p++)
570             {
571               Id name, evr, arch;
572               name = lookup_shared_id(sdata, p, SUSETAGS_SHARE_NAME, pool->solvables[p].name, sdata == data);
573               if (!name)
574                 continue;
575               evr = lookup_shared_id(sdata, p, SUSETAGS_SHARE_EVR, pool->solvables[p].evr, sdata == data);
576               if (!evr)
577                 continue;
578               arch = lookup_shared_id(sdata, p, SUSETAGS_SHARE_ARCH, pool->solvables[p].arch, sdata == data);
579               if (!arch)
580                 continue;
581               if (p - repo->start >= pd.nshare)
582                 {
583                   pd.share_with = solv_realloc2(pd.share_with, p - repo->start + 256, sizeof(*pd.share_with));
584                   memset(pd.share_with + pd.nshare, 0, (p - repo->start + 256 - pd.nshare) * sizeof(*pd.share_with));
585                   pd.nshare = p - repo->start + 256;
586                 }
587               pd.share_with[p - repo->start].name = name;
588               pd.share_with[p - repo->start].evr = evr;
589               pd.share_with[p - repo->start].arch = arch;
590             }
591         }
592     }
593   
594   /*
595    * read complete file
596    *
597    * collect values in 'struct parsedata pd'
598    * then build .solv (and .attr) file
599    */
600
601   for (;;)
602     {
603       unsigned tag;
604       char *olinep; /* old line pointer */
605       char line_lang[6];
606       int keylen = 3;
607
608       if (pd.ret)
609         break;
610       if (linep - line + 16 > aline)              /* (re-)alloc buffer */
611         {
612           aline = linep - line;
613           line = solv_realloc(line, aline + 512);
614           linep = line + aline;
615           aline += 512;
616         }
617       if (!fgets(linep, aline - (linep - line), fp)) /* read line */
618         break;
619       olinep = linep;
620       linep += strlen(linep);
621       if (linep == line || linep[-1] != '\n')
622         continue;
623       pd.lineno++;
624       *--linep = 0;
625       if (linep == olinep)
626         continue;
627
628       if (intag)
629         {
630           /* check for multi-line value tags (+Key:/-Key:) */
631
632           int is_end = (linep[-intag - keylen + 1] == '-')
633                       && (linep[-1] == ':')
634                       && (linep == line + 1 + intag + 1 + 1 + 1 + intag + 1 || linep[-intag - keylen] == '\n');
635           if (is_end
636               && strncmp(linep - 1 - intag, line + 1, intag))
637             {
638               pool_debug(pool, SOLV_ERROR, "susetags: Nonmatching multi-line tags: %d: '%s' '%s' %d\n", pd.lineno, linep - 1 - intag, line + 1, intag);
639             }
640           if (cummulate && !is_end)
641             {
642               *linep++ = '\n';
643               continue;
644             }
645           if (cummulate && is_end)
646             {
647               linep[-intag - keylen + 1] = 0;
648               if (linep[-intag - keylen] == '\n')
649                 linep[-intag - keylen] = 0;
650               linep = line;
651               intag = 0;
652             }
653           if (!cummulate && is_end)
654             {
655               intag = 0;
656               linep = line;
657               continue;
658             }
659           if (!cummulate && !is_end)
660             linep = line + intag + keylen;
661         }
662       else
663         linep = line;
664
665       if (!intag && line[0] == '+' && line[1] && line[1] != ':') /* start of +Key:/-Key: tag */
666         {
667           char *tagend = strchr(line, ':');
668           if (!tagend)
669             {
670               pd.ret = pool_error(pool, -1, "susetags: line %d: bad line '%s'\n", pd.lineno, line);
671               break;
672             }
673           intag = tagend - (line + 1);
674           cummulate = 0;
675           switch (tag_from_string(line))       /* check if accumulation is needed */
676             {
677               case CTAG('+', 'D', 'e', 's'):
678               case CTAG('+', 'E', 'u', 'l'):
679               case CTAG('+', 'I', 'n', 's'):
680               case CTAG('+', 'D', 'e', 'l'):
681               case CTAG('+', 'A', 'u', 't'):
682                 if (line[4] == ':' || line[4] == '.')
683                   cummulate = 1;
684                 break;
685               default:
686                 break;
687             }
688           line[0] = '=';                       /* handle lines between +Key:/-Key: as =Key: */
689           line[intag + keylen - 1] = ' ';
690           linep = line + intag + keylen;
691           continue;
692         }
693       if (*line == '#' || !*line)
694         continue;
695       if (! (line[0] && line[1] && line[2] && line[3] && (line[4] == ':' || line[4] == '.')))
696         continue;
697       line_lang[0] = 0;
698       if (line[4] == '.')
699         {
700           char *endlang;
701           endlang = strchr(line + 5, ':');
702           if (endlang)
703             {
704               int langsize = endlang - (line + 5);
705               keylen = endlang - line - 1;
706               if (langsize > 5)
707                 langsize = 5;
708               strncpy(line_lang, line + 5, langsize);
709               line_lang[langsize] = 0;
710             }
711         }
712       tag = tag_from_string(line);
713
714       if (indelta)
715         {
716           /* Example:
717             =Dlt: subversion 1.6.16 1.3.1 i586
718             =Dsq: subversion 1.6.15 4.2 i586 d57b3fc86e7a2f73796e8e35b96fa86212c910
719             =Cks: SHA1 14a8410cf741856a5d70d89dab62984dba6a1ca7
720             =Loc: 1 subversion-1.6.15_1.6.16-4.2_1.3.1.i586.delta.rpm
721             =Siz: 81558
722            */
723           switch (tag)
724             {
725             case CTAG('=', 'D', 's', 'q'):
726               {
727                 Id evr;
728                 if (split(line + 5, sp, 5) != 5)
729                   continue;
730                 repodata_set_id(data, handle, DELTA_SEQ_NAME, pool_str2id(pool, sp[0], 1));
731                 evr = toevr(pool, &pd, sp[1], sp[2]);
732                 repodata_set_id(data, handle, DELTA_SEQ_EVR, evr);
733                 /* repodata_set_id(data, handle, DELTA_SEQ_ARCH, pool_str2id(pool, sp[3], 1)); */
734                 repodata_set_str(data, handle, DELTA_SEQ_NUM, sp[4]);
735                 repodata_set_id(data, handle, DELTA_BASE_EVR, evr);
736                 continue;
737               }
738             case CTAG('=', 'C', 'k', 's'):
739               set_checksum(&pd, data, handle, DELTA_CHECKSUM, line + 6);
740               continue;
741             case CTAG('=', 'L', 'o', 'c'):
742               {
743                 int i = split(line + 6, sp, 3);
744                 if (i != 2 && i != 3)
745                   {
746                     pd.ret = pool_error(pool, -1, "susetags: line %d: bad location line '%s'\n", pd.lineno, line);
747                     continue;
748                   }
749                 set_delta_location(data, handle, atoi(sp[0]), i == 3 ? sp[2] : 0, sp[1]);
750                 continue;
751               }
752             case CTAG('=', 'S', 'i', 'z'):
753               if (split(line + 6, sp, 3) == 2)
754                 repodata_set_num(data, handle, DELTA_DOWNLOADSIZE, strtoull(sp[0], 0, 10));
755               continue;
756             case CTAG('=', 'P', 'k', 'g'):
757             case CTAG('=', 'P', 'a', 't'):
758             case CTAG('=', 'D', 'l', 't'):
759               handle = 0;
760               indelta = 0;
761               break;
762             default:
763               pool_debug(pool, SOLV_ERROR, "susetags: unknown line: %d: %s\n", pd.lineno, line);
764               continue;
765             }
766         }
767
768       /*
769        * start of (next) package or pattern or delta
770        *
771        * =Pkg: <name> <version> <release> <architecture>
772        * (=Pat: ...)
773        */
774       if (tag == CTAG('=', 'D', 'l', 't'))
775         {
776           if (s)
777             finish_solvable(&pd, s, handle, freshens);
778           s = 0;
779           pd.kind = 0;
780           if (split(line + 5, sp, 5) != 4)
781             {
782               pd.ret = pool_error(pool, -1, "susetags: line %d: bad line '%s'\n", pd.lineno, line);
783               break;
784             }
785           handle = repodata_new_handle(data);
786           repodata_set_id(data, handle, DELTA_PACKAGE_NAME, pool_str2id(pool, sp[0], 1));
787           repodata_set_id(data, handle, DELTA_PACKAGE_EVR, toevr(pool, &pd, sp[1], sp[2]));
788           repodata_set_id(data, handle, DELTA_PACKAGE_ARCH, pool_str2id(pool, sp[3], 1));
789           repodata_add_flexarray(data, SOLVID_META, REPOSITORY_DELTAINFO, handle);
790           indelta = 1;
791           continue;
792         }
793       if (tag == CTAG('=', 'P', 'k', 'g')
794            || tag == CTAG('=', 'P', 'a', 't'))
795         {
796           /* If we have an old solvable, complete it by filling in some
797              default stuff.  */
798           if (s)
799             finish_solvable(&pd, s, handle, freshens);
800
801           /*
802            * define kind
803            */
804
805           pd.kind = 0;
806           if (line[3] == 't')
807             pd.kind = "pattern";
808
809           /*
810            * parse nevra
811            */
812
813           if (split(line + 5, sp, 5) != 4)
814             {
815               pd.ret = pool_error(pool, -1, "susetags: line %d: bad line '%s'\n", pd.lineno, line);
816               break;
817             }
818           s = 0;
819           freshens = 0;
820
821           if (joinhash)
822             {
823               /* data join operation. find solvable matching name/arch/evr and
824                * add data to it */
825               Id name, evr, arch;
826               /* we don't use the create flag here as a simple pre-check for existance */
827               if (pd.kind)
828                 name = pool_str2id(pool, join2(&pd.jd, pd.kind, ":", sp[0]), 0);
829               else
830                 name = pool_str2id(pool, sp[0], 0);
831               evr = toevr(pool, &pd, sp[1], sp[2]);
832               arch = pool_str2id(pool, sp[3], 0);
833               if (name && arch)
834                 {
835                   Id start = (flags & REPO_EXTEND_SOLVABLES) ? 0 : first_new_pkg;
836                   if (repo->start + last_found_pack + 1 >= start && repo->start + last_found_pack + 1 < repo->end)
837                     {
838                       s = pool->solvables + repo->start + last_found_pack + 1;
839                       if (s->repo != repo || s->name != name || s->evr != evr || s->arch != arch)
840                         s = 0;
841                     }
842                   if (!s)
843                     s = joinhash_lookup(repo, joinhash, joinhashm, name, evr, arch, start);
844                 }
845               /* do not create new packages in EXTEND_SOLVABLES mode */
846               if (!s && (flags & REPO_EXTEND_SOLVABLES) != 0)
847                 continue;
848               /* fallthrough to package creation */
849             }
850           if (!s)
851             {
852               /* normal operation. create a new solvable. */
853               s = pool_id2solvable(pool, repo_add_solvable(repo));
854               if (pd.kind)
855                 s->name = pool_str2id(pool, join2(&pd.jd, pd.kind, ":", sp[0]), 1);
856               else
857                 s->name = pool_str2id(pool, sp[0], 1);
858               s->evr = toevr(pool, &pd, sp[1], sp[2]);
859               s->arch = pool_str2id(pool, sp[3], 1);
860               s->vendor = defvendor;
861               if (!first_new_pkg)
862                 first_new_pkg = s - pool->solvables;
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                   pd.ret = pool_error(pool, -1, "susetags: line %d: bad location line '%s'\n", pd.lineno, line);
986                   continue;
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, strtoull(sp[0], 0, 10));
998                 repodata_set_num(data, handle, SOLVABLE_INSTALLSIZE, strtoull(sp[1], 0, 10));
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               int 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                   pd.ret = pool_error(pool, -1, "susetags: line %d: bad =Shr line '%s'\n", pd.lineno, line);
1044                   continue;
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_WARN, "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 int 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   repodata_free_dircache(data);
1212   if (!(flags & REPO_NO_INTERNALIZE))
1213     repodata_internalize(data);
1214
1215   solv_free(pd.language);
1216   solv_free(line);
1217   join_freemem(&pd.jd);
1218   return pd.ret;
1219 }