free tmp repodata when repo_solv returns an error
[platform/upstream/libsolv.git] / src / repo_solv.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 /*
9  * repo_solv.c
10  * 
11  * Add a repo in solv format
12  * 
13  */
14
15
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <unistd.h>
20 #include <string.h>
21
22 #include "repo_solv.h"
23 #include "util.h"
24
25 #include "repopack.h"
26 #include "repopage.h"
27
28 #include "poolid_private.h"     /* WHATPROVIDES_BLOCK */
29
30 #define INTERESTED_START        SOLVABLE_NAME
31 #define INTERESTED_END          SOLVABLE_ENHANCES
32
33 #define SOLV_ERROR_NOT_SOLV     1
34 #define SOLV_ERROR_UNSUPPORTED  2
35 #define SOLV_ERROR_EOF          3
36 #define SOLV_ERROR_ID_RANGE     4
37 #define SOLV_ERROR_OVERFLOW     5
38 #define SOLV_ERROR_CORRUPT      6
39
40
41
42 /*******************************************************************************
43  * functions to extract data from a file handle
44  */
45
46 /*
47  * read u32
48  */
49
50 static unsigned int
51 read_u32(Repodata *data)
52 {
53   int c, i;
54   unsigned int x = 0;
55
56   if (data->error)
57     return 0;
58   for (i = 0; i < 4; i++)
59     {
60       c = getc(data->fp);
61       if (c == EOF)
62         {
63           data->error = pool_error(data->repo->pool, SOLV_ERROR_EOF, "unexpected EOF");
64           return 0;
65         }
66       x = (x << 8) | c;
67     }
68   return x;
69 }
70
71
72 /*
73  * read u8
74  */
75
76 static unsigned int
77 read_u8(Repodata *data)
78 {
79   int c;
80
81   if (data->error)
82     return 0;
83   c = getc(data->fp);
84   if (c == EOF)
85     {
86       data->error = pool_error(data->repo->pool, SOLV_ERROR_EOF, "unexpected EOF");
87       return 0;
88     }
89   return c;
90 }
91
92
93 /*
94  * read Id
95  */
96
97 static Id
98 read_id(Repodata *data, Id max)
99 {
100   unsigned int x = 0;
101   int c, i;
102
103   if (data->error)
104     return 0;
105   for (i = 0; i < 5; i++)
106     {
107       c = getc(data->fp);
108       if (c == EOF)
109         {
110           data->error = pool_error(data->repo->pool, SOLV_ERROR_EOF, "unexpected EOF");
111           return 0;
112         }
113       if (!(c & 128))
114         {
115           x = (x << 7) | c;
116           if (max && x >= max)
117             {
118               data->error = pool_error(data->repo->pool, SOLV_ERROR_ID_RANGE, "read_id: id too large (%u/%u)", x, max);
119               return 0;
120             }
121           return x;
122         }
123       x = (x << 7) ^ c ^ 128;
124     }
125   data->error = pool_error(data->repo->pool, SOLV_ERROR_CORRUPT, "read_id: id too long");
126   return 0;
127 }
128
129
130 static Id *
131 read_idarray(Repodata *data, Id max, Id *map, Id *store, Id *end)
132 {
133   unsigned int x = 0;
134   int c;
135
136   if (data->error)
137     return 0;
138   for (;;)
139     {
140       c = getc(data->fp);
141       if (c == EOF)
142         {
143           data->error = pool_error(data->repo->pool, SOLV_ERROR_EOF, "unexpected EOF");
144           return 0;
145         }
146       if ((c & 128) != 0)
147         {
148           x = (x << 7) ^ c ^ 128;
149           continue;
150         }
151       x = (x << 6) | (c & 63);
152       if (max && x >= max)
153         {
154           data->error = pool_error(data->repo->pool, SOLV_ERROR_ID_RANGE, "read_idarray: id too large (%u/%u)", x, max);
155           return 0;
156         }
157       if (map)
158         x = map[x];
159       if (store == end)
160         {
161           data->error = pool_error(data->repo->pool, SOLV_ERROR_OVERFLOW, "read_idarray: array overflow");
162           return 0;
163         }
164       *store++ = x;
165       if ((c & 64) == 0)
166         {
167           if (x == 0)   /* already have trailing zero? */
168             return store;
169           if (store == end)
170             {
171               data->error = pool_error(data->repo->pool, SOLV_ERROR_OVERFLOW, "read_idarray: array overflow");
172               return 0;
173             }
174           *store++ = 0;
175           return store;
176         }
177       x = 0;
178     }
179 }
180
181
182 /*******************************************************************************
183  * functions to extract data from memory
184  */
185
186 /*
187  * read array of Ids
188  */
189
190 static inline unsigned char *
191 data_read_id_max(unsigned char *dp, Id *ret, Id *map, int max, Repodata *data)
192 {
193   Id x;
194   dp = data_read_id(dp, &x);
195   if (x < 0 || (max && x >= max))
196     {
197       data->error = pool_error(data->repo->pool, SOLV_ERROR_ID_RANGE, "data_read_id_max: id too large (%u/%u)", x, max);
198       x = 0;
199     }
200   *ret = map ? map[x] : x;
201   return dp;
202 }
203
204 static unsigned char *
205 data_read_idarray(unsigned char *dp, Id **storep, Id *map, int max, Repodata *data)
206 {
207   Id *store = *storep;
208   unsigned int x = 0;
209   int c;
210
211   for (;;)
212     {
213       c = *dp++;
214       if ((c & 128) != 0)
215         {
216           x = (x << 7) ^ c ^ 128;
217           continue;
218         }
219       x = (x << 6) | (c & 63);
220       if (max && x >= max)
221         {
222           data->error = pool_error(data->repo->pool, SOLV_ERROR_ID_RANGE, "data_read_idarray: id too large (%u/%u)", x, max);
223           data->error = SOLV_ERROR_ID_RANGE;
224           break;
225         }
226       *store++ = x;
227       if ((c & 64) == 0)
228         break;
229       x = 0;
230     }
231   *store++ = 0;
232   *storep = store;
233   return dp;
234 }
235
236 static unsigned char *
237 data_read_rel_idarray(unsigned char *dp, Id **storep, Id *map, int max, Repodata *data, Id marker)
238 {
239   Id *store = *storep;
240   Id old = 0;
241   unsigned int x = 0;
242   int c;
243
244   for (;;)
245     {
246       c = *dp++;
247       if ((c & 128) != 0)
248         {
249           x = (x << 7) ^ c ^ 128;
250           continue;
251         }
252       x = (x << 6) | (c & 63);
253       if (x == 0)
254         {
255           if (!(c & 64))
256             break;
257           if (marker)
258             *store++ = marker;
259           old = 0;
260           continue;
261         }
262       x = old + (x - 1);
263       old = x;
264       if (max && x >= max)
265         {
266           data->error = pool_error(data->repo->pool, SOLV_ERROR_ID_RANGE, "data_read_rel_idarray: id too large (%u/%u)", x, max);
267           break;
268         }
269       *store++ = map ? map[x] : x;
270       if (!(c & 64))
271         break;
272       x = 0;
273     }
274   *store++ = 0;
275   *storep = store;
276   return dp;
277 }
278
279
280
281
282 /*******************************************************************************
283  * functions to add data to our incore memory space
284  */
285
286 #define INCORE_ADD_CHUNK 8192
287 #define DATA_READ_CHUNK 8192
288
289 static void
290 incore_add_id(Repodata *data, Id sx)
291 {
292   unsigned int x = (unsigned int)sx;
293   unsigned char *dp;
294   /* make sure we have at least 5 bytes free */
295   if (data->incoredatafree < 5)
296     {
297       data->incoredata = solv_realloc(data->incoredata, data->incoredatalen + INCORE_ADD_CHUNK);
298       data->incoredatafree = INCORE_ADD_CHUNK;
299     }
300   dp = data->incoredata + data->incoredatalen;
301   if (x >= (1 << 14))
302     {
303       if (x >= (1 << 28))
304         *dp++ = (x >> 28) | 128;
305       if (x >= (1 << 21))
306         *dp++ = (x >> 21) | 128;
307       *dp++ = (x >> 14) | 128;
308     }
309   if (x >= (1 << 7))
310     *dp++ = (x >> 7) | 128;
311   *dp++ = x & 127;
312   data->incoredatafree -= dp - (data->incoredata + data->incoredatalen);
313   data->incoredatalen = dp - data->incoredata;
314 }
315
316 static void
317 incore_add_sizek(Repodata *data, unsigned int sx)
318 {
319   if (sx < (1 << 22))
320     incore_add_id(data, (Id)(sx << 10));
321   else
322     {
323       if ((sx >> 25) != 0)
324         {
325           incore_add_id(data, (Id)(sx >> 25));
326           data->incoredata[data->incoredatalen - 1] |= 128;
327         }
328       incore_add_id(data, (Id)((sx << 10) | 0x80000000));
329       data->incoredata[data->incoredatalen - 5] = (sx >> 18) | 128;
330     }
331 }
332
333 static void
334 incore_add_ideof(Repodata *data, Id sx, int eof)
335 {
336   unsigned int x = (unsigned int)sx;
337   unsigned char *dp;
338   /* make sure we have at least 5 bytes free */
339   if (data->incoredatafree < 5)
340     {
341       data->incoredata = solv_realloc(data->incoredata, data->incoredatalen + INCORE_ADD_CHUNK);
342       data->incoredatafree = INCORE_ADD_CHUNK;
343     }
344   dp = data->incoredata + data->incoredatalen;
345   if (x >= (1 << 13))
346     {
347       if (x >= (1 << 27))
348         *dp++ = (x >> 27) | 128;
349       if (x >= (1 << 20))
350         *dp++ = (x >> 20) | 128;
351       *dp++ = (x >> 13) | 128;
352     }
353   if (x >= (1 << 6))
354     *dp++ = (x >> 6) | 128;
355   *dp++ = eof ? (x & 63) : (x & 63) | 64;
356   data->incoredatafree -= dp - (data->incoredata + data->incoredatalen);
357   data->incoredatalen = dp - data->incoredata;
358 }
359
360 static void
361 incore_add_blob(Repodata *data, unsigned char *buf, int len)
362 {
363   if (data->incoredatafree < len)
364     {
365       data->incoredata = solv_realloc(data->incoredata, data->incoredatalen + INCORE_ADD_CHUNK + len);
366       data->incoredatafree = INCORE_ADD_CHUNK + len;
367     }
368   memcpy(data->incoredata + data->incoredatalen, buf, len);
369   data->incoredatafree -= len;
370   data->incoredatalen += len;
371 }
372
373 static void
374 incore_map_idarray(Repodata *data, unsigned char *dp, Id *map, Id max)
375 {
376   /* We have to map the IDs, which might also change
377      the necessary number of bytes, so we can't just copy
378      over the blob and adjust it.  */
379   for (;;)
380     {
381       Id id;
382       int eof;
383       dp = data_read_ideof(dp, &id, &eof);
384       if (id < 0 || (max && id >= max))
385         {
386           data->error = pool_error(data->repo->pool, SOLV_ERROR_ID_RANGE, "incore_map_idarray: id too large (%u/%u)", id, max);
387           break;
388         }
389       id = map[id];
390       incore_add_ideof(data, id, eof);
391       if (eof)
392         break;
393     }
394 }
395
396 #if 0
397 static void
398 incore_add_u32(Repodata *data, unsigned int x)
399 {
400   unsigned char *dp;
401   /* make sure we have at least 4 bytes free */
402   if (data->incoredatafree < 4)
403     {
404       data->incoredata = solv_realloc(data->incoredata, data->incoredatalen + INCORE_ADD_CHUNK);
405       data->incoredatafree = INCORE_ADD_CHUNK;
406     }
407   dp = data->incoredata + data->incoredatalen;
408   *dp++ = x >> 24;
409   *dp++ = x >> 16;
410   *dp++ = x >> 8;
411   *dp++ = x;
412   data->incoredatafree -= 4;
413   data->incoredatalen += 4;
414 }
415
416 static void
417 incore_add_u8(Repodata *data, unsigned int x)
418 {
419   unsigned char *dp;
420   /* make sure we have at least 1 byte free */
421   if (data->incoredatafree < 1)
422     {
423       data->incoredata = solv_realloc(data->incoredata, data->incoredatalen + 1024);
424       data->incoredatafree = 1024;
425     }
426   dp = data->incoredata + data->incoredatalen;
427   *dp++ = x;
428   data->incoredatafree--;
429   data->incoredatalen++;
430 }
431 #endif
432
433
434 /*******************************************************************************
435  * our main function
436  */
437
438 /*
439  * read repo from .solv file and add it to pool
440  */
441
442 int
443 repo_add_solv(Repo *repo, FILE *fp, int flags)
444 {
445   Pool *pool = repo->pool;
446   int i, l;
447   unsigned int numid, numrel, numdir, numsolv;
448   unsigned int numkeys, numschemata;
449
450   Offset sizeid;
451   Offset *str;                         /* map Id -> Offset into string space */
452   char *strsp;                         /* repo string space */
453   char *sp;                            /* pointer into string space */
454   Id *idmap;                           /* map of repo Ids to pool Ids */
455   Id id, type;
456   unsigned int hashmask, h;
457   int hh;
458   Id *hashtbl;
459   Id name, evr, did;
460   int relflags;
461   Reldep *ran;
462   unsigned int size_idarray;
463   Id *idarraydatap, *idarraydataend;
464   Offset ido;
465   Solvable *s;
466   unsigned int solvflags;
467   unsigned int solvversion;
468   Repokey *keys;
469   Id *schemadata, *schemadatap, *schemadataend;
470   Id *schemata, key, *keyp;
471   int nentries;
472   int have_incoredata;
473   int maxsize, allsize;
474   unsigned char *buf, *bufend, *dp, *dps;
475   Id stack[3 * 5];
476   int keydepth;
477   int needchunk;        /* need a new chunk of data */
478   unsigned int now;
479   int oldnstrings = pool->ss.nstrings;
480   int oldnrels = pool->nrels;
481
482   struct _Stringpool *spool;
483
484   Repodata *parent = 0;
485   Repodata data;
486
487   int extendstart = 0, extendend = 0;   /* set in case we're extending */
488
489   now = solv_timems(0);
490
491   if ((flags & REPO_USE_LOADING) != 0)
492     {
493       /* this is a stub replace operation */
494       flags |= REPO_EXTEND_SOLVABLES;
495       /* use REPO_REUSE_REPODATA hack so that the old repodata is kept */
496       parent = repo_add_repodata(repo, flags | REPO_REUSE_REPODATA);
497       extendstart = parent->start;
498       extendend = parent->end;
499     }
500   else if (flags & REPO_EXTEND_SOLVABLES)
501     {
502       /* extend all solvables of this repo */
503       extendstart = repo->start;
504       extendend = repo->end;
505     }
506     
507   memset(&data, 0, sizeof(data));
508   data.repo = repo;
509   data.fp = fp;
510   repopagestore_init(&data.store);
511
512   if (read_u32(&data) != ('S' << 24 | 'O' << 16 | 'L' << 8 | 'V'))
513      return pool_error(pool, SOLV_ERROR_NOT_SOLV, "not a SOLV file");
514   solvversion = read_u32(&data);
515   switch (solvversion)
516     {
517       case SOLV_VERSION_8:
518         break;
519       default:
520         return pool_error(pool, SOLV_ERROR_UNSUPPORTED, "unsupported SOLV version");
521     }
522
523   numid = read_u32(&data);
524   numrel = read_u32(&data);
525   numdir = read_u32(&data);
526   numsolv = read_u32(&data);
527   numkeys = read_u32(&data);
528   numschemata = read_u32(&data);
529   solvflags = read_u32(&data);
530
531   if (numdir && numdir < 2)
532     return pool_error(pool, SOLV_ERROR_CORRUPT, "bad number of dirs");
533
534   if (numrel && (flags & REPO_LOCALPOOL) != 0)
535     return pool_error(pool, SOLV_ERROR_CORRUPT, "relations are forbidden in a local pool");
536   if ((flags & REPO_EXTEND_SOLVABLES) && numsolv)
537     {
538       /* make sure that we exactly replace the stub repodata */
539       if (extendend - extendstart != numsolv)
540         return pool_error(pool, SOLV_ERROR_CORRUPT, "sub-repository solvable number does not match main repository (%d - %d)", extendend - extendstart, numsolv);
541       for (i = 0; i < numsolv; i++)
542         if (pool->solvables[extendstart + i].repo != repo)
543           return pool_error(pool, SOLV_ERROR_CORRUPT, "main repository contains holes, cannot extend");
544     }
545
546   /*******  Part 1: string IDs  *****************************************/
547
548   sizeid = read_u32(&data);            /* size of string space */
549
550   /*
551    * read strings and Ids
552    * 
553    */
554
555   
556   /*
557    * alloc buffers
558    */
559
560   if (!(flags & REPO_LOCALPOOL))
561     {
562       spool = &pool->ss;
563       /* alloc max needed string buffer and string pointers, will shrink again later */
564 #if 0
565       spool->stringspace = solv_realloc(spool->stringspace, spool->sstrings + sizeid + 1); 
566       spool->strings = solv_realloc2(spool->strings, spool->nstrings + numid, sizeof(Offset));
567 #else
568       spool->sstrings += sizeid + 1;
569       spool->nstrings += numid;
570       stringpool_shrink(spool);         /* we misuse stringpool_shrink so that the correct BLOCK factor is used */
571       spool->sstrings -= sizeid + 1;
572       spool->nstrings -= numid;
573 #endif
574     }
575   else
576     {
577       data.localpool = 1;
578       spool = &data.spool;
579       spool->stringspace = solv_malloc(7 + sizeid + 1); 
580       spool->strings = solv_malloc2(numid < 2 ?  2 : numid, sizeof(Offset));
581       strcpy(spool->stringspace, "<NULL>");
582       spool->sstrings = 7;
583       spool->nstrings = 1;
584       spool->strings[0] = 0;    /* <NULL> */
585     }
586
587
588   /*
589    * read string data and append to old string space
590    */
591   
592   strsp = spool->stringspace + spool->sstrings; /* append new entries */
593   if ((solvflags & SOLV_FLAG_PREFIX_POOL) == 0)
594     {
595       if (sizeid && fread(strsp, sizeid, 1, fp) != 1)
596         {
597           repodata_freedata(&data);
598           return pool_error(pool, SOLV_ERROR_EOF, "read error while reading strings");
599         }
600     }
601   else
602     {
603       unsigned int pfsize = read_u32(&data);
604       char *prefix = solv_malloc(pfsize);
605       char *pp = prefix;
606       char *old_str = 0;
607       char *dest = strsp;
608       int freesp = sizeid;
609
610       if (pfsize && fread(prefix, pfsize, 1, fp) != 1)
611         {
612           solv_free(prefix);
613           repodata_freedata(&data);
614           return pool_error(pool, SOLV_ERROR_EOF, "read error while reading strings");
615         }
616       for (i = 1; i < numid; i++)
617         {
618           int same = (unsigned char)*pp++;
619           size_t len = strlen(pp) + 1;
620           freesp -= same + len;
621           if (freesp < 0)
622             {
623               solv_free(prefix);
624               repodata_freedata(&data);
625               return pool_error(pool, SOLV_ERROR_OVERFLOW, "overflow while expanding strings");
626             }
627           if (same)
628             memcpy(dest, old_str, same);
629           memcpy(dest + same, pp, len);
630           pp += len;
631           old_str = dest;
632           dest += same + len;
633         }
634       solv_free(prefix);
635       if (freesp != 0)
636         {
637           repodata_freedata(&data);
638           return pool_error(pool, SOLV_ERROR_CORRUPT, "expanding strings size mismatch");
639         }
640     }
641   strsp[sizeid] = 0;                   /* make string space \0 terminated */
642   sp = strsp;
643
644   /* now merge */
645   str = spool->strings;                 /* array of offsets into strsp, indexed by Id */
646   if ((flags & REPO_LOCALPOOL) != 0)
647     {
648       /* no shared pool, thus no idmap and no unification needed */
649       idmap = 0;
650       spool->nstrings = numid < 2 ? 2 : numid;  /* make sure we have at least id 0 and 1 */
651       if (*sp)
652         {
653           /* we need id 1 to be '' for directories */
654           repodata_freedata(&data);
655           return pool_error(pool, SOLV_ERROR_CORRUPT, "store strings don't start with an empty string");
656         }
657       for (i = 1; i < spool->nstrings; i++)
658         {
659           if (sp >= strsp + sizeid && numid >= 2)
660             {
661               repodata_freedata(&data);
662               return pool_error(pool, SOLV_ERROR_OVERFLOW, "not enough strings");
663             }
664           str[i] = sp - spool->stringspace;
665           sp += strlen(sp) + 1;
666         }
667       spool->sstrings = sp - spool->stringspace;
668     }
669   else
670     {
671       Offset oldsstrings = spool->sstrings;
672
673       /* alloc id map for name and rel Ids. this maps ids in the solv files
674        * to the ids in our pool */
675       idmap = solv_calloc(numid + numrel, sizeof(Id));
676
677       /* grow hash if needed, otherwise reuse */
678       hashmask = mkmask(spool->nstrings + numid);
679 #if 0
680       POOL_DEBUG(SOLV_DEBUG_STATS, "read %d strings\n", numid);
681       POOL_DEBUG(SOLV_DEBUG_STATS, "string hash buckets: %d, old %d\n", hashmask + 1, spool->stringhashmask + 1);
682 #endif
683       if (hashmask > spool->stringhashmask)
684         {
685           spool->stringhashtbl = solv_free(spool->stringhashtbl);
686           spool->stringhashmask = hashmask;
687           spool->stringhashtbl = hashtbl = solv_calloc(hashmask + 1, sizeof(Id));
688           for (i = 1; i < spool->nstrings; i++)
689             {
690               h = strhash(spool->stringspace + spool->strings[i]) & hashmask;
691               hh = HASHCHAIN_START;
692               while (hashtbl[h])
693                 h = HASHCHAIN_NEXT(h, hh, hashmask);
694               hashtbl[h] = i;
695             }
696         }
697       else
698         {
699           hashtbl = spool->stringhashtbl;
700           hashmask = spool->stringhashmask;
701         }
702
703       /*
704        * run over strings and merge with pool.
705        * also populate id map (maps solv Id -> pool Id)
706        */
707       for (i = 1; i < numid; i++)
708         {
709           if (sp >= strsp + sizeid)
710             {
711               solv_free(idmap);
712               spool->nstrings = oldnstrings;
713               spool->sstrings = oldsstrings;
714               stringpool_freehash(spool);
715               repodata_freedata(&data);
716               return pool_error(pool, SOLV_ERROR_OVERFLOW, "not enough strings %d %d", i, numid);
717             }
718           if (!*sp)                            /* empty string */
719             {
720               idmap[i] = ID_EMPTY;
721               sp++;
722               continue;
723             }
724
725           /* find hash slot */
726           h = strhash(sp) & hashmask;
727           hh = HASHCHAIN_START;
728           for (;;)
729             {
730               id = hashtbl[h];
731               if (!id)
732                 break;
733               if (!strcmp(spool->stringspace + spool->strings[id], sp))
734                 break;          /* already in pool */
735               h = HASHCHAIN_NEXT(h, hh, hashmask);
736             }
737
738           /* length == offset to next string */
739           l = strlen(sp) + 1;
740           if (!id)             /* end of hash chain -> new string */
741             {
742               id = spool->nstrings++;
743               hashtbl[h] = id;
744               str[id] = spool->sstrings;        /* save offset */
745               if (sp != spool->stringspace + spool->sstrings)
746                 memmove(spool->stringspace + spool->sstrings, sp, l);
747               spool->sstrings += l;
748             }
749           idmap[i] = id;       /* repo relative -> pool relative */
750           sp += l;             /* next string */
751         }
752       if (hashmask > mkmask(spool->nstrings + 8192))
753         {
754           spool->stringhashtbl = solv_free(spool->stringhashtbl);
755           spool->stringhashmask = 0;
756         }
757       stringpool_shrink(spool);         /* vacuum */
758     }
759
760   
761   /*******  Part 2: Relation IDs  ***************************************/
762
763   /*
764    * read RelDeps
765    * 
766    */
767   
768   if (numrel)
769     {
770       /* extend rels */
771       pool->rels = solv_realloc2(pool->rels, pool->nrels + numrel, sizeof(Reldep));
772       ran = pool->rels;
773
774       /* grow hash if needed, otherwise reuse */
775       hashmask = mkmask(pool->nrels + numrel);
776 #if 0
777       POOL_DEBUG(SOLV_DEBUG_STATS, "read %d rels\n", numrel);
778       POOL_DEBUG(SOLV_DEBUG_STATS, "rel hash buckets: %d, old %d\n", hashmask + 1, pool->relhashmask + 1);
779 #endif
780       if (hashmask > pool->relhashmask)
781         {
782           pool->relhashtbl = solv_free(pool->relhashtbl);
783           pool->relhashmask = hashmask;
784           pool->relhashtbl = hashtbl = solv_calloc(hashmask + 1, sizeof(Id));
785           for (i = 1; i < pool->nrels; i++)
786             {
787               h = relhash(ran[i].name, ran[i].evr, ran[i].flags) & hashmask;
788               hh = HASHCHAIN_START;
789               while (hashtbl[h])
790                 h = HASHCHAIN_NEXT(h, hh, hashmask);
791               hashtbl[h] = i;
792             }
793         }
794       else
795         {
796           hashtbl = pool->relhashtbl;
797           hashmask = pool->relhashmask;
798         }
799
800       /*
801        * read RelDeps from repo
802        */
803       for (i = 0; i < numrel; i++)
804         {
805           name = read_id(&data, i + numid);     /* read (repo relative) Ids */
806           evr = read_id(&data, i + numid);
807           relflags = read_u8(&data);
808           name = idmap[name];           /* map to (pool relative) Ids */
809           evr = idmap[evr];
810           h = relhash(name, evr, relflags) & hashmask;
811           hh = HASHCHAIN_START;
812           for (;;)
813             {
814               id = hashtbl[h];
815               if (!id)          /* end of hash chain reached */
816                 break;
817               if (ran[id].name == name && ran[id].evr == evr && ran[id].flags == relflags)
818                 break;
819               h = HASHCHAIN_NEXT(h, hh, hashmask);
820             }
821           if (!id)              /* new RelDep */
822             {
823               id = pool->nrels++;
824               hashtbl[h] = id;
825               ran[id].name = name;
826               ran[id].evr = evr;
827               ran[id].flags = relflags;
828             }
829           idmap[i + numid] = MAKERELDEP(id);   /* fill Id map */
830         }
831       if (hashmask > mkmask(pool->nrels + 4096))
832         {
833           pool->relhashtbl = solv_free(pool->relhashtbl);
834           pool->relhashmask = 0;
835         }
836       pool_shrink_rels(pool);           /* vacuum */
837     }
838
839   /* if we added ids/rels, make room in our whatprovide arrays */
840   if (!(flags & REPO_LOCALPOOL))
841     {
842       if (pool->whatprovides && oldnstrings != pool->ss.nstrings)
843         {
844           int newlen = (pool->ss.nstrings + WHATPROVIDES_BLOCK) & ~WHATPROVIDES_BLOCK;
845           pool->whatprovides = solv_realloc2(pool->whatprovides, newlen, sizeof(Offset));
846           memset(pool->whatprovides + oldnstrings, 0, (newlen - oldnstrings) * sizeof(Offset));
847         }
848       if (pool->whatprovides_rel && oldnrels != pool->nrels)
849         {
850           int newlen = (pool->nrels + WHATPROVIDES_BLOCK) & ~WHATPROVIDES_BLOCK;
851           pool->whatprovides_rel = solv_realloc2(pool->whatprovides_rel, newlen, sizeof(Offset));
852           memset(pool->whatprovides_rel + oldnrels, 0, (newlen - oldnrels) * sizeof(Offset));
853         }
854     }
855
856   /*******  Part 3: Dirs  ***********************************************/
857   if (numdir)
858     {
859       data.dirpool.dirs = solv_malloc2(numdir, sizeof(Id));
860       data.dirpool.ndirs = numdir;
861       data.dirpool.dirs[0] = 0;         /* dir 0: virtual root */
862       data.dirpool.dirs[1] = 1;         /* dir 1: / */
863       for (i = 2; i < numdir; i++)
864         {
865           id = read_id(&data, i + numid);
866           if (id >= numid)
867             data.dirpool.dirs[i] = -(id - numid);
868           else if (idmap)
869             data.dirpool.dirs[i] = idmap[id];
870           else
871             data.dirpool.dirs[i] = id;
872         }
873     }
874
875   /*******  Part 4: Keys  ***********************************************/
876
877   keys = solv_calloc(numkeys, sizeof(*keys));
878   /* keys start at 1 */
879   for (i = 1; i < numkeys; i++)
880     {
881       id = read_id(&data, numid);
882       if (idmap)
883         id = idmap[id];
884       else if ((flags & REPO_LOCALPOOL) != 0)
885         id = pool_str2id(pool, stringpool_id2str(spool, id), 1);
886       type = read_id(&data, numid);
887       if (idmap)
888         type = idmap[type];
889       else if ((flags & REPO_LOCALPOOL) != 0)
890         type = pool_str2id(pool, stringpool_id2str(spool, type), 1);
891       if (type < REPOKEY_TYPE_VOID || type > REPOKEY_TYPE_FLEXARRAY)
892         {
893           data.error = pool_error(pool, SOLV_ERROR_UNSUPPORTED, "unsupported data type '%s'", pool_id2str(pool, type));
894           type = REPOKEY_TYPE_VOID;
895         }
896       keys[i].name = id;
897       keys[i].type = type;
898       keys[i].size = read_id(&data, keys[i].type == REPOKEY_TYPE_CONSTANTID ? numid + numrel : 0);
899       keys[i].storage = read_id(&data, 0);
900       /* old versions used SOLVABLE for main solvable data */
901       if (keys[i].storage == KEY_STORAGE_SOLVABLE)
902         keys[i].storage = KEY_STORAGE_INCORE;
903       if (keys[i].storage != KEY_STORAGE_INCORE && keys[i].storage != KEY_STORAGE_VERTICAL_OFFSET)
904         data.error = pool_error(pool, SOLV_ERROR_UNSUPPORTED, "unsupported storage type %d", keys[i].storage);
905       if (id >= SOLVABLE_NAME && id <= RPM_RPMDBID)
906         {
907           if (keys[i].storage != KEY_STORAGE_INCORE)
908             data.error = pool_error(pool, SOLV_ERROR_UNSUPPORTED, "main solvable data must use incore storage %d", keys[i].storage);
909           keys[i].storage = KEY_STORAGE_SOLVABLE;
910         }
911       /* cannot handle rel idarrays in incore/vertical */
912       if (type == REPOKEY_TYPE_REL_IDARRAY && keys[i].storage != KEY_STORAGE_SOLVABLE)
913         data.error = pool_error(pool, SOLV_ERROR_UNSUPPORTED, "type REL_IDARRAY is only supported for STORAGE_SOLVABLE");
914       /* cannot handle mapped ids in vertical */
915       if (!(flags & REPO_LOCALPOOL) && keys[i].storage == KEY_STORAGE_VERTICAL_OFFSET && (type == REPOKEY_TYPE_ID || type == REPOKEY_TYPE_IDARRAY))
916         data.error = pool_error(pool, SOLV_ERROR_UNSUPPORTED, "mapped ids are not supported for STORAGE_VERTICAL_OFFSET");
917  
918       if (keys[i].type == REPOKEY_TYPE_CONSTANTID && idmap)
919         keys[i].size = idmap[keys[i].size];
920 #if 0
921       fprintf(stderr, "key %d %s %s %d %d\n", i, pool_id2str(pool,id), pool_id2str(pool, keys[i].type),
922                keys[i].size, keys[i].storage);
923 #endif
924     }
925
926   have_incoredata = 0;
927   for (i = 1; i < numkeys; i++)
928     if (keys[i].storage == KEY_STORAGE_INCORE || keys[i].storage == KEY_STORAGE_VERTICAL_OFFSET)
929       have_incoredata = 1;
930
931   data.keys = keys;
932   data.nkeys = numkeys;
933   for (i = 1; i < numkeys; i++)
934     {
935       id = keys[i].name;
936       data.keybits[(id >> 3) & (sizeof(data.keybits) - 1)] |= 1 << (id & 7);
937     }
938
939   /*******  Part 5: Schemata ********************************************/
940   
941   id = read_id(&data, 0);
942   schemadata = solv_calloc(id + 1, sizeof(Id));
943   schemadatap = schemadata + 1;
944   schemadataend = schemadatap + id;
945   schemata = solv_calloc(numschemata, sizeof(Id));
946   for (i = 1; i < numschemata; i++)
947     {
948       schemata[i] = schemadatap - schemadata;
949       schemadatap = read_idarray(&data, numid, 0, schemadatap, schemadataend);
950 #if 0
951       Id *sp = schemadata + schemata[i];
952       fprintf(stderr, "schema %d:", i);
953       for (; *sp; sp++)
954         fprintf(stderr, " %d", *sp);
955       fprintf(stderr, "\n");
956 #endif
957     }
958   data.schemata = schemata;
959   data.nschemata = numschemata;
960   data.schemadata = schemadata;
961   data.schemadatalen = schemadataend - data.schemadata;
962
963   /*******  Part 6: Data ********************************************/
964
965   idarraydatap = idarraydataend = 0;
966   size_idarray = 0;
967
968   maxsize = read_id(&data, 0);
969   allsize = read_id(&data, 0);
970   maxsize += 5; /* so we can read the next schema of an array */
971   if (maxsize > allsize)
972     maxsize = allsize;
973
974   buf = solv_calloc(maxsize + DATA_READ_CHUNK + 4, 1);  /* 4 extra bytes to detect overflows */
975   bufend = buf;
976   dp = buf;
977
978   l = maxsize;
979   if (l < DATA_READ_CHUNK)
980     l = DATA_READ_CHUNK;
981   if (l > allsize)
982     l = allsize;
983   if (!l || fread(buf, l, 1, data.fp) != 1)
984     {
985       data.error = pool_error(pool, SOLV_ERROR_EOF, "unexpected EOF");
986       id = 0;
987     }
988   else
989     {
990       bufend = buf + l;
991       allsize -= l;
992       dp = data_read_id_max(dp, &id, 0, numschemata, &data);
993     }
994
995   incore_add_id(&data, 0);      /* so that incoreoffset 0 means schema 0 */
996   incore_add_id(&data, id);     /* main schema id */
997   keyp = schemadata + schemata[id];
998   data.mainschema = id;
999   for (i = 0; keyp[i]; i++)
1000     ;
1001   if (i)
1002     data.mainschemaoffsets = solv_calloc(i, sizeof(Id));
1003
1004   nentries = 0;
1005   keydepth = 0;
1006   s = 0;
1007   needchunk = 1;
1008   for(;;)
1009     {
1010       /* make sure we have enough room */
1011       if (keydepth == 0 || needchunk)
1012         {
1013           int left = bufend - dp;
1014           /* read data chunk to dp */
1015           if (data.error)
1016             break;
1017           if (left < 0)
1018             {
1019               data.error = pool_error(pool, SOLV_ERROR_EOF, "buffer overrun");
1020               break;
1021             }
1022           if (left < maxsize)
1023             {
1024               if (left)
1025                 memmove(buf, dp, left);
1026               l = maxsize - left;
1027               if (l < DATA_READ_CHUNK)
1028                 l = DATA_READ_CHUNK;
1029               if (l > allsize)
1030                 l = allsize;
1031               if (l && fread(buf + left, l, 1, data.fp) != 1)
1032                 {
1033                   data.error = pool_error(pool, SOLV_ERROR_EOF, "unexpected EOF");
1034                   break;
1035                 }
1036               allsize -= l;
1037               left += l;
1038               bufend = buf + left;
1039               if (allsize + left < maxsize)
1040                 maxsize = allsize + left;
1041               dp = buf;
1042             }
1043           needchunk = 0;
1044         }
1045
1046       key = *keyp++;
1047 #if 0
1048 printf("key %d at %d\n", key, (int)(keyp - 1 - schemadata));
1049 #endif
1050       if (!key)
1051         {
1052           if (keydepth <= 3)
1053             needchunk = 1;
1054           if (nentries)
1055             {
1056               if (s && keydepth == 3)
1057                 {
1058                   s++;  /* next solvable */
1059                   if (have_incoredata)
1060                     data.incoreoffset[(s - pool->solvables) - data.start] = data.incoredatalen;
1061                 }
1062               id = stack[keydepth - 1];
1063               if (!id)
1064                 {
1065                   dp = data_read_id_max(dp, &id, 0, numschemata, &data);
1066                   incore_add_id(&data, id);
1067                 }
1068               keyp = schemadata + schemata[id];
1069               nentries--;
1070               continue;
1071             }
1072           if (!keydepth)
1073             break;
1074           --keydepth;
1075           keyp = schemadata + stack[--keydepth];
1076           nentries = stack[--keydepth];
1077 #if 0
1078 printf("pop flexarray %d %d\n", keydepth, nentries);
1079 #endif
1080           if (!keydepth && s)
1081             s = 0;      /* back from solvables */
1082           continue;
1083         }
1084
1085       if (keydepth == 0)
1086         data.mainschemaoffsets[keyp - 1 - (schemadata + schemata[data.mainschema])] = data.incoredatalen;
1087
1088 #if 0
1089 printf("=> %s %s %p\n", pool_id2str(pool, keys[key].name), pool_id2str(pool, keys[key].type), s);
1090 #endif
1091       id = keys[key].name;
1092       if (keys[key].storage == KEY_STORAGE_VERTICAL_OFFSET)
1093         {
1094           dps = dp;
1095           dp = data_skip(dp, REPOKEY_TYPE_ID);
1096           dp = data_skip(dp, REPOKEY_TYPE_ID);
1097           incore_add_blob(&data, dps, dp - dps);        /* just record offset/size */
1098           continue;
1099         }
1100       switch (keys[key].type)
1101         {
1102         case REPOKEY_TYPE_ID:
1103           dp = data_read_id_max(dp, &did, idmap, numid + numrel, &data);
1104           if (s && id == SOLVABLE_NAME)
1105             s->name = did; 
1106           else if (s && id == SOLVABLE_ARCH)
1107             s->arch = did; 
1108           else if (s && id == SOLVABLE_EVR)
1109             s->evr = did; 
1110           else if (s && id == SOLVABLE_VENDOR)
1111             s->vendor = did; 
1112           else if (keys[key].storage == KEY_STORAGE_INCORE)
1113             incore_add_id(&data, did);
1114 #if 0
1115           POOL_DEBUG(SOLV_DEBUG_STATS, "%s -> %s\n", pool_id2str(pool, id), pool_id2str(pool, did));
1116 #endif
1117           break;
1118         case REPOKEY_TYPE_IDARRAY:
1119         case REPOKEY_TYPE_REL_IDARRAY:
1120           if (!s || id < INTERESTED_START || id > INTERESTED_END)
1121             {
1122               dps = dp;
1123               dp = data_skip(dp, REPOKEY_TYPE_IDARRAY);
1124               if (keys[key].storage != KEY_STORAGE_INCORE)
1125                 break;
1126               if (idmap)
1127                 incore_map_idarray(&data, dps, idmap, numid + numrel);
1128               else
1129                 incore_add_blob(&data, dps, dp - dps);
1130               break;
1131             }
1132           ido = idarraydatap - repo->idarraydata;
1133           if (keys[key].type == REPOKEY_TYPE_IDARRAY)
1134             dp = data_read_idarray(dp, &idarraydatap, idmap, numid + numrel, &data);
1135           else if (id == SOLVABLE_REQUIRES)
1136             dp = data_read_rel_idarray(dp, &idarraydatap, idmap, numid + numrel, &data, SOLVABLE_PREREQMARKER);
1137           else if (id == SOLVABLE_PROVIDES)
1138             dp = data_read_rel_idarray(dp, &idarraydatap, idmap, numid + numrel, &data, SOLVABLE_FILEMARKER);
1139           else
1140             dp = data_read_rel_idarray(dp, &idarraydatap, idmap, numid + numrel, &data, 0);
1141           if (idarraydatap > idarraydataend)
1142             {
1143               data.error = pool_error(pool, SOLV_ERROR_OVERFLOW, "idarray overflow");
1144               break;
1145             }
1146           if (id == SOLVABLE_PROVIDES)
1147             s->provides = ido;
1148           else if (id == SOLVABLE_OBSOLETES)
1149             s->obsoletes = ido;
1150           else if (id == SOLVABLE_CONFLICTS)
1151             s->conflicts = ido;
1152           else if (id == SOLVABLE_REQUIRES)
1153             s->requires = ido;
1154           else if (id == SOLVABLE_RECOMMENDS)
1155             s->recommends= ido;
1156           else if (id == SOLVABLE_SUPPLEMENTS)
1157             s->supplements = ido;
1158           else if (id == SOLVABLE_SUGGESTS)
1159             s->suggests = ido;
1160           else if (id == SOLVABLE_ENHANCES)
1161             s->enhances = ido;
1162 #if 0
1163           POOL_DEBUG(SOLV_DEBUG_STATS, "%s ->\n", pool_id2str(pool, id));
1164           for (; repo->idarraydata[ido]; ido++)
1165             POOL_DEBUG(SOLV_DEBUG_STATS,"  %s\n", pool_dep2str(pool, repo->idarraydata[ido]));
1166 #endif
1167           break;
1168         case REPOKEY_TYPE_FIXARRAY:
1169         case REPOKEY_TYPE_FLEXARRAY:
1170           if (!keydepth)
1171             needchunk = 1;
1172           if (keydepth == sizeof(stack)/sizeof(*stack))
1173             {
1174               data.error = pool_error(pool, SOLV_ERROR_OVERFLOW, "array stack overflow");
1175               break;
1176             }
1177           stack[keydepth++] = nentries;
1178           stack[keydepth++] = keyp - schemadata;
1179           stack[keydepth++] = 0;
1180           dp = data_read_id_max(dp, &nentries, 0, 0, &data);
1181           incore_add_id(&data, nentries);
1182           if (!nentries)
1183             {
1184               /* zero size array? */
1185               keydepth -= 2;
1186               nentries = stack[--keydepth];
1187               break;
1188             }
1189           if (keydepth == 3 && id == REPOSITORY_SOLVABLES)
1190             {
1191               /* horray! here come the solvables */
1192               if (nentries != numsolv)
1193                 {
1194                   data.error = pool_error(pool, SOLV_ERROR_CORRUPT, "inconsistent number of solvables: %d %d", nentries, numsolv);
1195                   break;
1196                 }
1197               if (idarraydatap)
1198                 {
1199                   data.error = pool_error(pool, SOLV_ERROR_CORRUPT, "more than one solvable block");
1200                   break;
1201                 }
1202               if ((flags & REPO_EXTEND_SOLVABLES) != 0)
1203                 s = pool_id2solvable(pool, extendstart);
1204               else
1205                 s = pool_id2solvable(pool, repo_add_solvable_block(repo, numsolv));
1206               data.start = s - pool->solvables;
1207               data.end = data.start + numsolv;
1208               repodata_extend_block(&data, data.start, numsolv);
1209               for (i = 1; i < numkeys; i++)
1210                 {
1211                   id = keys[i].name;
1212                   if ((keys[i].type == REPOKEY_TYPE_IDARRAY || keys[i].type == REPOKEY_TYPE_REL_IDARRAY)
1213                       && id >= INTERESTED_START && id <= INTERESTED_END)
1214                     size_idarray += keys[i].size;
1215                 }
1216               /* allocate needed space in repo */
1217               /* we add maxsize because it is an upper limit for all idarrays, thus we can't overflow */
1218               repo_reserve_ids(repo, 0, size_idarray + maxsize + 1);
1219               idarraydatap = repo->idarraydata + repo->idarraysize;
1220               repo->idarraysize += size_idarray;
1221               idarraydataend = idarraydatap + size_idarray;
1222               repo->lastoff = 0;
1223               if (have_incoredata)
1224                 data.incoreoffset[(s - pool->solvables) - data.start] = data.incoredatalen;
1225             }
1226           nentries--;
1227           dp = data_read_id_max(dp, &id, 0, numschemata, &data);
1228           incore_add_id(&data, id);
1229           if (keys[key].type == REPOKEY_TYPE_FIXARRAY)
1230             {
1231               if (!id)
1232                 data.error = pool_error(pool, SOLV_ERROR_CORRUPT, "illegal fixarray");
1233               stack[keydepth - 1] = id;
1234             }
1235           keyp = schemadata + schemata[id];
1236           break;
1237         case REPOKEY_TYPE_NUM:
1238           if (!(solvflags & SOLV_FLAG_SIZE_BYTES) && keys[key].storage == KEY_STORAGE_INCORE &&
1239                 (id == SOLVABLE_INSTALLSIZE || id == SOLVABLE_DOWNLOADSIZE || id == DELTA_DOWNLOADSIZE))
1240             {
1241               /* old solv file with sizes in kilos. transcode. */
1242               dp = data_read_id(dp, &id);
1243               incore_add_sizek(&data, (unsigned int)id);
1244               break;
1245             }
1246           /* FALLTHROUGH */
1247         default:
1248           if (id == RPM_RPMDBID && s && (keys[key].type == REPOKEY_TYPE_U32 || keys[key].type == REPOKEY_TYPE_NUM))
1249             {
1250               if (keys[key].type == REPOKEY_TYPE_U32)
1251                 dp = data_read_u32(dp, (unsigned int *)&id);
1252               else
1253                 dp = data_read_id_max(dp, &id, 0, 0, &data);
1254               if (!repo->rpmdbid)
1255                 repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id));
1256               repo->rpmdbid[(s - pool->solvables) - repo->start] = id;
1257               break;
1258             }
1259           dps = dp;
1260           dp = data_skip(dp, keys[key].type);
1261           if (keys[key].storage == KEY_STORAGE_INCORE)
1262             incore_add_blob(&data, dps, dp - dps);
1263           break;
1264         }
1265     }
1266   /* should shrink idarraydata again */
1267
1268   if (keydepth)
1269     data.error = pool_error(pool, SOLV_ERROR_EOF, "unexpected EOF, depth = %d", keydepth);
1270   if (!data.error)
1271     {
1272       if (dp > bufend)
1273         data.error = pool_error(pool, SOLV_ERROR_EOF, "buffer overrun");
1274     }
1275   solv_free(buf);
1276
1277   if (data.error)
1278     {
1279       /* free solvables */
1280       repo_free_solvable_block(repo, data.start, data.end - data.start, 1);
1281       /* free id array */
1282       repo->idarraysize -= size_idarray;
1283       /* free incore data */
1284       data.incoredata = solv_free(data.incoredata);
1285       data.incoredatalen = data.incoredatafree = 0;
1286     }
1287
1288   if (data.incoredatafree)
1289     {
1290       /* shrink excess size */
1291       data.incoredata = solv_realloc(data.incoredata, data.incoredatalen);
1292       data.incoredatafree = 0;
1293     }
1294   solv_free(idmap);
1295
1296   for (i = 1; i < numkeys; i++)
1297     if (keys[i].storage == KEY_STORAGE_VERTICAL_OFFSET)
1298       break;
1299   if (i < numkeys && !data.error)
1300     {
1301       Id fileoffset = 0;
1302       unsigned int pagesize;
1303       
1304       /* we have vertical data, make it available */
1305       data.verticaloffset = solv_calloc(numkeys, sizeof(Id));
1306       for (i = 1; i < numkeys; i++)
1307         if (keys[i].storage == KEY_STORAGE_VERTICAL_OFFSET)
1308           {
1309             data.verticaloffset[i] = fileoffset;
1310             fileoffset += keys[i].size;
1311           }
1312       data.lastverticaloffset = fileoffset;
1313       pagesize = read_u32(&data);
1314       if (!data.error)
1315         {
1316           data.error = repopagestore_read_or_setup_pages(&data.store, data.fp, pagesize, fileoffset);
1317           if (data.error == SOLV_ERROR_EOF)
1318             pool_error(pool, data.error, "repopagestore setup: unexpected EOF");
1319           else if (data.error)
1320             pool_error(pool, data.error, "repopagestore setup failed");
1321         }
1322     }
1323   data.fp = 0; /* no longer needed */
1324
1325   if (data.error)
1326     {
1327       i = data.error;
1328       repodata_freedata(&data);
1329       return i;
1330     }
1331
1332   if (parent)
1333     {
1334       /* overwrite stub repodata */
1335       repodata_freedata(parent);
1336       data.repodataid = parent->repodataid;
1337       *parent = data;
1338     }
1339   else
1340     {
1341       /* make it available as new repodata */
1342       if (!repo->nrepodata)
1343         {
1344           repo->nrepodata = 1;
1345           repo->repodata = solv_calloc(2, sizeof(data));
1346         }
1347       else
1348         repo->repodata = solv_realloc2(repo->repodata, repo->nrepodata + 1, sizeof(data));
1349       data.repodataid = repo->nrepodata;
1350       repo->repodata[repo->nrepodata++] = data;
1351     }
1352
1353   /* create stub repodata entries for all external */
1354   if (!(flags & SOLV_ADD_NO_STUBS) && !parent)
1355     {
1356       for (key = 1 ; key < data.nkeys; key++)
1357         if (data.keys[key].name == REPOSITORY_EXTERNAL && data.keys[key].type == REPOKEY_TYPE_FLEXARRAY)
1358           break;
1359       if (key < data.nkeys)
1360         repodata_create_stubs(repo->repodata + (repo->nrepodata - 1));
1361     }
1362
1363   POOL_DEBUG(SOLV_DEBUG_STATS, "repo_add_solv took %d ms\n", solv_timems(now));
1364   POOL_DEBUG(SOLV_DEBUG_STATS, "repo size: %d solvables\n", repo->nsolvables);
1365   POOL_DEBUG(SOLV_DEBUG_STATS, "repo memory used: %d K incore, %d K idarray\n", data.incoredatalen/1024, repo->idarraysize / (int)(1024/sizeof(Id)));
1366   return 0;
1367 }
1368