Add functions to create IDARRAY attributes.
[platform/upstream/libsolv.git] / src / repo_solv.c
index 4ccb8c8..8dfcc76 100644 (file)
@@ -25,7 +25,8 @@
 
 #include "repo_solv.h"
 #include "util.h"
-#include "attr_store_p.h"
+
+#include "repopack.h"
 
 #define INTERESTED_START       SOLVABLE_NAME
 #define INTERESTED_END         SOLVABLE_FRESHENS
@@ -135,8 +136,9 @@ read_id(Repodata *data, Id max)
  * read array of Ids
  */
 
+#if 0
 static Id *
-read_idarray(Repodata *data, Id max, Id *map, Id *store, Id *end, int relative)
+read_rel_idarray(Repodata *data, Id max, Id *map, Id *store, Id *end, Id marker)
 {
   unsigned int x = 0;
   int c;
@@ -153,59 +155,208 @@ read_idarray(Repodata *data, Id max, Id *map, Id *store, Id *end, int relative)
          data->error = SOLV_ERROR_EOF;
          return 0;
        }
-      if ((c & 128) == 0)
+      if ((c & 128) != 0)
        {
-         x = (x << 6) | (c & 63);
-         if (relative)
-           {
-             if (x == 0 && c == 0x40)
-               {
-                 /* prereq hack */
-                 if (store == end)
-                   {
-                     pool_debug(mypool, SAT_ERROR, "read_idarray: array overflow\n");
-                     data->error = SOLV_ERROR_OVERFLOW;
-                     return 0;
-                   }
-                 *store++ = SOLVABLE_PREREQMARKER;
-                 old = 0;
-                 x = 0;
-                 continue;
-               }
-             x = (x - 1) + old;
-             old = x;
-           }
-         if (max && x >= max)
-           {
-             pool_debug(mypool, SAT_ERROR, "read_idarray: id too large (%u/%u)\n", x, max);
-             data->error = SOLV_ERROR_ID_RANGE;
-             return 0;
-           }
-         if (map)
-           x = map[x];
+         x = (x << 7) ^ c ^ 128;
+         continue;
+       }
+      x = (x << 6) | (c & 63);
+      if (x == 0)
+       {
+         /* marker hack */
          if (store == end)
            {
-             pool_debug(mypool, SAT_ERROR, "read_idarray: array overflow\n");
+             pool_debug(mypool, SAT_ERROR, "read_rel_idarray: array overflow\n");
+             data->error = SOLV_ERROR_OVERFLOW;
              return 0;
            }
-         *store++ = x;
-         if ((c & 64) == 0)
+         if (c != 0x40)
            {
-             if (x == 0)       /* already have trailing zero? */
-               return store;
-             if (store == end)
-               {
-                 pool_debug(mypool, SAT_ERROR, "read_idarray: array overflow\n");
-                 data->error = SOLV_ERROR_OVERFLOW;
-                 return 0;
-               }
              *store++ = 0;
              return store;
            }
+         *store++ = marker;    /* do not map! */
+         old = 0;
          x = 0;
          continue;
        }
-      x = (x << 7) ^ c ^ 128;
+      x = (x - 1) + old;
+      old = x;
+      if (max && x >= max)
+       {
+         pool_debug(mypool, SAT_ERROR, "read_rel_idarray: id too large (%u/%u)\n", x, max);
+         data->error = SOLV_ERROR_ID_RANGE;
+         return 0;
+       }
+      if (map)
+       x = map[x];
+      if (store == end)
+       {
+         pool_debug(mypool, SAT_ERROR, "read_rel_idarray: array overflow\n");
+         return 0;
+       }
+      *store++ = x;
+      if ((c & 64) == 0)
+       {
+         if (x == 0)   /* already have trailing zero? */
+           return store;
+         if (store == end)
+           {
+             pool_debug(mypool, SAT_ERROR, "read_rel_idarray: array overflow\n");
+             data->error = SOLV_ERROR_OVERFLOW;
+             return 0;
+           }
+         *store++ = 0;
+         return store;
+       }
+      x = 0;
+    }
+}
+#endif
+
+static inline unsigned char *
+data_read_id_max(unsigned char *dp, Id *ret, Id *map, int max, int *error)
+{
+  Id x;
+  dp = data_read_id(dp, &x);
+  if (max && x >= max)
+    {
+      pool_debug(mypool, SAT_ERROR, "data_read_idarray: id too large (%u/%u)\n", x, max);
+      *error = SOLV_ERROR_ID_RANGE;
+      x = 0;
+    }
+  *ret = map ? map[x] : x;
+  return dp;
+}
+
+unsigned char *
+data_read_idarray(unsigned char *dp, Id **storep, Id *map, int max, int *error)
+{
+  Id *store = *storep;
+  unsigned int x = 0;
+  int c;
+
+  for (;;)
+    {
+      c = *dp++;
+      if ((c & 128) != 0)
+       {
+         x = (x << 7) ^ c ^ 128;
+         continue;
+       }
+      x = (x << 6) | (c & 63);
+      if (max && x >= max)
+       {
+         pool_debug(mypool, SAT_ERROR, "data_read_idarray: id too large (%u/%u)\n", x, max);
+         *error = SOLV_ERROR_ID_RANGE;
+         break;
+       }
+      *store++ = x;
+      if ((c & 64) == 0)
+        break;
+      x = 0;
+    }
+  *store++ = 0;
+  *storep = store;
+  return dp;
+}
+
+unsigned char *
+data_read_rel_idarray(unsigned char *dp, Id **storep, Id *map, int max, int *error, Id marker)
+{
+  Id *store = *storep;
+  Id old = 0;
+  unsigned int x = 0;
+  int c;
+
+  for (;;)
+    {
+      c = *dp++;
+      if ((c & 128) != 0)
+       {
+         x = (x << 7) ^ c ^ 128;
+         continue;
+       }
+      x = (x << 6) | (c & 63);
+      if (x == 0)
+       {
+         if (!(c & 64))
+           break;
+          if (marker)
+           *store++ = marker;
+         old = 0;
+         continue;
+       }
+      x = old + (x - 1);
+      old = x;
+      if (max && x >= max)
+       {
+         pool_debug(mypool, SAT_ERROR, "data_read_rel_idarray: id too large (%u/%u)\n", x, max);
+         *error = SOLV_ERROR_ID_RANGE;
+         break;
+       }
+      *store++ = map ? map[x] : x;
+      if (!(c & 64))
+        break;
+      x = 0;
+    }
+  *store++ = 0;
+  *storep = store;
+  return dp;
+}
+
+
+static Id *
+read_idarray(Repodata *data, Id max, Id *map, Id *store, Id *end)
+{
+  unsigned int x = 0;
+  int c;
+
+  if (data->error)
+    return 0;
+  for (;;)
+    {
+      c = getc(data->fp);
+      if (c == EOF)
+       {
+         pool_debug(mypool, SAT_ERROR, "unexpected EOF\n");
+         data->error = SOLV_ERROR_EOF;
+         return 0;
+       }
+      if ((c & 128) != 0)
+       {
+         x = (x << 7) ^ c ^ 128;
+         continue;
+       }
+      x = (x << 6) | (c & 63);
+      if (max && x >= max)
+       {
+         pool_debug(mypool, SAT_ERROR, "read_idarray: id too large (%u/%u)\n", x, max);
+         data->error = SOLV_ERROR_ID_RANGE;
+         return 0;
+       }
+      if (map)
+       x = map[x];
+      if (store == end)
+       {
+         pool_debug(mypool, SAT_ERROR, "read_idarray: array overflow\n");
+         return 0;
+       }
+      *store++ = x;
+      if ((c & 64) == 0)
+       {
+         if (x == 0)   /* already have trailing zero? */
+           return store;
+         if (store == end)
+           {
+             pool_debug(mypool, SAT_ERROR, "read_idarray: array overflow\n");
+             data->error = SOLV_ERROR_OVERFLOW;
+             return 0;
+           }
+         *store++ = 0;
+         return store;
+       }
+      x = 0;
     }
 }
 
