- also support sha256
[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  * Read the binary dump of a Repo and create a Repo * from it
12  * 
13  *  See
14  *   Repo *pool_addrepo_solv(Pool *pool, FILE *fp)
15  * below
16  * 
17  */
18
19
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <string.h>
25
26 #include "repo_solv.h"
27 #include "util.h"
28
29 #include "repopack.h"
30
31 #define INTERESTED_START        SOLVABLE_NAME
32 #define INTERESTED_END          SOLVABLE_FRESHENS
33
34 #define SOLV_ERROR_NOT_SOLV     1
35 #define SOLV_ERROR_UNSUPPORTED  2
36 #define SOLV_ERROR_EOF          3
37 #define SOLV_ERROR_ID_RANGE     4
38 #define SOLV_ERROR_OVERFLOW     5
39 #define SOLV_ERROR_CORRUPT      6
40
41 static Pool *mypool;            /* for pool_debug... */
42
43 /*-----------------------------------------------------------------*/
44 /* .solv read functions */
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           pool_debug(mypool, SAT_ERROR, "unexpected EOF\n");
64           data->error = SOLV_ERROR_EOF;
65           return 0;
66         }
67       x = (x << 8) | c;
68     }
69   return x;
70 }
71
72
73 /*
74  * read u8
75  */
76
77 static unsigned int
78 read_u8(Repodata *data)
79 {
80   int c;
81
82   if (data->error)
83     return 0;
84   c = getc(data->fp);
85   if (c == EOF)
86     {
87       pool_debug(mypool, SAT_ERROR, "unexpected EOF\n");
88       data->error = SOLV_ERROR_EOF;
89       return 0;
90     }
91   return c;
92 }
93
94
95 /*
96  * read Id
97  */
98
99 static Id
100 read_id(Repodata *data, Id max)
101 {
102   unsigned int x = 0;
103   int c, i;
104
105   if (data->error)
106     return 0;
107   for (i = 0; i < 5; i++)
108     {
109       c = getc(data->fp);
110       if (c == EOF)
111         {
112           pool_debug(mypool, SAT_ERROR, "unexpected EOF\n");
113           data->error = SOLV_ERROR_EOF;
114           return 0;
115         }
116       if (!(c & 128))
117         {
118           x = (x << 7) | c;
119           if (max && x >= max)
120             {
121               pool_debug(mypool, SAT_ERROR, "read_id: id too large (%u/%u)\n", x, max);
122               data->error = SOLV_ERROR_ID_RANGE;
123               return 0;
124             }
125           return x;
126         }
127       x = (x << 7) ^ c ^ 128;
128     }
129   pool_debug(mypool, SAT_ERROR, "read_id: id too long\n");
130   data->error = SOLV_ERROR_CORRUPT;
131   return 0;
132 }
133
134
135 /*
136  * read array of Ids
137  */
138
139 #if 0
140 static Id *
141 read_rel_idarray(Repodata *data, Id max, Id *map, Id *store, Id *end, Id marker)
142 {
143   unsigned int x = 0;
144   int c;
145   Id old = 0;
146
147   if (data->error)
148     return 0;
149   for (;;)
150     {
151       c = getc(data->fp);
152       if (c == EOF)
153         {
154           pool_debug(mypool, SAT_ERROR, "unexpected EOF\n");
155           data->error = SOLV_ERROR_EOF;
156           return 0;
157         }
158       if ((c & 128) != 0)
159         {
160           x = (x << 7) ^ c ^ 128;
161           continue;
162         }
163       x = (x << 6) | (c & 63);
164       if (x == 0)
165         {
166           /* marker hack */
167           if (store == end)
168             {
169               pool_debug(mypool, SAT_ERROR, "read_rel_idarray: array overflow\n");
170               data->error = SOLV_ERROR_OVERFLOW;
171               return 0;
172             }
173           if (c != 0x40)
174             {
175               *store++ = 0;
176               return store;
177             }
178           *store++ = marker;    /* do not map! */
179           old = 0;
180           x = 0;
181           continue;
182         }
183       x = (x - 1) + old;
184       old = x;
185       if (max && x >= max)
186         {
187           pool_debug(mypool, SAT_ERROR, "read_rel_idarray: id too large (%u/%u)\n", x, max);
188           data->error = SOLV_ERROR_ID_RANGE;
189           return 0;
190         }
191       if (map)
192         x = map[x];
193       if (store == end)
194         {
195           pool_debug(mypool, SAT_ERROR, "read_rel_idarray: array overflow\n");
196           return 0;
197         }
198       *store++ = x;
199       if ((c & 64) == 0)
200         {
201           if (x == 0)   /* already have trailing zero? */
202             return store;
203           if (store == end)
204             {
205               pool_debug(mypool, SAT_ERROR, "read_rel_idarray: array overflow\n");
206               data->error = SOLV_ERROR_OVERFLOW;
207               return 0;
208             }
209           *store++ = 0;
210           return store;
211         }
212       x = 0;
213     }
214 }
215 #endif
216
217 static inline unsigned char *
218 data_read_id_max(unsigned char *dp, Id *ret, Id *map, int max, int *error)
219 {
220   Id x;
221   dp = data_read_id(dp, &x);
222   if (max && x >= max)
223     {
224       pool_debug(mypool, SAT_ERROR, "data_read_idarray: id too large (%u/%u)\n", x, max);
225       *error = SOLV_ERROR_ID_RANGE;
226       x = 0;
227     }
228   *ret = map ? map[x] : x;
229   return dp;
230 }
231
232 unsigned char *
233 data_read_idarray(unsigned char *dp, Id **storep, Id *map, int max, int *error)
234 {
235   Id *store = *storep;
236   unsigned int x = 0;
237   int c;
238
239   for (;;)
240     {
241       c = *dp++;
242       if ((c & 128) != 0)
243         {
244           x = (x << 7) ^ c ^ 128;
245           continue;
246         }
247       x = (x << 6) | (c & 63);
248       if (max && x >= max)
249         {
250           pool_debug(mypool, SAT_ERROR, "data_read_idarray: id too large (%u/%u)\n", x, max);
251           *error = SOLV_ERROR_ID_RANGE;
252           break;
253         }
254       *store++ = x;
255       if ((c & 64) == 0)
256         break;
257       x = 0;
258     }
259   *store++ = 0;
260   *storep = store;
261   return dp;
262 }
263
264 unsigned char *
265 data_read_rel_idarray(unsigned char *dp, Id **storep, Id *map, int max, int *error, Id marker)
266 {
267   Id *store = *storep;
268   Id old = 0;
269   unsigned int x = 0;
270   int c;
271
272   for (;;)
273     {
274       c = *dp++;
275       if ((c & 128) != 0)
276         {
277           x = (x << 7) ^ c ^ 128;
278           continue;
279         }
280       x = (x << 6) | (c & 63);
281       if (x == 0)
282         {
283           if (!(c & 64))
284             break;
285           if (marker)
286             *store++ = marker;
287           old = 0;
288           continue;
289         }
290       x = old + (x - 1);
291       old = x;
292       if (max && x >= max)
293         {
294           pool_debug(mypool, SAT_ERROR, "data_read_rel_idarray: id too large (%u/%u)\n", x, max);
295           *error = SOLV_ERROR_ID_RANGE;
296           break;
297         }
298       *store++ = map ? map[x] : x;
299       if (!(c & 64))
300         break;
301       x = 0;
302     }
303   *store++ = 0;
304   *storep = store;
305   return dp;
306 }
307
308
309 static Id *
310 read_idarray(Repodata *data, Id max, Id *map, Id *store, Id *end)
311 {
312   unsigned int x = 0;
313   int c;
314
315   if (data->error)
316     return 0;
317   for (;;)
318     {
319       c = getc(data->fp);
320       if (c == EOF)
321         {
322           pool_debug(mypool, SAT_ERROR, "unexpected EOF\n");
323           data->error = SOLV_ERROR_EOF;
324           return 0;
325         }
326       if ((c & 128) != 0)
327         {
328           x = (x << 7) ^ c ^ 128;
329           continue;
330         }
331       x = (x << 6) | (c & 63);
332       if (max && x >= max)
333         {
334           pool_debug(mypool, SAT_ERROR, "read_idarray: id too large (%u/%u)\n", x, max);
335           data->error = SOLV_ERROR_ID_RANGE;
336           return 0;
337         }
338       if (map)
339         x = map[x];
340       if (store == end)
341         {
342           pool_debug(mypool, SAT_ERROR, "read_idarray: array overflow\n");
343           return 0;
344         }
345       *store++ = x;
346       if ((c & 64) == 0)
347         {
348           if (x == 0)   /* already have trailing zero? */
349             return store;
350           if (store == end)
351             {
352               pool_debug(mypool, SAT_ERROR, "read_idarray: array overflow\n");
353               data->error = SOLV_ERROR_OVERFLOW;
354               return 0;
355             }
356           *store++ = 0;
357           return store;
358         }
359       x = 0;
360     }
361 }
362
363 static void
364 read_str(Repodata *data, char **inbuf, unsigned *len)
365 {
366   unsigned char *buf = (unsigned char*)*inbuf;
367   if (!buf)
368     {
369       buf = sat_malloc(1024);
370       *len = 1024;
371     }
372   int c;
373   unsigned ofs = 0;
374   while((c = getc(data->fp)) != 0)
375     {
376       if (c == EOF)
377         {
378           pool_debug (mypool, SAT_ERROR, "unexpected EOF\n");
379           data->error = SOLV_ERROR_EOF;
380           return;
381         }
382       /* Plus 1 as we also want to add the 0.  */
383       if (ofs + 1 >= *len)
384         {
385           *len += 256;
386           /* Don't realloc on the inbuf, it might be on the stack.  */
387           if (buf == (unsigned char*)*inbuf)
388             {
389               buf = sat_malloc(*len);
390               memcpy(buf, *inbuf, *len - 256);
391             }
392           else
393             buf = sat_realloc(buf, *len);
394         }
395       buf[ofs++] = c;
396     }
397   buf[ofs++] = 0;
398   *inbuf = (char*)buf;
399 }
400
401 static void
402 skip_item(Repodata *data, unsigned type, unsigned numid, unsigned numrel)
403 {
404   switch (type)
405     {
406       case REPOKEY_TYPE_VOID:
407       case REPOKEY_TYPE_CONSTANT:
408       case REPOKEY_TYPE_CONSTANTID:
409         break;
410       case REPOKEY_TYPE_ID:
411         read_id(data, numid + numrel);          /* just check Id */
412         break;
413       case REPOKEY_TYPE_DIR:
414         read_id(data, numid + data->dirpool.ndirs);     /* just check Id */
415         break;
416       case REPOKEY_TYPE_NUM:
417         read_id(data, 0);
418         break;
419       case REPOKEY_TYPE_U32:
420         read_u32(data);
421         break;
422       case REPOKEY_TYPE_STR:
423         while (read_u8(data) != 0)
424           ;
425         break;
426       case REPOKEY_TYPE_MD5:
427         {
428           int i;
429           for (i = 0; i < SIZEOF_MD5; i++)
430             read_u8(data);
431           break;
432         }
433       case REPOKEY_TYPE_SHA1:
434         {
435           int i;
436           for (i = 0; i < SIZEOF_SHA1; i++)
437             read_u8(data);
438           break;
439         }
440       case REPOKEY_TYPE_SHA256:
441         {
442           int i;
443           for (i = 0; i < SIZEOF_SHA256; i++)
444             read_u8(data);
445           break;
446         }
447       case REPOKEY_TYPE_IDARRAY:
448       case REPOKEY_TYPE_REL_IDARRAY:
449         while ((read_u8(data) & 0xc0) != 0)
450           ;
451         break;
452       case REPOKEY_TYPE_DIRNUMNUMARRAY:
453         for (;;)
454           {
455             read_id(data, numid + data->dirpool.ndirs); /* just check Id */
456             read_id(data, 0);
457             if (!(read_id(data, 0) & 0x40))
458               break;
459           }
460         break;
461       case REPOKEY_TYPE_DIRSTRARRAY:
462         for (;;)
463           {
464             Id id = read_id(data, 0);
465             while (read_u8(data) != 0)
466               ;
467             if (!(id & 0x40))
468               break;
469           }
470         break;
471       default:
472         pool_debug(mypool, SAT_ERROR, "unknown type %d\n", type);
473         data->error = SOLV_ERROR_CORRUPT;
474         break;
475     }
476 }
477
478 static int
479 key_cmp (const void *pa, const void *pb)
480 {
481   Repokey *a = (Repokey *)pa;
482   Repokey *b = (Repokey *)pb;
483   return a->name - b->name;
484 }
485
486 static void repodata_load_solv(Repodata *data);
487
488 static void
489 parse_external_repodata(Repodata *maindata, Id *keyp, Repokey *keys, Id *idmap, unsigned numid, unsigned numrel)
490 {
491   Repo *repo = maindata->repo;
492   Id key, id;
493   Id *ida, *ide;
494   Repodata *data;
495   int i, n;
496
497   repo->repodata = sat_realloc2(repo->repodata, repo->nrepodata + 1, sizeof (*data));
498   data = repo->repodata + repo->nrepodata++;
499   memset(data, 0, sizeof(*data));
500   data->repo = repo;
501   data->pagefd = -1;
502   data->state = REPODATA_STUB;
503   data->loadcallback = repodata_load_solv;
504
505   while ((key = *keyp++) != 0)
506     {
507       id = keys[key].name;
508       switch (keys[key].type)
509         {
510         case REPOKEY_TYPE_IDARRAY:
511           if (id != REPODATA_KEYS)
512             {
513               skip_item(maindata, REPOKEY_TYPE_IDARRAY, numid, numrel);
514               break;
515             }
516           /* read_idarray writes a terminating 0, that's why the + 1 */
517           ida = sat_calloc(keys[key].size + 1, sizeof(Id));
518           ide = read_idarray(maindata, numid, idmap, ida, ida + keys[key].size + 1);
519           n = ide - ida - 1;
520           if (n & 1)
521             {
522               pool_debug (mypool, SAT_ERROR, "invalid attribute data\n");
523               maindata->error = SOLV_ERROR_CORRUPT;
524               return;
525             }
526           data->nkeys = 1 + (n >> 1);
527           data->keys = sat_malloc2(data->nkeys, sizeof(data->keys[0]));
528           memset(data->keys, 0, sizeof(Repokey));
529           for (i = 1, ide = ida; i < data->nkeys; i++)
530             {
531               data->keys[i].name = *ide++;
532               data->keys[i].type = *ide++;
533               data->keys[i].size = 0;
534               data->keys[i].storage = 0;
535             }
536           sat_free(ida);
537           if (data->nkeys > 2)
538             qsort(data->keys + 1, data->nkeys - 1, sizeof(data->keys[0]), key_cmp);
539           break;
540         case REPOKEY_TYPE_STR:
541           if (id != REPODATA_LOCATION)
542             skip_item(maindata, REPOKEY_TYPE_STR, numid, numrel);
543           else
544             {
545               char buf[1024];
546               unsigned len = sizeof(buf);
547               char *filename = buf;
548               read_str(maindata, &filename, &len);
549               data->location = strdup(filename);
550               if (filename != buf)
551                 free(filename);
552             }
553           break;
554         default:
555           skip_item(maindata, keys[key].type, numid, numrel);
556           break;
557         }
558     }
559 }
560
561 static void
562 parse_info_repodata(Repodata *maindata, Id *keyp, Repokey *keys, Id *idmap, unsigned numid, unsigned numrel)
563 {
564   Id key, id;
565   Id *ida;
566   while ((key = *keyp++) != 0)
567     {
568       id = keys[key].name;
569       if (id == REPODATA_ADDEDFILEPROVIDES && keys[key].type == REPOKEY_TYPE_REL_IDARRAY)
570         {
571           Id old = 0;
572           /* + 1 just in case */
573           ida = sat_calloc(keys[key].size + 1, sizeof(Id));
574           read_idarray(maindata, 0, 0, ida, ida + keys[key].size + 1);
575           maindata->addedfileprovides = ida;
576           for (; *ida; ida++)
577             {
578               old += *ida - 1;
579               if (old >= numid)
580                 {
581                   *ida = 0;
582                   break;
583                 }
584               *ida = idmap ? idmap[old] : old;
585             }
586           continue;
587         }
588       skip_item(maindata, keys[key].type, numid, numrel);
589     }
590 }
591
592 /*-----------------------------------------------------------------*/
593
594
595 static void
596 skip_schema(Repodata *data, Id *keyp, Repokey *keys, unsigned int numid, unsigned int numrel)
597 {
598   Id key;
599   while ((key = *keyp++) != 0)
600     skip_item(data, keys[key].type, numid, numrel);
601 }
602
603 /*-----------------------------------------------------------------*/
604
605 static void
606 incore_add_id(Repodata *data, Id x)
607 {
608   unsigned char *dp;
609   /* make sure we have at least 5 bytes free */
610   if (data->incoredatafree < 5)
611     {
612       data->incoredata = sat_realloc(data->incoredata, data->incoredatalen + 1024);
613       data->incoredatafree = 1024;
614     }
615   dp = data->incoredata + data->incoredatalen;
616   if (x < 0)
617     abort();
618   if (x >= (1 << 14))
619     {
620       if (x >= (1 << 28))
621         *dp++ = (x >> 28) | 128;
622       if (x >= (1 << 21))
623         *dp++ = (x >> 21) | 128;
624       *dp++ = (x >> 14) | 128;
625     }
626   if (x >= (1 << 7))
627     *dp++ = (x >> 7) | 128;
628   *dp++ = x & 127;
629   data->incoredatafree -= dp - (data->incoredata + data->incoredatalen);
630   data->incoredatalen = dp - data->incoredata;
631 }
632
633 static void
634 incore_add_blob(Repodata *data, unsigned char *buf, int len)
635 {
636   if (data->incoredatafree < len)
637     {
638       data->incoredata = sat_realloc(data->incoredata, data->incoredatalen + 1024 + len);
639       data->incoredatafree = 1024 + len;
640     }
641   memcpy(data->incoredata + data->incoredatalen, buf, len);
642   data->incoredatafree -= len;
643   data->incoredatalen += len;
644 }
645
646 static void
647 incore_map_idarray(Repodata *data, unsigned char *dp, Id *map, Id max)
648 {
649   /* We have to map the IDs, which might also change
650      the necessary number of bytes, so we can't just copy
651      over the blob and adjust it.  */
652   for (;;)
653     {
654       Id id;
655       int eof;
656       dp = data_read_ideof(dp, &id, &eof);
657       if (max && id >= max)
658         {
659           pool_debug(mypool, SAT_ERROR, "incore_map_idarray: id too large (%u/%u)\n", id, max);
660           data->error = SOLV_ERROR_ID_RANGE;
661           break;
662         }
663       id = map[id];
664       if (id >= 64)
665         id = (id & 63) | ((id & ~63) << 1);
666       incore_add_id(data, eof ? id : id | 64);
667       if (eof)
668         break;
669     }
670 }
671
672 static void
673 incore_add_u32(Repodata *data, unsigned int x)
674 {
675   unsigned char *dp;
676   /* make sure we have at least 4 bytes free */
677   if (data->incoredatafree < 4)
678     {
679       data->incoredata = sat_realloc(data->incoredata, data->incoredatalen + 1024);
680       data->incoredatafree = 1024;
681     }
682   dp = data->incoredata + data->incoredatalen;
683   *dp++ = x >> 24;
684   *dp++ = x >> 16;
685   *dp++ = x >> 8;
686   *dp++ = x;
687   data->incoredatafree -= 4;
688   data->incoredatalen += 4;
689 }
690
691 #if 0
692 static void
693 incore_add_u8(Repodata *data, unsigned int x)
694 {
695   unsigned char *dp;
696   /* make sure we have at least 1 byte free */
697   if (data->incoredatafree < 1)
698     {
699       data->incoredata = sat_realloc(data->incoredata, data->incoredatalen + 1024);
700       data->incoredatafree = 1024;
701     }
702   dp = data->incoredata + data->incoredatalen;
703   *dp++ = x;
704   data->incoredatafree--;
705   data->incoredatalen++;
706 }
707 #endif
708
709
710
711 // ----------------------------------------------
712
713
714 /*
715  * read repo from .solv file
716  *  and add it to pool
717  */
718
719 static int
720 repo_add_solv_parent(Repo *repo, FILE *fp, Repodata *parent)
721 {
722   Pool *pool = repo->pool;
723   int i, l;
724   unsigned int numid, numrel, numdir, numsolv;
725   unsigned int numkeys, numschemata, numinfo;
726
727   Offset sizeid;
728   Offset *str;                         /* map Id -> Offset into string space */
729   char *strsp;                         /* repo string space */
730   char *sp;                            /* pointer into string space */
731   Id *idmap;                           /* map of repo Ids to pool Ids */
732   Id id, type;
733   unsigned int hashmask, h;
734   int hh;
735   Id *hashtbl;
736   Id name, evr, did;
737   int flags;
738   Reldep *ran;
739   unsigned int size_idarray;
740   Id *idarraydatap, *idarraydataend;
741   Offset ido;
742   Solvable *s;
743   unsigned int solvflags;
744   unsigned int solvversion;
745   Repokey *keys;
746   Id *schemadata, *schemadatap, *schemadataend;
747   Id *schemata, key;
748   int have_xdata;
749   unsigned oldnrepodata;
750   int maxsize, allsize;
751   unsigned char *buf, *dp, *dps;
752   int left;
753
754   struct _Stringpool *spool;
755
756   Repodata data;
757
758   memset(&data, 0, sizeof(data));
759   data.repo = repo;
760   data.fp = fp;
761   data.pagefd = -1;
762
763   mypool = pool;
764
765   if (read_u32(&data) != ('S' << 24 | 'O' << 16 | 'L' << 8 | 'V'))
766     {
767       pool_debug(pool, SAT_ERROR, "not a SOLV file\n");
768       return SOLV_ERROR_NOT_SOLV;
769     }
770   solvversion = read_u32(&data);
771   switch (solvversion)
772     {
773       case SOLV_VERSION_6:
774         break;
775       default:
776         pool_debug(pool, SAT_ERROR, "unsupported SOLV version\n");
777         return SOLV_ERROR_UNSUPPORTED;
778     }
779
780   pool_freeidhashes(pool);
781
782   numid = read_u32(&data);
783   numrel = read_u32(&data);
784   numdir = read_u32(&data);
785   numsolv = read_u32(&data);
786   numkeys = read_u32(&data);
787   numschemata = read_u32(&data);
788   numinfo = read_u32(&data);
789   solvflags = read_u32(&data);
790
791   if (numdir && numdir < 2)
792     {
793       pool_debug(pool, SAT_ERROR, "bad number of dirs\n");
794       return SOLV_ERROR_CORRUPT;
795     }
796
797   if (parent)
798     {
799       if (numrel)
800         {
801           pool_debug(pool, SAT_ERROR, "relations are forbidden in a store\n");
802           return SOLV_ERROR_CORRUPT;
803         }
804       if (parent->end - parent->start != numsolv)
805         {
806           pool_debug(pool, SAT_ERROR, "unequal number of solvables in a store\n");
807           return SOLV_ERROR_CORRUPT;
808         }
809       if (numinfo)
810         {
811           pool_debug(pool, SAT_ERROR, "info blocks are forbidden in a store\n");
812           return SOLV_ERROR_CORRUPT;
813         }
814     }
815
816   /*******  Part 1: string IDs  *****************************************/
817
818   sizeid = read_u32(&data);            /* size of string+Id space */
819
820   /*
821    * read strings and Ids
822    * 
823    */
824
825   
826   /*
827    * alloc buffers
828    */
829
830   if (!parent)
831     spool = &pool->ss;
832   else
833     {
834       data.localpool = 1;
835       spool = &data.spool;
836       spool->stringspace = sat_malloc(7);
837       strcpy(spool->stringspace, "<NULL>");
838       spool->sstrings = 7;
839       spool->nstrings = 0;
840     }
841
842   /* alloc string buffer */
843   spool->stringspace = sat_realloc(spool->stringspace, spool->sstrings + sizeid + 1);
844   /* alloc string offsets (Id -> Offset into string space) */
845   spool->strings = sat_realloc2(spool->strings, spool->nstrings + numid, sizeof(Offset));
846
847   strsp = spool->stringspace;
848   str = spool->strings;                /* array of offsets into strsp, indexed by Id */
849
850   /* point to _BEHIND_ already allocated string/Id space */
851   strsp += spool->sstrings;
852
853
854   /*
855    * read new repo at end of pool
856    */
857   
858   if ((solvflags & SOLV_FLAG_PREFIX_POOL) == 0)
859     {
860       if (sizeid && fread(strsp, sizeid, 1, fp) != 1)
861         {
862           pool_debug(pool, SAT_ERROR, "read error while reading strings\n");
863           return SOLV_ERROR_EOF;
864         }
865     }
866   else
867     {
868       unsigned int pfsize = read_u32(&data);
869       char *prefix = sat_malloc(pfsize);
870       char *pp = prefix;
871       char *old_str = 0;
872       char *dest = strsp;
873       int freesp = sizeid;
874
875       if (pfsize && fread(prefix, pfsize, 1, fp) != 1)
876         {
877           pool_debug(pool, SAT_ERROR, "read error while reading strings\n");
878           sat_free(prefix);
879           return SOLV_ERROR_EOF;
880         }
881       for (i = 1; i < numid; i++)
882         {
883           int same = (unsigned char)*pp++;
884           size_t len = strlen(pp) + 1;
885           freesp -= same + len;
886           if (freesp < 0)
887             {
888               pool_debug(pool, SAT_ERROR, "overflow while expanding strings\n");
889               sat_free(prefix);
890               return SOLV_ERROR_OVERFLOW;
891             }
892           if (same)
893             memcpy(dest, old_str, same);
894           memcpy(dest + same, pp, len);
895           pp += len;
896           old_str = dest;
897           dest += same + len;
898         }
899       sat_free(prefix);
900       if (freesp != 0)
901         {
902           pool_debug(pool, SAT_ERROR, "expanding strings size mismatch\n");
903           return SOLV_ERROR_CORRUPT;
904         }
905     }
906   strsp[sizeid] = 0;                   /* make string space \0 terminated */
907   sp = strsp;
908
909   if (parent)
910     {
911       /* no shared pool, thus no idmap and no unification */
912       idmap = 0;
913       spool->nstrings = numid;
914       str[0] = 0;
915       if (*sp)
916         {
917           /* we need the '' for directories */
918           pool_debug(pool, SAT_ERROR, "store strings don't start with ''\n");
919           return SOLV_ERROR_CORRUPT;
920         }
921       for (i = 1; i < spool->nstrings; i++)
922         {
923           if (sp >= strsp + sizeid)
924             {
925               pool_debug(pool, SAT_ERROR, "not enough strings\n");
926               return SOLV_ERROR_OVERFLOW;
927             }
928           str[i] = sp - spool->stringspace;
929           sp += strlen(sp) + 1;
930         }
931       spool->sstrings = sp - spool->stringspace;
932     }
933   else
934     {
935
936       /* alloc id map for name and rel Ids. this maps ids in the solv files
937        * to the ids in our pool */
938       idmap = sat_calloc(numid + numrel, sizeof(Id));
939
940       /*
941        * build hashes for all read strings
942        * 
943        */
944       
945       hashmask = mkmask(spool->nstrings + numid);
946
947 #if 0
948       POOL_DEBUG(SAT_DEBUG_STATS, "read %d strings\n", numid);
949       POOL_DEBUG(SAT_DEBUG_STATS, "string hash buckets: %d\n", hashmask + 1);
950 #endif
951
952       /*
953        * create hashtable with strings already in pool
954        */
955
956       hashtbl = sat_calloc(hashmask + 1, sizeof(Id));
957       for (i = 1; i < spool->nstrings; i++)  /* leave out our dummy zero id */
958         {
959           h = strhash(spool->stringspace + spool->strings[i]) & hashmask;
960           hh = HASHCHAIN_START;
961           while (hashtbl[h])
962             h = HASHCHAIN_NEXT(h, hh, hashmask);
963           hashtbl[h] = i;
964         }
965
966       /*
967        * run over string space, calculate offsets
968        * 
969        * build id map (maps solv Id -> pool Id)
970        */
971       
972       for (i = 1; i < numid; i++)
973         {
974           if (sp >= strsp + sizeid)
975             {
976               sat_free(hashtbl);
977               sat_free(idmap);
978               pool_debug(pool, SAT_ERROR, "not enough strings %d %d\n", i, numid);
979               return SOLV_ERROR_OVERFLOW;
980             }
981           if (!*sp)                            /* empty string */
982             {
983               idmap[i] = ID_EMPTY;
984               sp++;
985               continue;
986             }
987
988           /* find hash slot */
989           h = strhash(sp) & hashmask;
990           hh = HASHCHAIN_START;
991           for (;;)
992             {
993               id = hashtbl[h];
994               if (id == 0)
995                 break;
996               if (!strcmp(spool->stringspace + spool->strings[id], sp))
997                 break;                 /* existing string */
998               h = HASHCHAIN_NEXT(h, hh, hashmask);
999             }
1000
1001           /* length == offset to next string */
1002           l = strlen(sp) + 1;
1003           if (id == ID_NULL)           /* end of hash chain -> new string */
1004             {
1005               id = spool->nstrings++;
1006               hashtbl[h] = id;
1007               str[id] = spool->sstrings;    /* save Offset */
1008               if (sp != spool->stringspace + spool->sstrings)   /* not at end-of-buffer */
1009                 memmove(spool->stringspace + spool->sstrings, sp, l);   /* append to pool buffer */
1010               spool->sstrings += l;
1011             }
1012           idmap[i] = id;                       /* repo relative -> pool relative */
1013           sp += l;                             /* next string */
1014         }
1015       sat_free(hashtbl);
1016     }
1017   pool_shrink_strings(pool);           /* vacuum */
1018
1019   
1020   /*******  Part 2: Relation IDs  ***************************************/
1021
1022   /*
1023    * read RelDeps
1024    * 
1025    */
1026   
1027   if (numrel)
1028     {
1029       /* extend rels */
1030       pool->rels = sat_realloc2(pool->rels, pool->nrels + numrel, sizeof(Reldep));
1031       ran = pool->rels;
1032
1033       hashmask = mkmask(pool->nrels + numrel);
1034 #if 0
1035       POOL_DEBUG(SAT_DEBUG_STATS, "read %d rels\n", numrel);
1036       POOL_DEBUG(SAT_DEBUG_STATS, "rel hash buckets: %d\n", hashmask + 1);
1037 #endif
1038       /*
1039        * prep hash table with already existing RelDeps
1040        */
1041       
1042       hashtbl = sat_calloc(hashmask + 1, sizeof(Id));
1043       for (i = 1; i < pool->nrels; i++)
1044         {
1045           h = relhash(ran[i].name, ran[i].evr, ran[i].flags) & hashmask;
1046           hh = HASHCHAIN_START;
1047           while (hashtbl[h])
1048             h = HASHCHAIN_NEXT(h, hh, hashmask);
1049           hashtbl[h] = i;
1050         }
1051
1052       /*
1053        * read RelDeps from repo
1054        */
1055       
1056       for (i = 0; i < numrel; i++)
1057         {
1058           name = read_id(&data, i + numid);     /* read (repo relative) Ids */
1059           evr = read_id(&data, i + numid);
1060           flags = read_u8(&data);
1061           name = idmap[name];           /* map to (pool relative) Ids */
1062           evr = idmap[evr];
1063           h = relhash(name, evr, flags) & hashmask;
1064           hh = HASHCHAIN_START;
1065           for (;;)
1066             {
1067               id = hashtbl[h];
1068               if (id == ID_NULL)        /* end of hash chain */
1069                 break;
1070               if (ran[id].name == name && ran[id].evr == evr && ran[id].flags == flags)
1071                 break;
1072               h = HASHCHAIN_NEXT(h, hh, hashmask);
1073             }
1074           if (id == ID_NULL)            /* new RelDep */
1075             {
1076               id = pool->nrels++;
1077               hashtbl[h] = id;
1078               ran[id].name = name;
1079               ran[id].evr = evr;
1080               ran[id].flags = flags;
1081             }
1082           idmap[i + numid] = MAKERELDEP(id);   /* fill Id map */
1083         }
1084       sat_free(hashtbl);
1085       pool_shrink_rels(pool);           /* vacuum */
1086     }
1087
1088
1089   /*******  Part 3: Dirs  ***********************************************/
1090   if (numdir)
1091     {
1092       data.dirpool.dirs = sat_malloc2(numdir, sizeof(Id));
1093       data.dirpool.ndirs = numdir;
1094       data.dirpool.dirs[0] = 0;         /* dir 0: virtual root */
1095       data.dirpool.dirs[1] = 1;         /* dir 1: / */
1096       for (i = 2; i < numdir; i++)
1097         {
1098           id = read_id(&data, i + numid);
1099           if (id >= numid)
1100             data.dirpool.dirs[i] = -(id - numid);
1101           else if (idmap)
1102             data.dirpool.dirs[i] = idmap[id];
1103           else
1104             data.dirpool.dirs[i] = id;
1105         }
1106     }
1107
1108   /*******  Part 4: Keys  ***********************************************/
1109
1110   keys = sat_calloc(numkeys, sizeof(*keys));
1111   /* keys start at 1 */
1112   for (i = 1; i < numkeys; i++)
1113     {
1114       id = read_id(&data, numid);
1115       if (idmap)
1116         id = idmap[id];
1117       else if (parent)
1118         id = str2id(pool, stringpool_id2str(spool, id), 1);
1119       type = read_id(&data, numid);
1120       if (idmap)
1121         type = idmap[type];
1122       else if (parent)
1123         type = str2id(pool, stringpool_id2str(spool, type), 1);
1124       if (type < REPOKEY_TYPE_VOID || type > REPOKEY_TYPE_SHA256)
1125         {
1126           pool_debug(pool, SAT_ERROR, "unsupported data type '%s'\n", id2str(pool, type));
1127           data.error = SOLV_ERROR_UNSUPPORTED;
1128           type = REPOKEY_TYPE_VOID;
1129         }
1130       keys[i].name = id;
1131       keys[i].type = type;
1132       keys[i].size = read_id(&data, keys[i].type == REPOKEY_TYPE_CONSTANTID ? numid + numrel : 0);
1133       keys[i].storage = read_id(&data, 0);
1134       if (id >= SOLVABLE_NAME && id <= RPM_RPMDBID)
1135         keys[i].storage = KEY_STORAGE_SOLVABLE;
1136       else if (keys[i].storage == KEY_STORAGE_SOLVABLE)
1137         keys[i].storage = KEY_STORAGE_INCORE;
1138       if (keys[i].type == REPOKEY_TYPE_CONSTANTID)
1139         {
1140           if (idmap)
1141             keys[i].size = idmap[keys[i].size];
1142           else if (parent)
1143             keys[i].size = str2id(pool, stringpool_id2str(spool, keys[i].size), 1);
1144         }
1145 #if 0
1146       fprintf(stderr, "key %d %s %s %d %d\n", i, id2str(pool,id), id2str(pool, keys[i].type),
1147                keys[i].size, keys[i].storage);
1148 #endif
1149     }
1150
1151   have_xdata = parent ? 1 : 0;
1152   for (i = 1; i < numkeys; i++)
1153     if (keys[i].storage == KEY_STORAGE_INCORE || keys[i].storage == KEY_STORAGE_VERTICAL_OFFSET)
1154       have_xdata = 1;
1155
1156   data.keys = keys;
1157   data.nkeys = numkeys;
1158
1159   /*******  Part 5: Schemata ********************************************/
1160   
1161   id = read_id(&data, 0);
1162   schemadata = sat_calloc(id + 1, sizeof(Id));
1163   schemadatap = schemadata + 1;
1164   schemadataend = schemadatap + id;
1165   schemata = sat_calloc(numschemata, sizeof(Id));
1166   for (i = 1; i < numschemata; i++)
1167     {
1168       schemata[i] = schemadatap - schemadata;
1169       schemadatap = read_idarray(&data, numid, 0, schemadatap, schemadataend);
1170 #if 0
1171       Id *sp = schemadata + schemata[i];
1172       fprintf (stderr, "schema %d:", i);
1173       for (; *sp; sp++)
1174         fprintf (stderr, " %d", *sp);
1175       fprintf (stderr, "\n");
1176 #endif
1177     }
1178   data.schemata = schemata;
1179   data.nschemata = numschemata;
1180   data.schemadata = schemadata;
1181   data.schemadatalen = schemadataend - data.schemadata;
1182
1183
1184   /*******  Part 6: Info  ***********************************************/
1185   oldnrepodata = repo->nrepodata;
1186   if (numinfo)
1187     {
1188       id = read_id(&data, 0);
1189       id = read_id(&data, 0);
1190     }
1191   for (i = 0; i < numinfo; i++)
1192     {
1193       /* for now we're just interested in data that starts with
1194        * the repodata_external id
1195        */
1196       Id *keyp;
1197       id = read_id(&data, numschemata);
1198       keyp = schemadata + schemata[id];
1199       key = *keyp;
1200       if (keys[key].name == REPODATA_EXTERNAL && keys[key].type == REPOKEY_TYPE_VOID)
1201         {
1202           /* external data for some ids */
1203           parse_external_repodata(&data, keyp, keys, idmap, numid, numrel);
1204         }
1205       else if (keys[key].name == REPODATA_INFO)
1206         {
1207           parse_info_repodata(&data, keyp, keys, idmap, numid, numrel);
1208         }
1209       else
1210         {
1211           skip_schema(&data, keyp, keys, numid, numrel);
1212         }
1213     }
1214
1215
1216   /*******  Part 7: item data *******************************************/
1217
1218   /* calculate idarray size */
1219   size_idarray = 0;
1220   for (i = 1; i < numkeys; i++)
1221     {
1222       id = keys[i].name;
1223       if ((keys[i].type == REPOKEY_TYPE_IDARRAY || keys[i].type == REPOKEY_TYPE_REL_IDARRAY)
1224           && id >= INTERESTED_START && id <= INTERESTED_END)
1225         size_idarray += keys[i].size;
1226     }
1227
1228   if (numsolv)
1229     {
1230       maxsize = read_id(&data, 0);
1231       allsize = read_id(&data, 0);
1232       if (maxsize > allsize)
1233         {
1234           pool_debug(pool, SAT_ERROR, "maxsize %d is greater then allsize %d\n", maxsize, allsize);
1235           data.error = SOLV_ERROR_CORRUPT;
1236         }
1237     }
1238   else
1239     maxsize = allsize = 0;
1240
1241   /* allocate needed space in repo */
1242   /* we add maxsize because it is an upper limit for all idarrays */
1243   repo_reserve_ids(repo, 0, size_idarray + maxsize + 1);
1244   idarraydatap = repo->idarraydata + repo->idarraysize;
1245   repo->idarraysize += size_idarray;
1246   idarraydataend = idarraydatap + size_idarray;
1247   repo->lastoff = 0;
1248
1249   /* read solvables */
1250   if (numsolv)
1251     {
1252       if (parent)
1253         s = pool_id2solvable(pool, parent->start);
1254       else
1255         s = pool_id2solvable(pool, repo_add_solvable_block(repo, numsolv));
1256       /* store start and end of our id block */
1257       data.start = s - pool->solvables;
1258       data.end = data.start + numsolv;
1259       /* In case we have info blocks, make them refer to our part of the 
1260          repository now.  */
1261       for (i = oldnrepodata; i < repo->nrepodata; i++)
1262         {
1263           repo->repodata[i].start = data.start;
1264           repo->repodata[i].end = data.end;
1265         }
1266     }
1267   else
1268     s = 0;
1269
1270   if (have_xdata)
1271     {
1272       /* reserve one byte so that all offsets are not zero */
1273       incore_add_id(&data, 0);
1274       repodata_extend_block(&data, data.start, numsolv);
1275     }
1276
1277   left = 0;
1278   buf = sat_calloc(maxsize + 4, 1);
1279   dp = buf;
1280   for (i = 0; i < numsolv; i++, s++)
1281     {
1282       Id *keyp;
1283       if (data.error)
1284         break;
1285
1286       left -= (dp - buf);
1287       if (left < 0)
1288         {
1289           pool_debug(mypool, SAT_ERROR, "buffer overrun\n");
1290           data.error = SOLV_ERROR_EOF;
1291           break;
1292         }
1293       if (left)
1294         memmove(buf, dp, left);
1295       l = maxsize - left;
1296       if (l > allsize)
1297         l = allsize;
1298       if (l && fread(buf + left, l, 1, data.fp) != 1)
1299         {
1300           pool_debug(mypool, SAT_ERROR, "unexpected EOF\n");
1301           data.error = SOLV_ERROR_EOF;
1302           break;
1303         }
1304       allsize -= l;
1305       left += l;
1306       dp = buf;
1307
1308       dp = data_read_id_max(dp, &id, 0, numschemata, &data.error);
1309       if (have_xdata)
1310         {
1311           data.incoreoffset[i] = data.incoredatalen;
1312           incore_add_id(&data, id);
1313         }
1314       keyp = schemadata + schemata[id];
1315       while ((key = *keyp++) != 0)
1316         {
1317           if (data.error)
1318             break;
1319
1320           id = keys[key].name;
1321 #if 0
1322 fprintf(stderr, "solv %d name %d type %d class %d\n", i, id, keys[key].type, keys[key].storage);
1323 #endif
1324           if (keys[key].storage == KEY_STORAGE_VERTICAL_OFFSET)
1325             {
1326               /* copy offset/length into incore */
1327               dps = dp;
1328               dp = data_skip(dp, REPOKEY_TYPE_ID);
1329               dp = data_skip(dp, REPOKEY_TYPE_ID);
1330               incore_add_blob(&data, dps, dp - dps);
1331               continue;
1332             }
1333           switch (keys[key].type)
1334             {
1335             case REPOKEY_TYPE_ID:
1336               dp = data_read_id_max(dp, &did, idmap, numid + numrel, &data.error);
1337               if (id == SOLVABLE_NAME)
1338                 s->name = did;
1339               else if (id == SOLVABLE_ARCH)
1340                 s->arch = did;
1341               else if (id == SOLVABLE_EVR)
1342                 s->evr = did;
1343               else if (id == SOLVABLE_VENDOR)
1344                 s->vendor = did;
1345               else if (keys[key].storage == KEY_STORAGE_INCORE)
1346                 incore_add_id(&data, did);
1347 #if 0
1348               POOL_DEBUG(SAT_DEBUG_STATS, "%s -> %s\n", id2str(pool, id), id2str(pool, did));
1349 #endif
1350               break;
1351             case REPOKEY_TYPE_U32:
1352               dp = data_read_u32(dp, &h);
1353 #if 0
1354               POOL_DEBUG(SAT_DEBUG_STATS, "%s -> %u\n", id2str(pool, id), h);
1355 #endif
1356               if (id == RPM_RPMDBID)
1357                 {
1358                   if (!repo->rpmdbid)
1359                     repo->rpmdbid = sat_calloc(numsolv, sizeof(Id));
1360                   repo->rpmdbid[i] = h;
1361                 }
1362               else if (keys[key].storage == KEY_STORAGE_INCORE)
1363                 incore_add_u32(&data, h);
1364               break;
1365             case REPOKEY_TYPE_IDARRAY:
1366             case REPOKEY_TYPE_REL_IDARRAY:
1367               if (id < INTERESTED_START || id > INTERESTED_END)
1368                 {
1369                   dps = dp;
1370                   dp = data_skip(dp, REPOKEY_TYPE_IDARRAY);
1371                   if (keys[key].storage != KEY_STORAGE_INCORE)
1372                     break;
1373                   if (idmap)
1374                     incore_map_idarray(&data, dps, idmap, numid);
1375                   else
1376                     incore_add_blob(&data, dps, dp - dps);
1377                   break;
1378                 }
1379               ido = idarraydatap - repo->idarraydata;
1380               if (keys[key].type == REPOKEY_TYPE_IDARRAY)
1381                 dp = data_read_idarray(dp, &idarraydatap, idmap, numid + numrel, &data.error);
1382               else if (id == SOLVABLE_REQUIRES)
1383                 dp = data_read_rel_idarray(dp, &idarraydatap, idmap, numid + numrel, &data.error, SOLVABLE_PREREQMARKER);
1384               else if (id == SOLVABLE_PROVIDES)
1385                 dp = data_read_rel_idarray(dp, &idarraydatap, idmap, numid + numrel, &data.error, SOLVABLE_FILEMARKER);
1386               else
1387                 dp = data_read_rel_idarray(dp, &idarraydatap, idmap, numid + numrel, &data.error, 0);
1388               if (idarraydatap > idarraydataend)
1389                 {
1390                   pool_debug(pool, SAT_ERROR, "idarray overflow\n");
1391                   data.error = SOLV_ERROR_OVERFLOW;
1392                   break;
1393                 }
1394               if (id == SOLVABLE_PROVIDES)
1395                 s->provides = ido;
1396               else if (id == SOLVABLE_OBSOLETES)
1397                 s->obsoletes = ido;
1398               else if (id == SOLVABLE_CONFLICTS)
1399                 s->conflicts = ido;
1400               else if (id == SOLVABLE_REQUIRES)
1401                 s->requires = ido;
1402               else if (id == SOLVABLE_RECOMMENDS)
1403                 s->recommends= ido;
1404               else if (id == SOLVABLE_SUPPLEMENTS)
1405                 s->supplements = ido;
1406               else if (id == SOLVABLE_SUGGESTS)
1407                 s->suggests = ido;
1408               else if (id == SOLVABLE_ENHANCES)
1409                 s->enhances = ido;
1410               else if (id == SOLVABLE_FRESHENS)
1411                 s->freshens = ido;
1412 #if 0
1413               POOL_DEBUG(SAT_DEBUG_STATS, "%s ->\n", id2str(pool, id));
1414               for (; repo->idarraydata[ido]; ido++)
1415                 POOL_DEBUG(SAT_DEBUG_STATS,"  %s\n", dep2str(pool, repo->idarraydata[ido]));
1416 #endif
1417               break;
1418             default:
1419               dps = dp;
1420               dp = data_skip(dp, keys[key].type);
1421               if (keys[key].storage == KEY_STORAGE_INCORE)
1422                 incore_add_blob(&data, dps, dp - dps);
1423               break;
1424             }
1425         }
1426     }
1427
1428   /* should shrink idarraydata again */
1429
1430   if (!data.error)
1431     {
1432       left -= (dp - buf);
1433       if (left < 0)
1434         {
1435           pool_debug(mypool, SAT_ERROR, "buffer overrun\n");
1436           data.error = SOLV_ERROR_EOF;
1437         }
1438     }
1439   sat_free(buf);
1440
1441   if (data.error)
1442     {
1443       /* free solvables */
1444       repo_free_solvable_block(repo, data.start, data.end - data.start, 1);
1445       /* free id array */
1446       repo->idarraysize -= size_idarray;
1447       /* free incore data */
1448       data.incoredata = sat_free(data.incoredata);
1449       data.incoredatalen = data.incoredatafree = 0;
1450     }
1451
1452   if (data.incoredatafree)
1453     {
1454       /* shrink excess size */
1455       data.incoredata = sat_realloc(data.incoredata, data.incoredatalen);
1456       data.incoredatafree = 0;
1457     }
1458
1459   for (i = 1; i < numkeys; i++)
1460     if (keys[i].storage == KEY_STORAGE_VERTICAL_OFFSET)
1461       break;
1462   if (i < numkeys && !data.error)
1463     {
1464       Id fileoffset = 0;
1465       unsigned int pagesize;
1466       
1467       /* we have vertical data, make it available */
1468       data.verticaloffset = sat_calloc(numkeys, sizeof(Id));
1469       for (i = 1; i < numkeys; i++)
1470         if (keys[i].storage == KEY_STORAGE_VERTICAL_OFFSET)
1471           {
1472             data.verticaloffset[i] = fileoffset;
1473             fileoffset += keys[i].size;
1474           }
1475       data.lastverticaloffset = fileoffset;
1476       pagesize = read_u32(&data);
1477       repodata_read_or_setup_pages(&data, pagesize, fileoffset);
1478     }
1479   else
1480     {
1481       /* no longer needed */
1482       data.fp = 0;
1483     }
1484
1485   if (parent && !data.error)
1486     {
1487       /* we're a store */
1488       sat_free(parent->schemata);
1489       sat_free(parent->schemadata);
1490       sat_free(parent->keys);
1491       sat_free(parent->location);
1492       *parent = data;
1493     }
1494   else if ((data.incoredatalen || data.fp) && !data.error)
1495     {
1496       /* we got some data, make it available */
1497       repo->repodata = sat_realloc2(repo->repodata, repo->nrepodata + 1, sizeof(data));
1498       repo->repodata[repo->nrepodata++] = data;
1499     }
1500   else
1501     {
1502       /* discard data */
1503       sat_free(data.dirpool.dirs);
1504       sat_free(data.incoreoffset);
1505       sat_free(schemata);
1506       sat_free(schemadata);
1507       sat_free(keys);
1508     }
1509
1510   sat_free(idmap);
1511   mypool = 0;
1512   return data.error;
1513 }
1514
1515 int
1516 repo_add_solv(Repo *repo, FILE *fp)
1517 {
1518   return repo_add_solv_parent(repo, fp, 0);
1519 }
1520
1521 static void
1522 repodata_load_solv(Repodata *data)
1523 {
1524   FILE *fp;
1525   Pool *pool = data->repo->pool;
1526   if (!pool->loadcallback)
1527     {   
1528       data->state = REPODATA_ERROR;
1529       return;
1530     }   
1531   fp = pool->loadcallback(pool, data, pool->loadcallbackdata);
1532   if (!fp)
1533     {   
1534       data->state = REPODATA_ERROR;
1535       return;
1536     }   
1537   if (repo_add_solv_parent(data->repo, fp, data))
1538     data->state = REPODATA_ERROR;
1539   else
1540     data->state = REPODATA_AVAILABLE;
1541   fclose(fp);
1542 }