@@ -248,59 +399,53 @@ read_str(Repodata *data, char **inbuf, unsigned *len)
 }
 
 static void
-skip_item (Repodata *data, unsigned type, unsigned numid, unsigned numrel)
+skip_item(Repodata *data, unsigned type, unsigned numid, unsigned numrel)
 {
   switch (type)
     {
-      case TYPE_VOID:
+      case REPOKEY_TYPE_VOID:
+      case REPOKEY_TYPE_CONSTANT:
+      case REPOKEY_TYPE_CONSTANTID:
+       break;
+      case REPOKEY_TYPE_ID:
+       read_id(data, numid + numrel);          /* just check Id */
        break;
-      case TYPE_ID:
-       read_id(data, numid + numrel);   /* just check Id */
+      case REPOKEY_TYPE_DIR:
+       read_id(data, numid + data->dirpool.ndirs);     /* just check Id */
        break;
-      case TYPE_U32:
+      case REPOKEY_TYPE_NUM:
+       read_id(data, 0);
+       break;
+      case REPOKEY_TYPE_U32:
        read_u32(data);
        break;
-      case TYPE_ATTR_STRING:
-      case TYPE_STR:
-       while(read_u8(data) != 0)
+      case REPOKEY_TYPE_STR:
+       while (read_u8(data) != 0)
          ;
        break;
-      case TYPE_IDARRAY:
-      case TYPE_IDVALUEARRAY:
-      case TYPE_IDVALUEVALUEARRAY:
-      case TYPE_REL_IDARRAY:
-      case TYPE_ATTR_INTLIST:
+      case REPOKEY_TYPE_IDARRAY:
+      case REPOKEY_TYPE_REL_IDARRAY:
        while ((read_u8(data) & 0xc0) != 0)
          ;
        break;
-      case TYPE_COUNT_NAMED:
-       {
-         unsigned count = read_id(data, 0);
-         while (count--)
-           {
-             read_id(data, numid);    /* Name */
-             unsigned t = read_id(data, TYPE_ATTR_TYPE_MAX + 1);
-             skip_item(data, t, numid, numrel);
-           }
-       }
-       break;
-      case TYPE_COUNTED:
-        {
-         unsigned count = read_id(data, 0);
-         unsigned t = read_id(data, TYPE_ATTR_TYPE_MAX + 1);
-         while (count--)
-           skip_item(data, t, numid, numrel);
-       }
-        break;
-      case TYPE_ATTR_CHUNK:
-       read_id(data, 0);
-       /* Fallthrough.  */
-      case TYPE_ATTR_INT:
-       read_id(data, 0);
+      case REPOKEY_TYPE_DIRNUMNUMARRAY:
+       for (;;)
+         {
+           read_id(data, numid + data->dirpool.ndirs); /* just check Id */
+           read_id(data, 0);
+           if (!(read_id(data, 0) & 0x40))
+             break;
+         }
        break;
-      case TYPE_ATTR_LOCALIDS:
-       while (read_id(data, 0) != 0)
-         ;
+      case REPOKEY_TYPE_DIRSTRARRAY:
+       for (;;)
+         {
+           Id id = read_id(data, 0);
+           while (read_u8(data) != 0)
+             ;
+           if (!(id & 0x40))
+             break;
+         }
        break;
       default:
        pool_debug(mypool, SAT_ERROR, "unknown type %d\n", type);
@@ -317,9 +462,12 @@ key_cmp (const void *pa, const void *pb)
   return a->name - b->name;
 }
 
+static void repodata_load_solv(Repodata *data);
+
 static void
-parse_repodata(Repodata *maindata, Id *keyp, Repokey *keys, Id *idmap, unsigned numid, unsigned numrel, Repo *repo)
+parse_external_repodata(Repodata *maindata, Id *keyp, Repokey *keys, Id *idmap, unsigned numid, unsigned numrel)
 {
+  Repo *repo = maindata->repo;
   Id key, id;
   Id *ida, *ide;
   Repodata *data;
@@ -327,26 +475,31 @@ parse_repodata(Repodata *maindata, Id *keyp, Repokey *keys, Id *idmap, unsigned
 
   repo->repodata = sat_realloc2(repo->repodata, repo->nrepodata + 1, sizeof (*data));
   data = repo->repodata + repo->nrepodata++;
-  data->repo = repo;
   memset(data, 0, sizeof(*data));
+  data->repo = repo;
+  data->pagefd = -1;
+  data->state = REPODATA_STUB;
+  data->loadcallback = repodata_load_solv;
 
   while ((key = *keyp++) != 0)
     {
       id = keys[key].name;
       switch (keys[key].type)
        {
-       case TYPE_IDVALUEARRAY:
+       case REPOKEY_TYPE_IDARRAY:
          if (id != REPODATA_KEYS)
            {
-             skip_item(maindata, TYPE_IDVALUEARRAY, numid, numrel);
+             skip_item(maindata, REPOKEY_TYPE_IDARRAY, numid, numrel);
              break;
            }
-         ida = sat_calloc(keys[key].size, sizeof(Id));
-         ide = read_idarray(maindata, 0, 0, ida, ida + keys[key].size, 0);
+         /* read_idarray writes a terminating 0, that's why the + 1 */
+         ida = sat_calloc(keys[key].size + 1, sizeof(Id));
+         ide = read_idarray(maindata, numid, idmap, ida, ida + keys[key].size + 1);
          n = ide - ida - 1;
          if (n & 1)
            {
-             data->error = SOLV_ERROR_CORRUPT;
+             pool_debug (mypool, SAT_ERROR, "invalid attribute data\n");
+             maindata->error = SOLV_ERROR_CORRUPT;
              return;
            }
          data->nkeys = 1 + (n >> 1);
@@ -354,13 +507,7 @@ parse_repodata(Repodata *maindata, Id *keyp, Repokey *keys, Id *idmap, unsigned
          memset(data->keys, 0, sizeof(Repokey));
          for (i = 1, ide = ida; i < data->nkeys; i++)
            {
-             if (*ide >= numid)
-               {
-                 data->error = SOLV_ERROR_CORRUPT;
-                 pool_debug (mypool, SAT_ERROR, "invalid attribute data\n");
-                 return;
-               }
-             data->keys[i].name = idmap ? idmap[*ide++] : *ide++;
+             data->keys[i].name = *ide++;
              data->keys[i].type = *ide++;
              data->keys[i].size = 0;
              data->keys[i].storage = 0;
@@ -369,13 +516,13 @@ parse_repodata(Repodata *maindata, Id *keyp, Repokey *keys, Id *idmap, unsigned
          if (data->nkeys > 2)
            qsort(data->keys + 1, data->nkeys - 1, sizeof(data->keys[0]), key_cmp);
          break;
-       case TYPE_STR:
+       case REPOKEY_TYPE_STR:
          if (id != REPODATA_LOCATION)
-           skip_item(maindata, TYPE_STR, numid, numrel);
+           skip_item(maindata, REPOKEY_TYPE_STR, numid, numrel);
          else
            {
              char buf[1024];
-             unsigned len = sizeof (buf);
+             unsigned len = sizeof(buf);
              char *filename = buf;
              read_str(maindata, &filename, &len);
              data->location = strdup(filename);
@@ -390,6 +537,37 @@ parse_repodata(Repodata *maindata, Id *keyp, Repokey *keys, Id *idmap, unsigned
     }
 }
 
+static void
+parse_info_repodata(Repodata *maindata, Id *keyp, Repokey *keys, Id *idmap, unsigned numid, unsigned numrel)
+{
+  Id key, id;
+  Id *ida;
+  while ((key = *keyp++) != 0)
+    {
+      id = keys[key].name;
+      if (id == REPODATA_ADDEDFILEPROVIDES && keys[key].type == REPOKEY_TYPE_REL_IDARRAY)
+       {
+         Id old = 0;
+         /* + 1 just in case */
+         ida = sat_calloc(keys[key].size + 1, sizeof(Id));
+         read_idarray(maindata, 0, 0, ida, ida + keys[key].size + 1);
+         maindata->addedfileprovides = ida;
+         for (; *ida; ida++)
+           {
+             old += *ida - 1;
+             if (old >= numid)
+               {
+                 *ida = 0;
+                 break;
+               }
+             *ida = idmap ? idmap[old] : old;
+           }
+         continue;
+       }
+      skip_item(maindata, keys[key].type, numid, numrel);
+    }
+}
+
 /*-----------------------------------------------------------------*/
 
 
@@ -432,6 +610,45 @@ incore_add_id(Repodata *data, Id x)
 }
 
 static void
+incore_add_blob(Repodata *data, unsigned char *buf, int len)
+{
+  if (data->incoredatafree < len)
+    {
+      data->incoredata = sat_realloc(data->incoredata, data->incoredatalen + 1024 + len);
+      data->incoredatafree = 1024 + len;
+    }
+  memcpy(data->incoredata + data->incoredatalen, buf, len);
+  data->incoredatafree -= len;
+  data->incoredatalen += len;
+}
+
+static void
+incore_map_idarray(Repodata *data, unsigned char *dp, Id *map, Id max)
+{
+  /* We have to map the IDs, which might also change
+     the necessary number of bytes, so we can't just copy
+     over the blob and adjust it.  */
+  for (;;)
+    {
+      Id id;
+      int eof;
+      dp = data_read_ideof(dp, &id, &eof);
+      if (max && id >= max)
+       {
+         pool_debug(mypool, SAT_ERROR, "incore_map_idarray: id too large (%u/%u)\n", id, max);
+         data->error = SOLV_ERROR_ID_RANGE;
+         break;
+       }
+      id = map[id];
+      if (id >= 64)
+       id = (id & 63) | ((id & ~63) << 1);
+      incore_add_id(data, eof ? id : id | 64);
+      if (eof)
+       break;
+    }
+}
+
+static void
 incore_add_u32(Repodata *data, unsigned int x)
 {
   unsigned char *dp;
@@ -450,6 +667,7 @@ incore_add_u32(Repodata *data, unsigned int x)
   data->incoredatalen += 4;
 }
 
+#if 0
 static void
 incore_add_u8(Repodata *data, unsigned int x)
 {
@@ -465,31 +683,32 @@ incore_add_u8(Repodata *data, unsigned int x)
   data->incoredatafree--;
   data->incoredatalen++;
 }
+#endif
+
+
 
 // ----------------------------------------------
 
+
 /*
  * read repo from .solv file
  *  and add it to pool
  */
 
-int
-repo_add_solv(Repo *repo, FILE *fp)
+static int
+repo_add_solv_parent(Repo *repo, FILE *fp, Repodata *parent)
 {
   Pool *pool = repo->pool;
   int i, l;
-  unsigned int numid, numrel, numsolv;
+  unsigned int numid, numrel, numdir, numsolv;
   unsigned int numkeys, numschemata, numinfo;
-#if 0
-  Attrstore *embedded_store = 0;
-#endif
 
   Offset sizeid;
   Offset *str;                        /* map Id -> Offset into string space */
   char *strsp;                        /* repo string space */
   char *sp;                           /* pointer into string space */
   Id *idmap;                          /* map of repo Ids to pool Ids */
-  Id id;
+  Id id, type;
   unsigned int hashmask, h;
   int hh;
   Id *hashtbl;
@@ -505,12 +724,20 @@ repo_add_solv(Repo *repo, FILE *fp)
   Repokey *keys;
   Id *schemadata, *schemadatap, *schemadataend;
   Id *schemata, key;
+  int have_xdata;
+  unsigned oldnrepodata;
+  int maxsize, allsize;
+  unsigned char *buf, *dp, *dps;
+  int left;
+
+  struct _Stringpool *spool;
 
   Repodata data;
 
   memset(&data, 0, sizeof(data));
   data.repo = repo;
   data.fp = fp;
+  data.pagefd = -1;
 
   mypool = pool;
 
@@ -522,9 +749,7 @@ repo_add_solv(Repo *repo, FILE *fp)
   solvversion = read_u32(&data);
   switch (solvversion)
     {
-      case SOLV_VERSION_1:
-      case SOLV_VERSION_2:
-      case SOLV_VERSION_3:
+      case SOLV_VERSION_6:
         break;
       default:
         pool_debug(pool, SAT_ERROR, "unsupported SOLV version\n");
@@ -535,17 +760,36 @@ repo_add_solv(Repo *repo, FILE *fp)
 
   numid = read_u32(&data);
   numrel = read_u32(&data);
+  numdir = read_u32(&data);
   numsolv = read_u32(&data);
   numkeys = read_u32(&data);
   numschemata = read_u32(&data);
   numinfo = read_u32(&data);
   solvflags = read_u32(&data);
 
-  if (solvversion < SOLV_VERSION_3
-      && numinfo)
+  if (numdir && numdir < 2)
     {
-      pool_debug(pool, SAT_ERROR, "unsupported SOLV format (has info)\n");
-      return SOLV_ERROR_UNSUPPORTED;
+      pool_debug(pool, SAT_ERROR, "bad number of dirs\n");
+      return SOLV_ERROR_CORRUPT;
+    }
+
+  if (parent)
+    {
+      if (numrel)
+       {
+         pool_debug(pool, SAT_ERROR, "relations are forbidden in a store\n");
+         return SOLV_ERROR_CORRUPT;
+       }
+      if (parent->end - parent->start != numsolv)
+       {
+         pool_debug(pool, SAT_ERROR, "unequal number of solvables in a store\n");
+         return SOLV_ERROR_CORRUPT;
+       }
+      if (numinfo)
+       {
+         pool_debug(pool, SAT_ERROR, "info blocks are forbidden in a store\n");
+         return SOLV_ERROR_CORRUPT;
+       }
     }
 
   /*******  Part 1: string IDs  *****************************************/
@@ -562,16 +806,28 @@ repo_add_solv(Repo *repo, FILE *fp)
    * alloc buffers
    */
 
+  if (!parent)
+    spool = &pool->ss;
+  else
+    {
+      data.localpool = 1;
+      spool = &data.spool;
+      spool->stringspace = sat_malloc(7);
+      strcpy(spool->stringspace, "<NULL>");
+      spool->sstrings = 7;
+      spool->nstrings = 0;
+    }
+
   /* alloc string buffer */
-  pool->ss.stringspace = sat_realloc(pool->ss.stringspace, pool->ss.sstrings + sizeid + 1);
+  spool->stringspace = sat_realloc(spool->stringspace, spool->sstrings + sizeid + 1);
   /* alloc string offsets (Id -> Offset into string space) */
-  pool->ss.strings = sat_realloc2(pool->ss.strings, pool->ss.nstrings + numid, sizeof(Offset));
+  spool->strings = sat_realloc2(spool->strings, spool->nstrings + numid, sizeof(Offset));
 
-  strsp = pool->ss.stringspace;
-  str = pool->ss.strings;                     /* array of offsets into strsp, indexed by Id */
+  strsp = spool->stringspace;
+  str = spool->strings;                       /* array of offsets into strsp, indexed by Id */
 
   /* point to _BEHIND_ already allocated string/Id space */
-  strsp += pool->ss.sstrings;
+  strsp += spool->sstrings;
 
 
   /*
@@ -580,7 +836,7 @@ repo_add_solv(Repo *repo, FILE *fp)
   
   if ((solvflags & SOLV_FLAG_PREFIX_POOL) == 0)
     {
-      if (fread(strsp, sizeid, 1, fp) != 1)
+      if (sizeid && fread(strsp, sizeid, 1, fp) != 1)
        {
          pool_debug(pool, SAT_ERROR, "read error while reading strings\n");
          return SOLV_ERROR_EOF;
@@ -591,9 +847,11 @@ repo_add_solv(Repo *repo, FILE *fp)
       unsigned int pfsize = read_u32(&data);
       char *prefix = sat_malloc(pfsize);
       char *pp = prefix;
-      char *old_str = "";
+      char *old_str = 0;
       char *dest = strsp;
-      if (fread(prefix, pfsize, 1, fp) != 1)
+      int freesp = sizeid;
+
+      if (pfsize && fread(prefix, pfsize, 1, fp) != 1)
         {
          pool_debug(pool, SAT_ERROR, "read error while reading strings\n");
          sat_free(prefix);
@@ -602,7 +860,14 @@ repo_add_solv(Repo *repo, FILE *fp)
       for (i = 1; i < numid; i++)
         {
          int same = (unsigned char)*pp++;
-         size_t len = strlen (pp) + 1;
+         size_t len = strlen(pp) + 1;
+         freesp -= same + len;
+         if (freesp < 0)
+           {
+             pool_debug(pool, SAT_ERROR, "overflow while expanding strings\n");
+             sat_free(prefix);
+             return SOLV_ERROR_OVERFLOW;
+           }
          if (same)
            memcpy(dest, old_str, same);
          memcpy(dest + same, pp, len);
@@ -611,91 +876,123 @@ repo_add_solv(Repo *repo, FILE *fp)
          dest += same + len;
        }
       sat_free(prefix);
+      if (freesp != 0)
+       {
+         pool_debug(pool, SAT_ERROR, "expanding strings size mismatch\n");
+         return SOLV_ERROR_CORRUPT;
+       }
     }
   strsp[sizeid] = 0;                  /* make string space \0 terminated */
   sp = strsp;
 
+  if (parent)
+    {
+      /* no shared pool, thus no idmap and no unification */
+      idmap = 0;
+      spool->nstrings = numid;
+      str[0] = 0;
+      if (*sp)
+       {
+         /* we need the '' for directories */
+         pool_debug(pool, SAT_ERROR, "store strings don't start with ''\n");
+         return SOLV_ERROR_CORRUPT;
+       }
+      for (i = 1; i < spool->nstrings; i++)
+       {
+         if (sp >= strsp + sizeid)
+           {
+             pool_debug(pool, SAT_ERROR, "not enough strings\n");
+             return SOLV_ERROR_OVERFLOW;
+           }
+         str[i] = sp - spool->stringspace;
+         sp += strlen(sp) + 1;
+       }
+      spool->sstrings = sp - spool->stringspace;
+    }
+  else
+    {
 
-  /* alloc id map for name and rel Ids. this maps ids in the solv files
-   * to the ids in our pool */
-  idmap = sat_calloc(numid + numrel, sizeof(Id));
+      /* alloc id map for name and rel Ids. this maps ids in the solv files
+       * to the ids in our pool */
+      idmap = sat_calloc(numid + numrel, sizeof(Id));
 
-  /*
-   * build hashes for all read strings
-   * 
-   */
-  
-  hashmask = mkmask(pool->ss.nstrings + numid);
+      /*
+       * build hashes for all read strings
+       
+       */
+      
+      hashmask = mkmask(spool->nstrings + numid);
 
 #if 0
-  POOL_DEBUG(SAT_DEBUG_STATS, "read %d strings\n", numid);
-  POOL_DEBUG(SAT_DEBUG_STATS, "string hash buckets: %d\n", hashmask + 1);
+      POOL_DEBUG(SAT_DEBUG_STATS, "read %d strings\n", numid);
+      POOL_DEBUG(SAT_DEBUG_STATS, "string hash buckets: %d\n", hashmask + 1);
 #endif
 
-  /*
-   * create hashtable with strings already in pool
-   */
-
-  hashtbl = sat_calloc(hashmask + 1, sizeof(Id));
-  for (i = 1; i < pool->ss.nstrings; i++)  /* leave out our dummy zero id */
-    {
-      h = strhash(pool->ss.stringspace + pool->ss.strings[i]) & hashmask;
-      hh = HASHCHAIN_START;
-      while (hashtbl[h])
-        h = HASHCHAIN_NEXT(h, hh, hashmask);
-      hashtbl[h] = i;
-    }
+      /*
+       * create hashtable with strings already in pool
+       */
 
-  /*
-   * run over string space, calculate offsets
-   * 
-   * build id map (maps solv Id -> pool Id)
-   */
-  
-  for (i = 1; i < numid; i++)
-    {
-      if (sp >= strsp + sizeid)
-       {
-         sat_free(hashtbl);
-         sat_free(idmap);
-         pool_debug(pool, SAT_ERROR, "not enough strings\n");
-         return SOLV_ERROR_OVERFLOW;
-       }
-      if (!*sp)                               /* empty string */
+      hashtbl = sat_calloc(hashmask + 1, sizeof(Id));
+      for (i = 1; i < spool->nstrings; i++)  /* leave out our dummy zero id */
        {
-         idmap[i] = ID_EMPTY;
-         sp++;
-         continue;
+         h = strhash(spool->stringspace + spool->strings[i]) & hashmask;
+         hh = HASHCHAIN_START;
+         while (hashtbl[h])
+           h = HASHCHAIN_NEXT(h, hh, hashmask);
+         hashtbl[h] = i;
        }
 
-      /* find hash slot */
-      h = strhash(sp) & hashmask;
-      hh = HASHCHAIN_START;
-      for (;;)
+      /*
+       * run over string space, calculate offsets
+       * 
+       * build id map (maps solv Id -> pool Id)
+       */
+      
+      for (i = 1; i < numid; i++)
        {
-         id = hashtbl[h];
-         if (id == 0)
-           break;
-         if (!strcmp(pool->ss.stringspace + pool->ss.strings[id], sp))
-           break;                     /* existing string */
-         h = HASHCHAIN_NEXT(h, hh, hashmask);
-       }
+         if (sp >= strsp + sizeid)
+           {
+             sat_free(hashtbl);
+             sat_free(idmap);
+             pool_debug(pool, SAT_ERROR, "not enough strings %d %d\n", i, numid);
+             return SOLV_ERROR_OVERFLOW;
+           }
+         if (!*sp)                            /* empty string */
+           {
+             idmap[i] = ID_EMPTY;
+             sp++;
+             continue;
+           }
 
-      /* length == offset to next string */
-      l = strlen(sp) + 1;
-      if (id == ID_NULL)              /* end of hash chain -> new string */
-       {
-         id = pool->ss.nstrings++;
-         hashtbl[h] = id;
-         str[id] = pool->ss.sstrings;    /* save Offset */
-         if (sp != pool->ss.stringspace + pool->ss.sstrings)   /* not at end-of-buffer */
-           memmove(pool->ss.stringspace + pool->ss.sstrings, sp, l);   /* append to pool buffer */
-          pool->ss.sstrings += l;
+         /* find hash slot */
+         h = strhash(sp) & hashmask;
+         hh = HASHCHAIN_START;
+         for (;;)
+           {
+             id = hashtbl[h];
+             if (id == 0)
+               break;
+             if (!strcmp(spool->stringspace + spool->strings[id], sp))
+               break;                 /* existing string */
+             h = HASHCHAIN_NEXT(h, hh, hashmask);
+           }
+
+         /* length == offset to next string */
+         l = strlen(sp) + 1;
+         if (id == ID_NULL)           /* end of hash chain -> new string */
+           {
+             id = spool->nstrings++;
+             hashtbl[h] = id;
+             str[id] = spool->sstrings;    /* save Offset */
+             if (sp != spool->stringspace + spool->sstrings)   /* not at end-of-buffer */
+               memmove(spool->stringspace + spool->sstrings, sp, l);   /* append to pool buffer */
+             spool->sstrings += l;
+           }
+         idmap[i] = id;                       /* repo relative -> pool relative */
+         sp += l;                             /* next string */
        }
-      idmap[i] = id;                  /* repo relative -> pool relative */
-      sp += l;                        /* next string */
+      sat_free(hashtbl);
     }
-  sat_free(hashtbl);
   pool_shrink_strings(pool);          /* vacuum */
 
   
@@ -768,7 +1065,26 @@ repo_add_solv(Repo *repo, FILE *fp)
     }
 
 
-  /*******  Part 3: Keys  ***********************************************/
+  /*******  Part 3: Dirs  ***********************************************/
+  if (numdir)
+    {
+      data.dirpool.dirs = sat_malloc2(numdir, sizeof(Id));
+      data.dirpool.ndirs = numdir;
+      data.dirpool.dirs[0] = 0;                /* dir 0: virtual root */
+      data.dirpool.dirs[1] = 1;                /* dir 1: / */
+      for (i = 2; i < numdir; i++)
+       {
+         id = read_id(&data, i + numid);
+         if (id >= numid)
+           data.dirpool.dirs[i] = -(id - numid);
+         else if (idmap)
+           data.dirpool.dirs[i] = idmap[id];
+         else
+           data.dirpool.dirs[i] = id;
+       }
+    }
+
+  /*******  Part 4: Keys  ***********************************************/
 
   keys = sat_calloc(numkeys, sizeof(*keys));
   /* keys start at 1 */
@@ -777,91 +1093,104 @@ repo_add_solv(Repo *repo, FILE *fp)
       id = read_id(&data, numid);
       if (idmap)
        id = idmap[id];
+      else if (parent)
+        id = str2id(pool, stringpool_id2str(spool, id), 1);
+      type = read_id(&data, numid);
+      if (idmap)
+       type = idmap[type];
+      else if (parent)
+        type = str2id(pool, stringpool_id2str(spool, type), 1);
+      if (type < REPOKEY_TYPE_VOID || type > REPOKEY_TYPE_DIRNUMNUMARRAY)
+       {
+         pool_debug(pool, SAT_ERROR, "unsupported data type '%s'\n", id2str(pool, type));
+         data.error = SOLV_ERROR_UNSUPPORTED;
+         type = REPOKEY_TYPE_VOID;
+       }
       keys[i].name = id;
-      keys[i].type = read_id(&data, 0);
-      keys[i].size = read_id(&data, 0);
-      keys[i].storage = KEY_STORAGE_DROPPED;
-      switch (keys[i].type)
+      keys[i].type = type;
+      keys[i].size = read_id(&data, keys[i].type == REPOKEY_TYPE_CONSTANTID ? numid + numrel : 0);
+      keys[i].storage = read_id(&data, 0);
+      if (id >= SOLVABLE_NAME && id <= RPM_RPMDBID)
+       keys[i].storage = KEY_STORAGE_SOLVABLE;
+      else if (keys[i].storage == KEY_STORAGE_SOLVABLE)
+       keys[i].storage = KEY_STORAGE_INCORE;
+      if (keys[i].type == REPOKEY_TYPE_CONSTANTID)
        {
-       case TYPE_ID:
-         switch(id)
-           {
-           case SOLVABLE_NAME:
-           case SOLVABLE_ARCH:
-           case SOLVABLE_EVR:
-           case SOLVABLE_VENDOR:
-             keys[i].storage = KEY_STORAGE_SOLVABLE;
-             break;
-           default:
-             keys[i].storage = KEY_STORAGE_INCORE;
-             break;
-           }
-         break;
-       case TYPE_IDARRAY:
-       case TYPE_REL_IDARRAY:
-          if (id >= INTERESTED_START && id <= INTERESTED_END)
-           keys[i].storage = KEY_STORAGE_SOLVABLE;
-         else
-           keys[i].storage = KEY_STORAGE_INCORE;
-         break;
-       case TYPE_STR:
-         keys[i].storage = KEY_STORAGE_INCORE;
-         break;
-       case TYPE_U32:
-         if (id == RPM_RPMDBID)
-           keys[i].storage = KEY_STORAGE_SOLVABLE;
-         else
-           keys[i].storage = KEY_STORAGE_INCORE;
-         break;
-       default:
-         break;
+         if (idmap)
+           keys[i].size = idmap[keys[i].size];
+         else if (parent)
+           keys[i].size = str2id(pool, stringpool_id2str(spool, keys[i].size), 1);
        }
+#if 0
+      fprintf(stderr, "key %d %s %s %d %d\n", i, id2str(pool,id), id2str(pool, keys[i].type),
+               keys[i].size, keys[i].storage);
+#endif
     }
 
+  have_xdata = parent ? 1 : 0;
+  for (i = 1; i < numkeys; i++)
+    if (keys[i].storage == KEY_STORAGE_INCORE || keys[i].storage == KEY_STORAGE_VERTICAL_OFFSET)
+      have_xdata = 1;
+
   data.keys = keys;
   data.nkeys = numkeys;
 
-  /*******  Part 4: Schemata ********************************************/
+  /*******  Part 5: Schemata ********************************************/
   
   id = read_id(&data, 0);
-  schemadata = sat_calloc(id, sizeof(Id));
-  schemadatap = schemadata;
-  schemadataend = schemadata + id;
+  schemadata = sat_calloc(id + 1, sizeof(Id));
+  schemadatap = schemadata + 1;
+  schemadataend = schemadatap + id;
   schemata = sat_calloc(numschemata, sizeof(Id));
-  for (i = 0; i < numschemata; i++)
+  for (i = 1; i < numschemata; i++)
     {
       schemata[i] = schemadatap - schemadata;
-      schemadatap = read_idarray(&data, numid, 0, schemadatap, schemadataend, 0);
+      schemadatap = read_idarray(&data, numid, 0, schemadatap, schemadataend);
+#if 0
+      Id *sp = schemadata + schemata[i];
+      fprintf (stderr, "schema %d:", i);
+      for (; *sp; sp++)
+        fprintf (stderr, " %d", *sp);
+      fprintf (stderr, "\n");
+#endif
     }
   data.schemata = schemata;
   data.nschemata = numschemata;
   data.schemadata = schemadata;
+  data.schemadatalen = schemadataend - data.schemadata;
+
 
-  /*******  Part 5: Info  ***********************************************/
+  /*******  Part 6: Info  ***********************************************/
+  oldnrepodata = repo->nrepodata;
+  if (numinfo)
+    {
+      id = read_id(&data, 0);
+      id = read_id(&data, 0);
+    }
   for (i = 0; i < numinfo; i++)
     {
       /* for now we're just interested in data that starts with
        * the repodata_external id
        */
-      Id *keyp = schemadata + schemata[read_id(&data, numschemata)];
+      Id *keyp;
+      id = read_id(&data, numschemata);
+      keyp = schemadata + schemata[id];
       key = *keyp;
-      if (keys[key].name == REPODATA_EXTERNAL && keys[key].type == TYPE_VOID)
+      if (keys[key].name == REPODATA_EXTERNAL && keys[key].type == REPOKEY_TYPE_VOID)
        {
          /* external data for some ids */
-         parse_repodata(&data, keyp, keys, idmap, numid, numrel, repo);
+         parse_external_repodata(&data, keyp, keys, idmap, numid, numrel);
+       }
+      else if (keys[key].name == REPODATA_INFO)
+       {
+         parse_info_repodata(&data, keyp, keys, idmap, numid, numrel);
        }
       else
-       skip_schema(&data, keyp, keys, numid, numrel);
+       {
+         skip_schema(&data, keyp, keys, numid, numrel);
+       }
     }
 
-  /*******  Part 6: packed sizes (optional)  ****************************/
-  char *exists = 0;
-  if ((solvflags & SOLV_FLAG_PACKEDSIZES) != 0)
-    {
-      exists = sat_malloc (numsolv);
-      for (i = 0; i < numsolv; i++)
-       exists[i] = read_id(&data, 0) != 0;
-    }
 
   /*******  Part 7: item data *******************************************/
 
@@ -870,49 +1199,120 @@ repo_add_solv(Repo *repo, FILE *fp)
   for (i = 1; i < numkeys; i++)
     {
       id = keys[i].name;
-      if ((keys[i].type == TYPE_IDARRAY || keys[i].type == TYPE_REL_IDARRAY)
+      if ((keys[i].type == REPOKEY_TYPE_IDARRAY || keys[i].type == REPOKEY_TYPE_REL_IDARRAY)
           && id >= INTERESTED_START && id <= INTERESTED_END)
        size_idarray += keys[i].size;
     }
 
-  /* allocate needed space in repo */
-  if (size_idarray)
+  if (numsolv)
     {
-      repo_reserve_ids(repo, 0, size_idarray);
-      idarraydatap = repo->idarraydata + repo->idarraysize;
-      repo->idarraysize += size_idarray;
-      idarraydataend = idarraydatap + size_idarray;
-      repo->lastoff = 0;
+      maxsize = read_id(&data, 0);
+      allsize = read_id(&data, 0);
+      if (maxsize > allsize)
+       {
+         pool_debug(pool, SAT_ERROR, "maxsize %d is greater then allsize %d\n", maxsize, allsize);
+         data.error = SOLV_ERROR_CORRUPT;
+       }
     }
   else
-    {
-      idarraydatap = 0;
-      idarraydataend = 0;
-    }
+    maxsize = allsize = 0;
+
+  /* allocate needed space in repo */
+  /* we add maxsize because it is an upper limit for all idarrays */
+  repo_reserve_ids(repo, 0, size_idarray + maxsize + 1);
+  idarraydatap = repo->idarraydata + repo->idarraysize;
+  repo->idarraysize += size_idarray;
+  idarraydataend = idarraydatap + size_idarray;
+  repo->lastoff = 0;
 
   /* read solvables */
-  s = pool_id2solvable(pool, repo_add_solvable_block(repo, numsolv));
+  if (numsolv)
+    {
+      if (parent)
+       s = pool_id2solvable(pool, parent->start);
+      else
+        s = pool_id2solvable(pool, repo_add_solvable_block(repo, numsolv));
+      /* store start and end of our id block */
+      data.start = s - pool->solvables;
+      data.end = data.start + numsolv;
+      /* In case we have info blocks, make them refer to our part of the 
+        repository now.  */
+      for (i = oldnrepodata; i < repo->nrepodata; i++)
+        {
+         repo->repodata[i].start = data.start;
+         repo->repodata[i].end = data.end;
+       }
+    }
+  else
+    s = 0;
 
-  /* store start and end of our id block */
-  data.start = s - pool->solvables;
-  data.end = data.start + numsolv;
+  if (have_xdata)
+    {
+      /* reserve one byte so that all offsets are not zero */
+      incore_add_id(&data, 0);
+      repodata_extend_block(&data, data.start, numsolv);
+    }
 
+  left = 0;
+  buf = sat_calloc(maxsize + 4, 1);
+  dp = buf;
   for (i = 0; i < numsolv; i++, s++)
     {
+      Id *keyp;
       if (data.error)
        break;
-      if (exists && !exists[i])
-        continue;
-      Id *keyp = schemadata + schemata[read_id(&data, numschemata)];
+
+      left -= (dp - buf);
+      if (left < 0)
+        {
+         pool_debug(mypool, SAT_ERROR, "buffer overrun\n");
+         data.error = SOLV_ERROR_EOF;
+         break;
+        }
+      if (left)
+        memmove(buf, dp, left);
+      l = maxsize - left;
+      if (l > allsize)
+        l = allsize;
+      if (l && fread(buf + left, l, 1, data.fp) != 1)
+        {
+         pool_debug(mypool, SAT_ERROR, "unexpected EOF\n");
+         data.error = SOLV_ERROR_EOF;
+         break;
+        }
+      allsize -= l;
+      left += l;
+      dp = buf;
+
+      dp = data_read_id_max(dp, &id, 0, numschemata, &data.error);
+      if (have_xdata)
+       {
+         data.incoreoffset[i] = data.incoredatalen;
+         incore_add_id(&data, id);
+       }
+      keyp = schemadata + schemata[id];
       while ((key = *keyp++) != 0)
        {
+         if (data.error)
+           break;
+
          id = keys[key].name;
+#if 0
+fprintf(stderr, "solv %d name %d type %d class %d\n", i, id, keys[key].type, keys[key].storage);
+#endif
+         if (keys[key].storage == KEY_STORAGE_VERTICAL_OFFSET)
+           {
+             /* copy offset/length into incore */
+             dps = dp;
+             dp = data_skip(dp, REPOKEY_TYPE_ID);
+             dp = data_skip(dp, REPOKEY_TYPE_ID);
+             incore_add_blob(&data, dps, dp - dps);
+             continue;
+           }
          switch (keys[key].type)
            {
-           case TYPE_ID:
-             did = read_id(&data, numid + numrel);
-             if (idmap)
-               did = idmap[did];
+           case REPOKEY_TYPE_ID:
+             dp = data_read_id_max(dp, &did, idmap, numid + numrel, &data.error);
              if (id == SOLVABLE_NAME)
                s->name = did;
              else if (id == SOLVABLE_ARCH)
@@ -927,8 +1327,8 @@ repo_add_solv(Repo *repo, FILE *fp)
              POOL_DEBUG(SAT_DEBUG_STATS, "%s -> %s\n", id2str(pool, id), id2str(pool, did));
 #endif
              break;
-           case TYPE_U32:
-             h = read_u32(&data);
+           case REPOKEY_TYPE_U32:
+             dp = data_read_u32(dp, &h);
 #if 0
              POOL_DEBUG(SAT_DEBUG_STATS, "%s -> %u\n", id2str(pool, id), h);
 #endif
@@ -941,71 +1341,33 @@ repo_add_solv(Repo *repo, FILE *fp)
              else if (keys[key].storage == KEY_STORAGE_INCORE)
                incore_add_u32(&data, h);
              break;
-           case TYPE_STR:
-              if (keys[key].storage == KEY_STORAGE_INCORE)
+           case REPOKEY_TYPE_IDARRAY:
+           case REPOKEY_TYPE_REL_IDARRAY:
+             if (id < INTERESTED_START || id > INTERESTED_END)
                {
-                 while ((h = read_u8(&data)) != 0)
-                   incore_add_u8(&data, h);
-                 incore_add_u8(&data, 0);
+                 dps = dp;
+                 dp = data_skip(dp, REPOKEY_TYPE_IDARRAY);
+                 if (keys[key].storage == KEY_STORAGE_INCORE && idmap)
+                   incore_map_idarray(&data, dps, idmap, numid);
+                 else if (keys[key].storage == KEY_STORAGE_INCORE)
+                   incore_add_blob(&data, dps, dp - dps);
+                 break;
                }
+             ido = idarraydatap - repo->idarraydata;
+             if (keys[key].type == REPOKEY_TYPE_IDARRAY)
+               dp = data_read_idarray(dp, &idarraydatap, idmap, numid + numrel, &data.error);
+             else if (id == SOLVABLE_REQUIRES)
+               dp = data_read_rel_idarray(dp, &idarraydatap, idmap, numid + numrel, &data.error, SOLVABLE_PREREQMARKER);
+             else if (id == SOLVABLE_PROVIDES)
+               dp = data_read_rel_idarray(dp, &idarraydatap, idmap, numid + numrel, &data.error, SOLVABLE_FILEMARKER);
              else
+               dp = data_read_rel_idarray(dp, &idarraydatap, idmap, numid + numrel, &data.error, 0);
+             if (idarraydatap > idarraydataend)
                {
-                 while (read_u8(&data) != 0)
-                   ;
-               }
-             break;
-           case TYPE_IDARRAY:
-           case TYPE_REL_IDARRAY:
-             if (id < INTERESTED_START || id > INTERESTED_END)
-               {
-                 if (keys[key].storage == KEY_STORAGE_INCORE)
-                   {
-                     if (idmap)
-                       {
-                         Id old = 0, rel = keys[key].type == TYPE_REL_IDARRAY ? SOLVABLE_PREREQMARKER : 0;
-                         do
-                           {
-                             did = read_id(&data, 0);
-                             h = did & 0x40;
-                             did = (did & 0x3f) | ((did >> 1) & ~0x3f);
-                             if (rel)
-                               {
-                                 if (did == 0)
-                                   {
-                                     did = rel;
-                                     old = 0;
-                                   }
-                                 else
-                                   {
-                                     did += old;
-                                     old = did;
-                                   }
-                               }
-                             if (did >= numid + numrel)
-                               abort();
-                             did = idmap[did];
-                             did = ((did & ~0x3f) << 1) | h;
-                             incore_add_id(&data, did);
-                           }
-                         while (h);
-                       }
-                     else
-                       {
-                         while (((h = read_u8(&data)) & 0xc0) != 0)
-                           incore_add_u8(&data, h);
-                         break;
-                       }
-                   }
-                 else
-                   {
-                     while ((read_u8(&data) & 0xc0) != 0)
-                       ;
-                     break;
-                   }
+                 pool_debug(pool, SAT_ERROR, "idarray overflow\n");
+                 data.error = SOLV_ERROR_OVERFLOW;
                  break;
                }
-             ido = idarraydatap - repo->idarraydata;
-             idarraydatap = read_idarray(&data, numid + numrel, idmap, idarraydatap, idarraydataend, keys[key].type == TYPE_REL_IDARRAY);
              if (id == SOLVABLE_PROVIDES)
                s->provides = ido;
              else if (id == SOLVABLE_OBSOLETES)
@@ -1030,25 +1392,29 @@ repo_add_solv(Repo *repo, FILE *fp)
                POOL_DEBUG(SAT_DEBUG_STATS,"  %s\n", dep2str(pool, repo->idarraydata[ido]));
 #endif
              break;
-#if 0
-           case TYPE_VOID:
-
-           case TYPE_ATTR_INT:
-           case TYPE_ATTR_CHUNK:
-           case TYPE_ATTR_STRING:
-           case TYPE_ATTR_INTLIST:
-           case TYPE_ATTR_LOCALIDS:
-             if (!embedded_store)
-               embedded_store = new_store (pool);
-             add_attr_from_file (embedded_store, i, id, keys[key].type, idmap, numid, &data);
-             break;
-#endif
            default:
-             skip_item(&data, keys[key].type, numid, numrel);
+             dps = dp;
+             dp = data_skip(dp, keys[key].type);
+             if (keys[key].storage == KEY_STORAGE_INCORE)
+               incore_add_blob(&data, dps, dp - dps);
+             break;
            }
        }
     }
 
+  /* should shrink idarraydata again */
+
+  if (!data.error)
+    {
+      left -= (dp - buf);
+      if (left < 0)
+        {
+         pool_debug(mypool, SAT_ERROR, "buffer overrun\n");
+         data.error = SOLV_ERROR_EOF;
+        }
+    }
+  sat_free(buf);
+
   if (data.error)
     {
       /* free solvables */
@@ -1072,8 +1438,20 @@ repo_add_solv(Repo *repo, FILE *fp)
       break;
   if (i < numkeys && !data.error)
     {
+      Id fileoffset = 0;
+      unsigned int pagesize;
+      
       /* we have vertical data, make it available */
-      data.verticaloffset = ftell(fp);
+      data.verticaloffset = sat_calloc(numkeys, sizeof(Id));
+      for (i = 1; i < numkeys; i++)
+        if (keys[i].storage == KEY_STORAGE_VERTICAL_OFFSET)
+         {
+           data.verticaloffset[i] = fileoffset;
+           fileoffset += keys[i].size;
+         }
+      data.lastverticaloffset = fileoffset;
+      pagesize = read_u32(&data);
+      repodata_read_or_setup_pages(&data, pagesize, fileoffset);
     }
   else
     {
@@ -1081,7 +1459,16 @@ repo_add_solv(Repo *repo, FILE *fp)
       data.fp = 0;
     }
 
-  if (data.incoredatalen || data.fp)
+  if (parent && !data.error)
+    {
+      /* we're a store */
+      sat_free(parent->schemata);
+      sat_free(parent->schemadata);
+      sat_free(parent->keys);
+      sat_free(parent->location);
+      *parent = data;
+    }
+  else if ((data.incoredatalen || data.fp) && !data.error)
     {
       /* we got some data, make it available */
       repo->repodata = sat_realloc2(repo->repodata, repo->nrepodata + 1, sizeof(data));
@@ -1089,25 +1476,44 @@ repo_add_solv(Repo *repo, FILE *fp)
     }
   else
     {
+      /* discard data */
+      sat_free(data.dirpool.dirs);
+      sat_free(data.incoreoffset);
       sat_free(schemata);
       sat_free(schemadata);
       sat_free(keys);
     }
 
-  sat_free(exists);
-#if 0
-  if (embedded_store)
-    {
-      attr_store_pack (embedded_store);
-      /* If we have any attributes we also have pages.  */
-      read_or_setup_pages (fp, embedded_store);
-      /* The NULL name here means embedded attributes.  */
-      repo_add_attrstore (repo, embedded_store, NULL);
-    }
-#endif
   sat_free(idmap);
   mypool = 0;
   return data.error;
 }
 
-// EOF
+int
+repo_add_solv(Repo *repo, FILE *fp)
+{
+  return repo_add_solv_parent(repo, fp, 0);
+}
+
+static void
+repodata_load_solv(Repodata *data)
+{
+  FILE *fp;
+  Pool *pool = data->repo->pool;
+  if (!pool->loadcallback)
+    {   
+      data->state = REPODATA_ERROR;
+      return;
+    }   
+  fp = pool->loadcallback(pool, data, pool->loadcallbackdata);
+  if (!fp)
+    {   
+      data->state = REPODATA_ERROR;
+      return;
+    }   
+  if (repo_add_solv_parent(data->repo, fp, data))
+    data->state = REPODATA_ERROR;
+  else
+    data->state = REPODATA_AVAILABLE;
+  fclose(fp);
+}