add repo_add_rpmdb_reffp to easily add rpmdb content when there is an old solv file
[platform/upstream/libsolv.git] / examples / solv.c
1 /*
2  * Copyright (c) 2009-2013, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /* solv, a little software installer demoing the sat solver library */
9
10 /* things it does:
11  * - understands globs for package names / dependencies
12  * - understands .arch suffix
13  * - installation of commandline packages
14  * - repository data caching
15  * - on demand loading of secondary repository data
16  * - gpg and checksum verification
17  * - file conflicts
18  * - deltarpm support
19  * - fastestmirror implementation
20  *
21  * things available in the library but missing from solv:
22  * - vendor policy loading
23  * - soft locks file handling
24  * - multi version handling
25  */
26
27 #define _GNU_SOURCE
28
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <dirent.h>
32 #include <fnmatch.h>
33 #include <unistd.h>
34 #include <zlib.h>
35 #include <fcntl.h>
36 #include <assert.h>
37 #include <sys/utsname.h>
38 #include <sys/types.h>
39 #include <sys/wait.h>
40 #include <time.h>
41 #include <sys/time.h>
42 #include <sys/dir.h>
43 #include <sys/stat.h>
44
45 #include <sys/socket.h>
46 #include <netdb.h>
47 #include <poll.h>
48 #include <errno.h>
49
50 #include "pool.h"
51 #include "poolarch.h"
52 #include "repo.h"
53 #include "evr.h"
54 #include "policy.h"
55 #include "util.h"
56 #include "solver.h"
57 #include "solverdebug.h"
58 #include "chksum.h"
59 #include "repo_solv.h"
60 #include "selection.h"
61
62 #include "repo_write.h"
63 #ifdef ENABLE_RPMDB
64 #include "repo_rpmdb.h"
65 #include "pool_fileconflicts.h"
66 #endif
67 #ifdef ENABLE_RPMDB_PUBKEY
68 #include "repo_rpmdb_pubkey.h"
69 #endif
70 #ifdef ENABLE_DEBIAN
71 #include "repo_deb.h"
72 #endif
73 #ifdef ENABLE_RPMMD
74 #include "repo_rpmmd.h"
75 #include "repo_repomdxml.h"
76 #include "repo_updateinfoxml.h"
77 #include "repo_deltainfoxml.h"
78 #endif
79 #ifdef ENABLE_SUSEREPO
80 #include "repo_products.h"
81 #include "repo_susetags.h"
82 #include "repo_content.h"
83 #endif
84 #include "solv_xfopen.h"
85
86 #ifdef FEDORA
87 # define REPOINFO_PATH "/etc/yum.repos.d"
88 #endif
89 #ifdef SUSE
90 # define REPOINFO_PATH "/etc/zypp/repos.d"
91 # define PRODUCTS_PATH "/etc/products.d"
92 # define SOFTLOCKS_PATH "/var/lib/zypp/SoftLocks"
93 #endif
94
95 #define SOLVCACHE_PATH "/var/cache/solv"
96
97 #define METADATA_EXPIRE (60 * 15)
98
99 struct repoinfo {
100   Repo *repo;
101
102   char *alias;
103   char *name;
104   int enabled;
105   int autorefresh;
106   char *baseurl;
107   char *metalink;
108   char *mirrorlist;
109   char *path;
110   int type;
111   int pkgs_gpgcheck;
112   int repo_gpgcheck;
113   int priority;
114   int keeppackages;
115   int metadata_expire;
116   char **components;
117   int ncomponents;
118
119   unsigned char cookie[32];
120   unsigned char extcookie[32];
121   int incomplete;
122 };
123
124 #ifdef FEDORA
125 char *
126 yum_substitute(Pool *pool, char *line)
127 {
128   char *p, *p2;
129   static char *releaseevr;
130   static char *basearch;
131
132   if (!line)
133     {
134       solv_free(releaseevr);
135       releaseevr = 0;
136       solv_free(basearch);
137       basearch = 0;
138       return 0;
139     }
140   p = line;
141   while ((p2 = strchr(p, '$')) != 0)
142     {
143       if (!strncmp(p2, "$releasever", 11))
144         {
145           if (!releaseevr)
146             {
147               void *rpmstate;
148               Queue q;
149         
150               queue_init(&q);
151               rpmstate = rpm_state_create(pool, pool_get_rootdir(pool));
152               rpm_installedrpmdbids(rpmstate, "Providename", "redhat-release", &q);
153               if (q.count)
154                 {
155                   void *handle;
156                   char *p;
157                   handle = rpm_byrpmdbid(rpmstate, q.elements[0]);
158                   releaseevr = handle ? rpm_query(handle, SOLVABLE_EVR) : 0;
159                   if (releaseevr && (p = strchr(releaseevr, '-')) != 0)
160                     *p = 0;
161                 }
162               rpm_state_free(rpmstate);
163               queue_free(&q);
164               if (!releaseevr)
165                 {
166                   fprintf(stderr, "no installed package provides 'redhat-release', cannot determine $releasever\n");
167                   exit(1);
168                 }
169             }
170           *p2 = 0;
171           p = pool_tmpjoin(pool, line, releaseevr, p2 + 11);
172           p2 = p + (p2 - line);
173           line = p;
174           p = p2 + strlen(releaseevr);
175           continue;
176         }
177       if (!strncmp(p2, "$basearch", 9))
178         {
179           if (!basearch)
180             {
181               struct utsname un;
182               if (uname(&un))
183                 {
184                   perror("uname");
185                   exit(1);
186                 }
187               basearch = strdup(un.machine);
188               if (basearch[0] == 'i' && basearch[1] && !strcmp(basearch + 2, "86"))
189                 basearch[1] = '3';
190             }
191           *p2 = 0;
192           p = pool_tmpjoin(pool, line, basearch, p2 + 9);
193           p2 = p + (p2 - line);
194           line = p;
195           p = p2 + strlen(basearch);
196           continue;
197         }
198       p = p2 + 1;
199     }
200   return line;
201 }
202 #endif
203
204 #define TYPE_UNKNOWN    0
205 #define TYPE_SUSETAGS   1
206 #define TYPE_RPMMD      2
207 #define TYPE_PLAINDIR   3
208 #define TYPE_DEBIAN     4
209
210 #ifndef NOSYSTEM
211 static int
212 read_repoinfos_sort(const void *ap, const void *bp)
213 {
214   const struct repoinfo *a = ap;
215   const struct repoinfo *b = bp;
216   return strcmp(a->alias, b->alias);
217 }
218 #endif
219
220 #if defined(SUSE) || defined(FEDORA)
221
222 struct repoinfo *
223 read_repoinfos(Pool *pool, int *nrepoinfosp)
224 {
225   const char *reposdir = REPOINFO_PATH;
226   char buf[4096];
227   char buf2[4096], *kp, *vp, *kpe;
228   DIR *dir;
229   FILE *fp;
230   struct dirent *ent;
231   int l, rdlen;
232   struct repoinfo *repoinfos = 0, *cinfo;
233   int nrepoinfos = 0;
234
235   rdlen = strlen(reposdir);
236   dir = opendir(reposdir);
237   if (!dir)
238     {
239       *nrepoinfosp = 0;
240       return 0;
241     }
242   while ((ent = readdir(dir)) != 0)
243     {
244       if (ent->d_name[0] == '.')
245         continue;
246       l = strlen(ent->d_name);
247       if (l < 6 || rdlen + 2 + l >= sizeof(buf) || strcmp(ent->d_name + l - 5, ".repo") != 0)
248         continue;
249       snprintf(buf, sizeof(buf), "%s/%s", reposdir, ent->d_name);
250       if ((fp = fopen(buf, "r")) == 0)
251         {
252           perror(buf);
253           continue;
254         }
255       cinfo = 0;
256       while(fgets(buf2, sizeof(buf2), fp))
257         {
258           l = strlen(buf2);
259           if (l == 0)
260             continue;
261           while (l && (buf2[l - 1] == '\n' || buf2[l - 1] == ' ' || buf2[l - 1] == '\t'))
262             buf2[--l] = 0;
263           kp = buf2;
264           while (*kp == ' ' || *kp == '\t')
265             kp++;
266           if (!*kp || *kp == '#')
267             continue;
268 #ifdef FEDORA
269           if (strchr(kp, '$'))
270             kp = yum_substitute(pool, kp);
271 #endif
272           if (*kp == '[')
273             {
274               vp = strrchr(kp, ']');
275               if (!vp)
276                 continue;
277               *vp = 0;
278               repoinfos = solv_extend(repoinfos, nrepoinfos, 1, sizeof(*repoinfos), 15);
279               cinfo = repoinfos + nrepoinfos++;
280               memset(cinfo, 0, sizeof(*cinfo));
281               cinfo->alias = strdup(kp + 1);
282               cinfo->type = TYPE_RPMMD;
283               cinfo->autorefresh = 1;
284               cinfo->priority = 99;
285 #ifndef FEDORA
286               cinfo->repo_gpgcheck = 1;
287 #endif
288               cinfo->metadata_expire = METADATA_EXPIRE;
289               continue;
290             }
291           if (!cinfo)
292             continue;
293           vp = strchr(kp, '=');
294           if (!vp)
295             continue;
296           for (kpe = vp - 1; kpe >= kp; kpe--)
297             if (*kpe != ' ' && *kpe != '\t')
298               break;
299           if (kpe == kp)
300             continue;
301           vp++;
302           while (*vp == ' ' || *vp == '\t')
303             vp++;
304           kpe[1] = 0;
305           if (!strcmp(kp, "name"))
306             cinfo->name = strdup(vp);
307           else if (!strcmp(kp, "enabled"))
308             cinfo->enabled = *vp == '0' ? 0 : 1;
309           else if (!strcmp(kp, "autorefresh"))
310             cinfo->autorefresh = *vp == '0' ? 0 : 1;
311           else if (!strcmp(kp, "gpgcheck"))
312             cinfo->pkgs_gpgcheck = *vp == '0' ? 0 : 1;
313           else if (!strcmp(kp, "repo_gpgcheck"))
314             cinfo->repo_gpgcheck = *vp == '0' ? 0 : 1;
315           else if (!strcmp(kp, "baseurl"))
316             cinfo->baseurl = strdup(vp);
317           else if (!strcmp(kp, "mirrorlist"))
318             {
319               if (strstr(vp, "metalink"))
320                 cinfo->metalink = strdup(vp);
321               else
322                 cinfo->mirrorlist = strdup(vp);
323             }
324           else if (!strcmp(kp, "path"))
325             {
326               if (vp && strcmp(vp, "/") != 0)
327                 cinfo->path = strdup(vp);
328             }
329           else if (!strcmp(kp, "type"))
330             {
331               if (!strcmp(vp, "yast2"))
332                 cinfo->type = TYPE_SUSETAGS;
333               else if (!strcmp(vp, "rpm-md"))
334                 cinfo->type = TYPE_RPMMD;
335               else if (!strcmp(vp, "plaindir"))
336                 cinfo->type = TYPE_PLAINDIR;
337               else
338                 cinfo->type = TYPE_UNKNOWN;
339             }
340           else if (!strcmp(kp, "priority"))
341             cinfo->priority = atoi(vp);
342           else if (!strcmp(kp, "keeppackages"))
343             cinfo->keeppackages = *vp == '0' ? 0 : 1;
344         }
345       fclose(fp);
346       cinfo = 0;
347     }
348   closedir(dir);
349   qsort(repoinfos, nrepoinfos, sizeof(*repoinfos), read_repoinfos_sort);
350   *nrepoinfosp = nrepoinfos;
351   return repoinfos;
352 }
353
354 #endif
355
356 #ifdef DEBIAN
357
358 struct repoinfo *
359 read_repoinfos(Pool *pool, int *nrepoinfosp)
360 {
361   FILE *fp;
362   char buf[4096];
363   char buf2[4096];
364   int l;
365   char *kp, *url, *distro;
366   struct repoinfo *repoinfos = 0, *cinfo;
367   int nrepoinfos = 0;
368   DIR *dir = 0;
369   struct dirent *ent;
370
371   fp = fopen("/etc/apt/sources.list", "r");
372   while (1)
373     {
374       if (!fp)
375         {
376           if (!dir)
377             {
378               dir = opendir("/etc/apt/sources.list.d");
379               if (!dir)
380                 break;
381             }
382           if ((ent = readdir(dir)) == 0)
383             {
384               closedir(dir);
385               break;
386             }
387           if (ent->d_name[0] == '.')
388             continue;
389           l = strlen(ent->d_name);
390           if (l < 5 || strcmp(ent->d_name + l - 5, ".list") != 0)
391             continue;
392           snprintf(buf, sizeof(buf), "%s/%s", "/etc/apt/sources.list.d", ent->d_name);
393           if (!(fp = fopen(buf, "r")))
394             continue;
395         }
396       while(fgets(buf2, sizeof(buf2), fp))
397         {
398           l = strlen(buf2);
399           if (l == 0)
400             continue;
401           while (l && (buf2[l - 1] == '\n' || buf2[l - 1] == ' ' || buf2[l - 1] == '\t'))
402             buf2[--l] = 0;
403           kp = buf2;
404           while (*kp == ' ' || *kp == '\t')
405             kp++;
406           if (!*kp || *kp == '#')
407             continue;
408           if (strncmp(kp, "deb", 3) != 0)
409             continue;
410           kp += 3;
411           if (*kp != ' ' && *kp != '\t')
412             continue;
413           while (*kp == ' ' || *kp == '\t')
414             kp++;
415           if (!*kp)
416             continue;
417           url = kp;
418           while (*kp && *kp != ' ' && *kp != '\t')
419             kp++;
420           if (*kp)
421             *kp++ = 0;
422           while (*kp == ' ' || *kp == '\t')
423             kp++;
424           if (!*kp)
425             continue;
426           distro = kp;
427           while (*kp && *kp != ' ' && *kp != '\t')
428             kp++;
429           if (*kp)
430             *kp++ = 0;
431           while (*kp == ' ' || *kp == '\t')
432             kp++;
433           if (!*kp)
434             continue;
435           repoinfos = solv_extend(repoinfos, nrepoinfos, 1, sizeof(*repoinfos), 15);
436           cinfo = repoinfos + nrepoinfos++;
437           memset(cinfo, 0, sizeof(*cinfo));
438           cinfo->baseurl = strdup(url);
439           cinfo->alias = solv_dupjoin(url, "/", distro);
440           cinfo->name = strdup(distro);
441           cinfo->type = TYPE_DEBIAN;
442           cinfo->enabled = 1;
443           cinfo->autorefresh = 1;
444           cinfo->repo_gpgcheck = 1;
445           cinfo->metadata_expire = METADATA_EXPIRE;
446           while (*kp)
447             {
448               char *compo;
449               while (*kp == ' ' || *kp == '\t')
450                 kp++;
451               if (!*kp)
452                 break;
453               compo = kp;
454               while (*kp && *kp != ' ' && *kp != '\t')
455                 kp++;
456               if (*kp)
457                 *kp++ = 0;
458               cinfo->components = solv_extend(cinfo->components, cinfo->ncomponents, 1, sizeof(*cinfo->components), 15);
459               cinfo->components[cinfo->ncomponents++] = strdup(compo);
460             }
461         }
462       fclose(fp);
463       fp = 0;
464     }
465   qsort(repoinfos, nrepoinfos, sizeof(*repoinfos), read_repoinfos_sort);
466   *nrepoinfosp = nrepoinfos;
467   return repoinfos;
468 }
469
470 #endif
471
472 #ifdef NOSYSTEM
473 struct repoinfo *
474 read_repoinfos(Pool *pool, int *nrepoinfosp)
475 {
476   *nrepoinfosp = 0;
477   return 0;
478 }
479 #endif
480
481
482 void
483 free_repoinfos(struct repoinfo *repoinfos, int nrepoinfos)
484 {
485   int i, j;
486   for (i = 0; i < nrepoinfos; i++)
487     {
488       struct repoinfo *cinfo = repoinfos + i;
489       solv_free(cinfo->name);
490       solv_free(cinfo->alias);
491       solv_free(cinfo->path);
492       solv_free(cinfo->metalink);
493       solv_free(cinfo->mirrorlist);
494       solv_free(cinfo->baseurl);
495       for (j = 0; j < cinfo->ncomponents; j++)
496         solv_free(cinfo->components[j]);
497       solv_free(cinfo->components);
498     }
499   solv_free(repoinfos);
500 }
501
502 static inline int
503 opentmpfile()
504 {
505   char tmpl[100];
506   int fd;
507
508   strcpy(tmpl, "/var/tmp/solvXXXXXX");
509   fd = mkstemp(tmpl);
510   if (fd < 0)
511     {
512       perror("mkstemp");
513       exit(1);
514     }
515   unlink(tmpl);
516   return fd;
517 }
518
519 static int
520 verify_checksum(int fd, const char *file, const unsigned char *chksum, Id chksumtype)
521 {
522   char buf[1024];
523   const unsigned char *sum;
524   void *h;
525   int l;
526
527   h = solv_chksum_create(chksumtype);
528   if (!h)
529     {
530       printf("%s: unknown checksum type\n", file);
531       return 0;
532     }
533   while ((l = read(fd, buf, sizeof(buf))) > 0)
534     solv_chksum_add(h, buf, l);
535   lseek(fd, 0, SEEK_SET);
536   l = 0;
537   sum = solv_chksum_get(h, &l);
538   if (memcmp(sum, chksum, l))
539     {
540       printf("%s: checksum mismatch\n", file);
541       solv_chksum_free(h, 0);
542       return 0;
543     }
544   solv_chksum_free(h, 0);
545   return 1;
546 }
547
548 void
549 findfastest(char **urls, int nurls)
550 {
551   int i, j, port;
552   int *socks, qc;
553   struct pollfd *fds;
554   char *p, *p2, *q;
555   char portstr[16];
556   struct addrinfo hints, *result;;
557
558   fds = solv_calloc(nurls, sizeof(*fds));
559   socks = solv_calloc(nurls, sizeof(*socks));
560   for (i = 0; i < nurls; i++)
561     {
562       socks[i] = -1;
563       p = strchr(urls[i], '/');
564       if (!p)
565         continue;
566       if (p[1] != '/')
567         continue;
568       p += 2;
569       q = strchr(p, '/');
570       qc = 0;
571       if (q)
572         {
573           qc = *q;
574           *q = 0;
575         }
576       if ((p2 = strchr(p, '@')) != 0)
577         p = p2 + 1;
578       port = 80;
579       if (!strncmp("https:", urls[i], 6))
580         port = 443;
581       else if (!strncmp("ftp:", urls[i], 4))
582         port = 21;
583       if ((p2 = strrchr(p, ':')) != 0)
584         {
585           port = atoi(p2 + 1);
586           if (q)
587             *q = qc;
588           q = p2;
589           qc = *q;
590           *q = 0;
591         }
592       sprintf(portstr, "%d", port);
593       memset(&hints, 0, sizeof(struct addrinfo));
594       hints.ai_family = AF_UNSPEC;
595       hints.ai_socktype = SOCK_STREAM;
596       hints.ai_flags = AI_NUMERICSERV;
597       result = 0;
598       if (!getaddrinfo(p, portstr, &hints, &result))
599         {
600           socks[i] = socket(result->ai_family, result->ai_socktype, result->ai_protocol);
601           if (socks[i] >= 0)
602             {
603               fcntl(socks[i], F_SETFL, O_NONBLOCK);
604               if (connect(socks[i], result->ai_addr, result->ai_addrlen) == -1)
605                 {
606                   if (errno != EINPROGRESS)
607                     {
608                       close(socks[i]);
609                       socks[i] = -1;
610                     }
611                 }
612             }
613           freeaddrinfo(result);
614         }
615       if (q)
616         *q = qc;
617     }
618   for (;;)
619     {
620       for (i = j = 0; i < nurls; i++)
621         {
622           if (socks[i] < 0)
623             continue;
624           fds[j].fd = socks[i];
625           fds[j].events = POLLOUT;
626           j++;
627         }
628       if (j < 2)
629         {
630           i = j - 1;
631           break;
632         }
633       if (poll(fds, j, 10000) <= 0)
634         {
635           i = -1;       /* something is wrong */
636           break;
637         }
638       for (i = 0; i < j; i++)
639         if ((fds[i].revents & POLLOUT) != 0)
640           {
641             int soe = 0;
642             socklen_t soel = sizeof(int);
643             if (getsockopt(fds[i].fd, SOL_SOCKET, SO_ERROR, &soe, &soel) == -1 || soe != 0)
644               {
645                 /* connect failed, kill socket */
646                 for (j = 0; j < nurls; j++)
647                   if (socks[j] == fds[i].fd)
648                     {
649                       close(socks[j]);
650                       socks[j] = -1;
651                     }
652                 i = j + 1;
653                 break;
654               }
655             break;      /* horray! */
656           }
657       if (i == j + 1)
658         continue;
659       if (i == j)
660         i = -1;         /* something is wrong, no bit was set */
661       break;
662     }
663   /* now i contains the fastest fd index */
664   if (i >= 0)
665     {
666       for (j = 0; j < nurls; j++)
667         if (socks[j] == fds[i].fd)
668           break;
669       if (j != 0)
670         {
671           char *url0 = urls[0];
672           urls[0] = urls[j];
673           urls[j] = url0;
674         }
675     }
676   for (i = j = 0; i < nurls; i++)
677     if (socks[i] >= 0)
678       close(socks[i]);
679   free(socks);
680   free(fds);
681 }
682
683 char *
684 findmetalinkurl(FILE *fp, unsigned char *chksump, Id *chksumtypep)
685 {
686   char buf[4096], *bp, *ep;
687   char **urls = 0;
688   int nurls = 0;
689   int i;
690
691   if (chksumtypep)
692     *chksumtypep = 0;
693   while((bp = fgets(buf, sizeof(buf), fp)) != 0)
694     {
695       while (*bp == ' ' || *bp == '\t')
696         bp++;
697       if (chksumtypep && !*chksumtypep && !strncmp(bp, "<hash type=\"sha256\">", 20))
698         {
699           bp += 20;
700           if (solv_hex2bin((const char **)&bp, chksump, 32) == 32)
701             *chksumtypep = REPOKEY_TYPE_SHA256;
702           continue;
703         }
704       if (strncmp(bp, "<url", 4))
705         continue;
706       bp = strchr(bp, '>');
707       if (!bp)
708         continue;
709       bp++;
710       ep = strstr(bp, "repodata/repomd.xml</url>");
711       if (!ep)
712         continue;
713       *ep = 0;
714       if (strncmp(bp, "http", 4))
715         continue;
716       urls = solv_extend(urls, nurls, 1, sizeof(*urls), 15);
717       urls[nurls++] = strdup(bp);
718     }
719   if (nurls)
720     {
721       if (nurls > 1)
722         findfastest(urls, nurls > 5 ? 5 : nurls);
723       bp = urls[0];
724       urls[0] = 0;
725       for (i = 0; i < nurls; i++)
726         solv_free(urls[i]);
727       solv_free(urls);
728       ep = strchr(bp, '/');
729       if ((ep = strchr(ep + 2, '/')) != 0)
730         {
731           *ep = 0;
732           printf("[using mirror %s]\n", bp);
733           *ep = '/';
734         }
735       return bp;
736     }
737   return 0;
738 }
739
740 char *
741 findmirrorlisturl(FILE *fp)
742 {
743   char buf[4096], *bp, *ep;
744   int i, l;
745   char **urls = 0;
746   int nurls = 0;
747
748   while((bp = fgets(buf, sizeof(buf), fp)) != 0)
749     {
750       while (*bp == ' ' || *bp == '\t')
751         bp++;
752       if (!*bp || *bp == '#')
753         continue;
754       l = strlen(bp);
755       while (l > 0 && (bp[l - 1] == ' ' || bp[l - 1] == '\t' || bp[l - 1] == '\n'))
756         bp[--l] = 0;
757       urls = solv_extend(urls, nurls, 1, sizeof(*urls), 15);
758       urls[nurls++] = strdup(bp);
759     }
760   if (nurls)
761     {
762       if (nurls > 1)
763         findfastest(urls, nurls > 5 ? 5 : nurls);
764       bp = urls[0];
765       urls[0] = 0;
766       for (i = 0; i < nurls; i++)
767         solv_free(urls[i]);
768       solv_free(urls);
769       ep = strchr(bp, '/');
770       if ((ep = strchr(ep + 2, '/')) != 0)
771         {
772           *ep = 0;
773           printf("[using mirror %s]\n", bp);
774           *ep = '/';
775         }
776       return bp;
777     }
778   return 0;
779 }
780
781 static inline int
782 iscompressed(const char *name)
783 {
784   return solv_xfopen_iscompressed(name) != 0;
785 }
786
787 FILE *
788 curlfopen(struct repoinfo *cinfo, const char *file, int uncompress, const unsigned char *chksum, Id chksumtype, int markincomplete)
789 {
790   FILE *fp;
791   pid_t pid;
792   int fd, l;
793   int status;
794   char url[4096];
795   const char *baseurl = cinfo->baseurl;
796
797   if (!baseurl)
798     {
799       if (!cinfo->metalink && !cinfo->mirrorlist)
800         return 0;
801       if (file != cinfo->metalink && file != cinfo->mirrorlist)
802         {
803           unsigned char mlchksum[32];
804           Id mlchksumtype;
805           fp = curlfopen(cinfo, cinfo->metalink ? cinfo->metalink : cinfo->mirrorlist, 0, 0, 0, 0);
806           mlchksumtype = 0;
807           if (!fp)
808             return 0;
809           if (cinfo->metalink)
810             cinfo->baseurl = findmetalinkurl(fp, mlchksum, &mlchksumtype);
811           else
812             cinfo->baseurl = findmirrorlisturl(fp);
813           fclose(fp);
814           if (!cinfo->baseurl)
815             return 0;
816 #ifdef FEDORA
817           if (strchr(cinfo->baseurl, '$'))
818             {
819               char *b = yum_substitute(cinfo->repo->pool, cinfo->baseurl);
820               free(cinfo->baseurl);
821               cinfo->baseurl = strdup(b);
822             }
823 #endif
824           if (!chksumtype && mlchksumtype && !strcmp(file, "repodata/repomd.xml"))
825             {
826               chksumtype = mlchksumtype;
827               chksum = mlchksum;
828             }
829           return curlfopen(cinfo, file, uncompress, chksum, chksumtype, markincomplete);
830         }
831       snprintf(url, sizeof(url), "%s", file);
832     }
833   else
834     {
835       l = strlen(baseurl);
836       if (l && baseurl[l - 1] == '/')
837         snprintf(url, sizeof(url), "%s%s", baseurl, file);
838       else
839         snprintf(url, sizeof(url), "%s/%s", baseurl, file);
840     }
841   fd = opentmpfile();
842   // printf("url: %s\n", url);
843   if ((pid = fork()) == (pid_t)-1)
844     {
845       perror("fork");
846       exit(1);
847     }
848   if (pid == 0)
849     {
850       if (fd != 1)
851         {
852           dup2(fd, 1);
853           close(fd);
854         }
855       execlp("curl", "curl", "-f", "-s", "-L", url, (char *)0);
856       perror("curl");
857       _exit(0);
858     }
859   status = 0;
860   while (waitpid(pid, &status, 0) != pid)
861     ;
862   if (lseek(fd, 0, SEEK_END) == 0 && (!status || !chksumtype))
863     {
864       /* empty file */
865       close(fd);
866       return 0;
867     }
868   lseek(fd, 0, SEEK_SET);
869   if (status)
870     {
871       printf("%s: download error %d\n", file, status >> 8 ? status >> 8 : status);
872       if (markincomplete)
873         cinfo->incomplete = 1;
874       close(fd);
875       return 0;
876     }
877   if (chksumtype && !verify_checksum(fd, file, chksum, chksumtype))
878     {
879       if (markincomplete)
880         cinfo->incomplete = 1;
881       close(fd);
882       return 0;
883     }
884   fcntl(fd, F_SETFD, FD_CLOEXEC);
885   if (uncompress)
886     {
887       if (solv_xfopen_iscompressed(file) < 0)
888         {
889           printf("%s: unsupported compression\n", file);
890           if (markincomplete)
891             cinfo->incomplete = 1;
892           close(fd);
893           return 0;
894         }
895       fp = solv_xfopen_fd(file, fd, "r");
896     }
897   else
898     fp = fdopen(fd, "r");
899   if (!fp)
900     close(fd);
901   return fp;
902 }
903
904 #ifndef DEBIAN
905
906 static void
907 cleanupgpg(char *gpgdir)
908 {
909   char cmd[256];
910   snprintf(cmd, sizeof(cmd), "%s/pubring.gpg", gpgdir);
911   unlink(cmd);
912   snprintf(cmd, sizeof(cmd), "%s/pubring.gpg~", gpgdir);
913   unlink(cmd);
914   snprintf(cmd, sizeof(cmd), "%s/secring.gpg", gpgdir);
915   unlink(cmd);
916   snprintf(cmd, sizeof(cmd), "%s/trustdb.gpg", gpgdir);
917   unlink(cmd);
918   snprintf(cmd, sizeof(cmd), "%s/keys", gpgdir);
919   unlink(cmd);
920   rmdir(gpgdir);
921 }
922
923 int
924 checksig(Pool *sigpool, FILE *fp, FILE *sigfp)
925 {
926   char *gpgdir;
927   char *keysfile;
928   const char *pubkey;
929   char cmd[256];
930   FILE *kfp;
931   Solvable *s;
932   Id p;
933   off_t posfp, possigfp;
934   int r, nkeys;
935
936   gpgdir = mkdtemp(pool_tmpjoin(sigpool, "/var/tmp/solvgpg.XXXXXX", 0, 0));
937   if (!gpgdir)
938     return 0;
939   keysfile = pool_tmpjoin(sigpool, gpgdir, "/keys", 0);
940   if (!(kfp = fopen(keysfile, "w")) )
941     {
942       cleanupgpg(gpgdir);
943       return 0;
944     }
945   nkeys = 0;
946   for (p = 1, s = sigpool->solvables + p; p < sigpool->nsolvables; p++, s++)
947     {
948       if (!s->repo)
949         continue;
950       pubkey = solvable_lookup_str(s, SOLVABLE_DESCRIPTION);
951       if (!pubkey || !*pubkey)
952         continue;
953       if (fwrite(pubkey, strlen(pubkey), 1, kfp) != 1)
954         break;
955       if (fputc('\n', kfp) == EOF)      /* Just in case... */
956         break;
957       nkeys++;
958     }
959   if (fclose(kfp) || !nkeys)
960     {
961       cleanupgpg(gpgdir);
962       return 0;
963     }
964   snprintf(cmd, sizeof(cmd), "gpg2 -q --homedir %s --import %s", gpgdir, keysfile);
965   if (system(cmd))
966     {
967       fprintf(stderr, "key import error\n");
968       cleanupgpg(gpgdir);
969       return 0;
970     }
971   unlink(keysfile);
972   posfp = lseek(fileno(fp), 0, SEEK_CUR);
973   lseek(fileno(fp), 0, SEEK_SET);
974   possigfp = lseek(fileno(sigfp), 0, SEEK_CUR);
975   lseek(fileno(sigfp), 0, SEEK_SET);
976   snprintf(cmd, sizeof(cmd), "gpg -q --homedir %s --verify /dev/fd/%d /dev/fd/%d >/dev/null 2>&1", gpgdir, fileno(sigfp), fileno(fp));
977   fcntl(fileno(fp), F_SETFD, 0);        /* clear CLOEXEC */
978   fcntl(fileno(sigfp), F_SETFD, 0);     /* clear CLOEXEC */
979   r = system(cmd);
980   lseek(fileno(sigfp), possigfp, SEEK_SET);
981   lseek(fileno(fp), posfp, SEEK_SET);
982   fcntl(fileno(fp), F_SETFD, FD_CLOEXEC);
983   fcntl(fileno(sigfp), F_SETFD, FD_CLOEXEC);
984   cleanupgpg(gpgdir);
985   return r == 0 ? 1 : 0;
986 }
987
988 #else
989
990 static int
991 checksig(Pool *sigpool, FILE *fp, FILE *sigfp)
992 {
993   char cmd[256];
994   int r;
995
996   snprintf(cmd, sizeof(cmd), "gpgv -q --keyring /etc/apt/trusted.gpg /dev/fd/%d /dev/fd/%d >/dev/null 2>&1", fileno(sigfp), fileno(fp));
997   fcntl(fileno(fp), F_SETFD, 0);        /* clear CLOEXEC */
998   fcntl(fileno(sigfp), F_SETFD, 0);     /* clear CLOEXEC */
999   r = system(cmd);
1000   fcntl(fileno(fp), F_SETFD, FD_CLOEXEC);
1001   fcntl(fileno(sigfp), F_SETFD, FD_CLOEXEC);
1002   return r == 0 ? 1 : 0;
1003 }
1004
1005 #endif
1006
1007 static Pool *
1008 read_sigs()
1009 {
1010   Pool *sigpool = pool_create();
1011 #if defined(ENABLE_RPMDB_PUBKEY)
1012   Repo *repo = repo_create(sigpool, "rpmdbkeys");
1013   repo_add_rpmdb_pubkeys(repo, 0);
1014 #endif
1015   return sigpool;
1016 }
1017
1018 static int
1019 downloadchecksig(struct repoinfo *cinfo, FILE *fp, const char *sigurl, Pool **sigpool)
1020 {
1021   FILE *sigfp;
1022   sigfp = curlfopen(cinfo, sigurl, 0, 0, 0, 0);
1023   if (!sigfp)
1024     {
1025       printf(" unsigned, skipped\n");
1026       return 0;
1027     }
1028   if (!*sigpool)
1029     *sigpool = read_sigs();
1030   if (!checksig(*sigpool, fp, sigfp))
1031     {
1032       printf(" checksig failed, skipped\n");
1033       fclose(sigfp);
1034       return 0;
1035     }
1036   fclose(sigfp);
1037   return 1;
1038 }
1039
1040 #define CHKSUM_IDENT "1.1"
1041
1042 void
1043 calc_checksum_fp(FILE *fp, Id chktype, unsigned char *out)
1044 {
1045   char buf[4096];
1046   void *h = solv_chksum_create(chktype);
1047   int l;
1048
1049   solv_chksum_add(h, CHKSUM_IDENT, strlen(CHKSUM_IDENT));
1050   while ((l = fread(buf, 1, sizeof(buf), fp)) > 0)
1051     solv_chksum_add(h, buf, l);
1052   rewind(fp);
1053   solv_chksum_free(h, out);
1054 }
1055
1056 void
1057 calc_checksum_stat(struct stat *stb, Id chktype, unsigned char *cookie, unsigned char *out)
1058 {
1059   void *h = solv_chksum_create(chktype);
1060   solv_chksum_add(h, CHKSUM_IDENT, strlen(CHKSUM_IDENT));
1061   if (cookie)
1062     solv_chksum_add(h, cookie, 32);
1063   solv_chksum_add(h, &stb->st_dev, sizeof(stb->st_dev));
1064   solv_chksum_add(h, &stb->st_ino, sizeof(stb->st_ino));
1065   solv_chksum_add(h, &stb->st_size, sizeof(stb->st_size));
1066   solv_chksum_add(h, &stb->st_mtime, sizeof(stb->st_mtime));
1067   solv_chksum_free(h, out);
1068 }
1069
1070 void
1071 setarch(Pool *pool)
1072 {
1073   struct utsname un;
1074   if (uname(&un))
1075     {
1076       perror("uname");
1077       exit(1);
1078     }
1079   pool_setarch(pool, un.machine);
1080 }
1081
1082 char *
1083 calccachepath(Repo *repo, const char *repoext)
1084 {
1085   char *q, *p = pool_tmpjoin(repo->pool, SOLVCACHE_PATH, "/", repo->name);
1086   if (repoext)
1087     {
1088       p = pool_tmpappend(repo->pool, p, "_", repoext);
1089       p = pool_tmpappend(repo->pool, p, ".solvx", 0);
1090     }
1091   else
1092     p = pool_tmpappend(repo->pool, p, ".solv", 0);
1093   q = p + strlen(SOLVCACHE_PATH) + 1;
1094   if (*q == '.')
1095     *q = '_';
1096   for (; *q; q++)
1097     if (*q == '/')
1098       *q = '_';
1099   return p;
1100 }
1101
1102 int
1103 usecachedrepo(Repo *repo, const char *repoext, unsigned char *cookie, int mark)
1104 {
1105   FILE *fp;
1106   unsigned char mycookie[32];
1107   unsigned char myextcookie[32];
1108   struct repoinfo *cinfo;
1109   int flags;
1110
1111   cinfo = repo->appdata;
1112   if (!(fp = fopen(calccachepath(repo, repoext), "r")))
1113     return 0;
1114   if (fseek(fp, -sizeof(mycookie), SEEK_END) || fread(mycookie, sizeof(mycookie), 1, fp) != 1)
1115     {
1116       fclose(fp);
1117       return 0;
1118     }
1119   if (cookie && memcmp(cookie, mycookie, sizeof(mycookie)))
1120     {
1121       fclose(fp);
1122       return 0;
1123     }
1124   if (cinfo && !repoext)
1125     {
1126       if (fseek(fp, -sizeof(mycookie) * 2, SEEK_END) || fread(myextcookie, sizeof(myextcookie), 1, fp) != 1)
1127         {
1128           fclose(fp);
1129           return 0;
1130         }
1131     }
1132   rewind(fp);
1133
1134   flags = 0;
1135   if (repoext)
1136     {
1137       flags = REPO_USE_LOADING|REPO_EXTEND_SOLVABLES;
1138       if (strcmp(repoext, "DL") != 0)
1139         flags |= REPO_LOCALPOOL;        /* no local pool for DL so that we can compare IDs */
1140     }
1141
1142   if (repo_add_solv(repo, fp, flags))
1143     {
1144       fclose(fp);
1145       return 0;
1146     }
1147   if (cinfo && !repoext)
1148     {
1149       memcpy(cinfo->cookie, mycookie, sizeof(mycookie));
1150       memcpy(cinfo->extcookie, myextcookie, sizeof(myextcookie));
1151     }
1152   if (mark)
1153     futimens(fileno(fp), 0);    /* try to set modification time */
1154   fclose(fp);
1155   return 1;
1156 }
1157
1158 void
1159 writecachedrepo(Repo *repo, Repodata *info, const char *repoext, unsigned char *cookie)
1160 {
1161   FILE *fp;
1162   int i, fd;
1163   char *tmpl;
1164   struct repoinfo *cinfo;
1165   int onepiece;
1166
1167   cinfo = repo->appdata;
1168   if (cinfo && cinfo->incomplete)
1169     return;
1170   mkdir(SOLVCACHE_PATH, 0755);
1171   /* use dupjoin instead of tmpjoin because tmpl must survive repo_write */
1172   tmpl = solv_dupjoin(SOLVCACHE_PATH, "/", ".newsolv-XXXXXX");
1173   fd = mkstemp(tmpl);
1174   if (fd < 0)
1175     {
1176       free(tmpl);
1177       return;
1178     }
1179   fchmod(fd, 0444);
1180   if (!(fp = fdopen(fd, "w")))
1181     {
1182       close(fd);
1183       unlink(tmpl);
1184       free(tmpl);
1185       return;
1186     }
1187
1188   onepiece = 1;
1189   for (i = repo->start; i < repo->end; i++)
1190    if (repo->pool->solvables[i].repo != repo)
1191      break;
1192   if (i < repo->end)
1193     onepiece = 0;
1194
1195   if (!info)
1196     repo_write(repo, fp);
1197   else if (repoext)
1198     repodata_write(info, fp);
1199   else
1200     {
1201       int oldnrepodata = repo->nrepodata;
1202       repo->nrepodata = oldnrepodata > 2 ? 2 : oldnrepodata;    /* XXX: do this right */
1203       repo_write(repo, fp);
1204       repo->nrepodata = oldnrepodata;
1205       onepiece = 0;
1206     }
1207
1208   if (!repoext && cinfo)
1209     {
1210       if (!cinfo->extcookie[0])
1211         {
1212           /* create the ext cookie and append it */
1213           /* we just need some unique ID */
1214           struct stat stb;
1215           if (!fstat(fileno(fp), &stb))
1216             memset(&stb, 0, sizeof(stb));
1217           calc_checksum_stat(&stb, REPOKEY_TYPE_SHA256, cookie, cinfo->extcookie);
1218           if (cinfo->extcookie[0] == 0)
1219             cinfo->extcookie[0] = 1;
1220         }
1221       if (fwrite(cinfo->extcookie, 32, 1, fp) != 1)
1222         {
1223           fclose(fp);
1224           unlink(tmpl);
1225           free(tmpl);
1226           return;
1227         }
1228     }
1229   /* append our cookie describing the metadata state */
1230   if (fwrite(cookie, 32, 1, fp) != 1)
1231     {
1232       fclose(fp);
1233       unlink(tmpl);
1234       free(tmpl);
1235       return;
1236     }
1237   if (fclose(fp))
1238     {
1239       unlink(tmpl);
1240       free(tmpl);
1241       return;
1242     }
1243   if (onepiece)
1244     {
1245       /* switch to just saved repo to activate paging and save memory */
1246       FILE *fp = fopen(tmpl, "r");
1247       if (fp)
1248         {
1249           if (!repoext)
1250             {
1251               /* main repo */
1252               repo_empty(repo, 1);
1253               if (repo_add_solv(repo, fp, SOLV_ADD_NO_STUBS))
1254                 {
1255                   /* oops, no way to recover from here */
1256                   fprintf(stderr, "internal error\n");
1257                   exit(1);
1258                 }
1259             }
1260           else
1261             {
1262               int flags = REPO_USE_LOADING|REPO_EXTEND_SOLVABLES;
1263               /* make sure repodata contains complete repo */
1264               /* (this is how repodata_write saves it) */
1265               repodata_extend_block(info, repo->start, repo->end - repo->start);
1266               info->state = REPODATA_LOADING;
1267               if (strcmp(repoext, "DL") != 0)
1268                 flags |= REPO_LOCALPOOL;
1269               repo_add_solv(repo, fp, flags);
1270               info->state = REPODATA_AVAILABLE; /* in case the load failed */
1271             }
1272           fclose(fp);
1273         }
1274     }
1275   if (!rename(tmpl, calccachepath(repo, repoext)))
1276     unlink(tmpl);
1277   free(tmpl);
1278 }
1279
1280
1281 #ifdef ENABLE_RPMMD
1282 /* repomd helpers */
1283
1284 static inline const char *
1285 repomd_find(Repo *repo, const char *what, const unsigned char **chksump, Id *chksumtypep)
1286 {
1287   Pool *pool = repo->pool;
1288   Dataiterator di;
1289   const char *filename;
1290
1291   filename = 0;
1292   *chksump = 0;
1293   *chksumtypep = 0;
1294   dataiterator_init(&di, pool, repo, SOLVID_META, REPOSITORY_REPOMD_TYPE, what, SEARCH_STRING);
1295   dataiterator_prepend_keyname(&di, REPOSITORY_REPOMD);
1296   if (dataiterator_step(&di))
1297     {
1298       dataiterator_setpos_parent(&di);
1299       filename = pool_lookup_str(pool, SOLVID_POS, REPOSITORY_REPOMD_LOCATION);
1300       *chksump = pool_lookup_bin_checksum(pool, SOLVID_POS, REPOSITORY_REPOMD_CHECKSUM, chksumtypep);
1301     }
1302   dataiterator_free(&di);
1303   if (filename && !*chksumtypep)
1304     {
1305       printf("no %s file checksum!\n", what);
1306       filename = 0;
1307     }
1308   return filename;
1309 }
1310
1311 int
1312 repomd_add_ext(Repo *repo, Repodata *data, const char *what)
1313 {
1314   Id chksumtype, handle;
1315   const unsigned char *chksum;
1316   const char *filename;
1317
1318   filename = repomd_find(repo, what, &chksum, &chksumtype);
1319   if (!filename)
1320     return 0;
1321   if (!strcmp(what, "prestodelta"))
1322     what = "deltainfo";
1323   handle = repodata_new_handle(data);
1324   repodata_set_poolstr(data, handle, REPOSITORY_REPOMD_TYPE, what);
1325   repodata_set_str(data, handle, REPOSITORY_REPOMD_LOCATION, filename);
1326   repodata_set_bin_checksum(data, handle, REPOSITORY_REPOMD_CHECKSUM, chksumtype, chksum);
1327   if (!strcmp(what, "deltainfo"))
1328     {
1329       repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOSITORY_DELTAINFO);
1330       repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_FLEXARRAY);
1331     }
1332   if (!strcmp(what, "filelists"))
1333     {
1334       repodata_add_idarray(data, handle, REPOSITORY_KEYS, SOLVABLE_FILELIST);
1335       repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_DIRSTRARRAY);
1336     }
1337   repodata_add_flexarray(data, SOLVID_META, REPOSITORY_EXTERNAL, handle);
1338   return 1;
1339 }
1340
1341 int
1342 repomd_load_ext(Repo *repo, Repodata *data)
1343 {
1344   const char *filename, *repomdtype;
1345   char ext[3];
1346   FILE *fp;
1347   struct repoinfo *cinfo;
1348   const unsigned char *filechksum;
1349   Id filechksumtype;
1350   int r = 0;
1351
1352   cinfo = repo->appdata;
1353   repomdtype = repodata_lookup_str(data, SOLVID_META, REPOSITORY_REPOMD_TYPE);
1354   if (!repomdtype)
1355     return 0;
1356   if (!strcmp(repomdtype, "filelists"))
1357     strcpy(ext, "FL");
1358   else if (!strcmp(repomdtype, "deltainfo"))
1359     strcpy(ext, "DL");
1360   else
1361     return 0;
1362   printf("[%s:%s", repo->name, ext);
1363   if (usecachedrepo(repo, ext, cinfo->extcookie, 0))
1364     {
1365       printf(" cached]\n"); fflush(stdout);
1366       return 1;
1367     }
1368   printf(" fetching]\n"); fflush(stdout);
1369   filename = repodata_lookup_str(data, SOLVID_META, REPOSITORY_REPOMD_LOCATION);
1370   filechksumtype = 0;
1371   filechksum = repodata_lookup_bin_checksum(data, SOLVID_META, REPOSITORY_REPOMD_CHECKSUM, &filechksumtype);
1372   if ((fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 0)) == 0)
1373     return 0;
1374   if (!strcmp(ext, "FL"))
1375     r = repo_add_rpmmd(repo, fp, ext, REPO_USE_LOADING|REPO_EXTEND_SOLVABLES|REPO_LOCALPOOL);
1376   else if (!strcmp(ext, "DL"))
1377     r = repo_add_deltainfoxml(repo, fp, REPO_USE_LOADING);
1378   fclose(fp);
1379   if (r)
1380     {
1381       printf("%s\n", pool_errstr(repo->pool));
1382       return 0;
1383     }
1384   writecachedrepo(repo, data, ext, cinfo->extcookie);
1385   return 1;
1386 }
1387
1388 #endif
1389
1390
1391 #ifdef ENABLE_SUSEREPO
1392 /* susetags helpers */
1393
1394 static inline const char *
1395 susetags_find(Repo *repo, const char *what, const unsigned char **chksump, Id *chksumtypep)
1396 {
1397   Pool *pool = repo->pool;
1398   Dataiterator di;
1399   const char *filename;
1400
1401   filename = 0;
1402   *chksump = 0;
1403   *chksumtypep = 0;
1404   dataiterator_init(&di, pool, repo, SOLVID_META, SUSETAGS_FILE_NAME, what, SEARCH_STRING);
1405   dataiterator_prepend_keyname(&di, SUSETAGS_FILE);
1406   if (dataiterator_step(&di))
1407     {
1408       dataiterator_setpos_parent(&di);
1409       *chksump = pool_lookup_bin_checksum(pool, SOLVID_POS, SUSETAGS_FILE_CHECKSUM, chksumtypep);
1410       filename = what;
1411     }
1412   dataiterator_free(&di);
1413   if (filename && !*chksumtypep)
1414     {
1415       printf("no %s file checksum!\n", what);
1416       filename = 0;
1417     }
1418   return filename;
1419 }
1420
1421 static Id susetags_langtags[] = {
1422   SOLVABLE_SUMMARY, REPOKEY_TYPE_STR,
1423   SOLVABLE_DESCRIPTION, REPOKEY_TYPE_STR,
1424   SOLVABLE_EULA, REPOKEY_TYPE_STR,
1425   SOLVABLE_MESSAGEINS, REPOKEY_TYPE_STR,
1426   SOLVABLE_MESSAGEDEL, REPOKEY_TYPE_STR,
1427   SOLVABLE_CATEGORY, REPOKEY_TYPE_ID,
1428   0, 0
1429 };
1430
1431 void
1432 susetags_add_ext(Repo *repo, Repodata *data)
1433 {
1434   Pool *pool = repo->pool;
1435   Dataiterator di;
1436   char ext[3];
1437   Id handle, filechksumtype;
1438   const unsigned char *filechksum;
1439   int i;
1440
1441   dataiterator_init(&di, pool, repo, SOLVID_META, SUSETAGS_FILE_NAME, 0, 0);
1442   dataiterator_prepend_keyname(&di, SUSETAGS_FILE);
1443   while (dataiterator_step(&di))
1444     {
1445       if (strncmp(di.kv.str, "packages.", 9) != 0)
1446         continue;
1447       if (!strcmp(di.kv.str + 9, "gz"))
1448         continue;
1449       if (!di.kv.str[9] || !di.kv.str[10] || (di.kv.str[11] && di.kv.str[11] != '.'))
1450         continue;
1451       ext[0] = di.kv.str[9];
1452       ext[1] = di.kv.str[10];
1453       ext[2] = 0;
1454       if (!strcmp(ext, "en"))
1455         continue;
1456       if (!susetags_find(repo, di.kv.str, &filechksum, &filechksumtype))
1457         continue;
1458       handle = repodata_new_handle(data);
1459       repodata_set_str(data, handle, SUSETAGS_FILE_NAME, di.kv.str);
1460       if (filechksumtype)
1461         repodata_set_bin_checksum(data, handle, SUSETAGS_FILE_CHECKSUM, filechksumtype, filechksum);
1462       if (!strcmp(ext, "DU"))
1463         {
1464           repodata_add_idarray(data, handle, REPOSITORY_KEYS, SOLVABLE_DISKUSAGE);
1465           repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_DIRNUMNUMARRAY);
1466         }
1467       else if (!strcmp(ext, "FL"))
1468         {
1469           repodata_add_idarray(data, handle, REPOSITORY_KEYS, SOLVABLE_FILELIST);
1470           repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_DIRSTRARRAY);
1471         }
1472       else
1473         {
1474           for (i = 0; susetags_langtags[i]; i += 2)
1475             {
1476               repodata_add_idarray(data, handle, REPOSITORY_KEYS, pool_id2langid(pool, susetags_langtags[i], ext, 1));
1477               repodata_add_idarray(data, handle, REPOSITORY_KEYS, susetags_langtags[i + 1]);
1478             }
1479         }
1480       repodata_add_flexarray(data, SOLVID_META, REPOSITORY_EXTERNAL, handle);
1481     }
1482   dataiterator_free(&di);
1483 }
1484
1485 int
1486 susetags_load_ext(Repo *repo, Repodata *data)
1487 {
1488   const char *filename, *descrdir;
1489   Id defvendor;
1490   char ext[3];
1491   FILE *fp;
1492   struct repoinfo *cinfo;
1493   const unsigned char *filechksum;
1494   Id filechksumtype;
1495   int flags;
1496
1497   cinfo = repo->appdata;
1498   filename = repodata_lookup_str(data, SOLVID_META, SUSETAGS_FILE_NAME);
1499   if (!filename)
1500     return 0;
1501   /* susetags load */
1502   ext[0] = filename[9];
1503   ext[1] = filename[10];
1504   ext[2] = 0;
1505   printf("[%s:%s", repo->name, ext);
1506   if (usecachedrepo(repo, ext, cinfo->extcookie, 0))
1507     {
1508       printf(" cached]\n"); fflush(stdout);
1509       return 1;
1510     }
1511   printf(" fetching]\n"); fflush(stdout);
1512   defvendor = repo_lookup_id(repo, SOLVID_META, SUSETAGS_DEFAULTVENDOR);
1513   descrdir = repo_lookup_str(repo, SOLVID_META, SUSETAGS_DESCRDIR);
1514   if (!descrdir)
1515     descrdir = "suse/setup/descr";
1516   filechksumtype = 0;
1517   filechksum = repodata_lookup_bin_checksum(data, SOLVID_META, SUSETAGS_FILE_CHECKSUM, &filechksumtype);
1518   if ((fp = curlfopen(cinfo, pool_tmpjoin(repo->pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 0)) == 0)
1519     return 0;
1520   flags = REPO_USE_LOADING|REPO_EXTEND_SOLVABLES;
1521   if (strcmp(ext, "DL") != 0)
1522     flags |= REPO_LOCALPOOL;
1523   if (repo_add_susetags(repo, fp, defvendor, ext, flags))
1524     {
1525       fclose(fp);
1526       printf("%s\n", pool_errstr(repo->pool));
1527       return 0;
1528     }
1529   fclose(fp);
1530   writecachedrepo(repo, data, ext, cinfo->extcookie);
1531   return 1;
1532 }
1533 #endif
1534
1535
1536
1537 /* load callback */
1538
1539 int
1540 load_stub(Pool *pool, Repodata *data, void *dp)
1541 {
1542   struct repoinfo *cinfo = data->repo->appdata;
1543   switch (cinfo->type)
1544     {
1545 #ifdef ENABLE_SUSEREPO
1546     case TYPE_SUSETAGS:
1547       return susetags_load_ext(data->repo, data);
1548 #endif
1549 #ifdef ENABLE_RPMMD
1550     case TYPE_RPMMD:
1551       return repomd_load_ext(data->repo, data);
1552 #endif
1553     default:
1554       return 0;
1555     }
1556 }
1557
1558 static unsigned char installedcookie[32];
1559
1560 #ifdef ENABLE_DEBIAN
1561
1562 const char *
1563 debian_find_component(struct repoinfo *cinfo, FILE *fp, char *comp, const unsigned char **chksump, Id *chksumtypep)
1564 {
1565   char buf[4096];
1566   Id chksumtype;
1567   unsigned char *chksum;
1568   Id curchksumtype;
1569   int l, compl;
1570   char *ch, *fn, *bp;
1571   char *filename;
1572   static char *basearch;
1573   char *binarydir;
1574   int lbinarydir;
1575
1576   if (!basearch)
1577     {
1578       struct utsname un;
1579       if (uname(&un))
1580         {
1581           perror("uname");
1582           exit(1);
1583         }
1584       basearch = strdup(un.machine);
1585       if (basearch[0] == 'i' && basearch[1] && !strcmp(basearch + 2, "86"))
1586         basearch[1] = '3';
1587     }
1588   binarydir = solv_dupjoin("binary-", basearch, "/");
1589   lbinarydir = strlen(binarydir);
1590   compl = strlen(comp);
1591   rewind(fp);
1592   curchksumtype = 0;
1593   filename = 0;
1594   chksum = solv_malloc(32);
1595   chksumtype = 0;
1596   while(fgets(buf, sizeof(buf), fp))
1597     {
1598       l = strlen(buf);
1599       if (l == 0)
1600         continue;
1601       while (l && (buf[l - 1] == '\n' || buf[l - 1] == ' ' || buf[l - 1] == '\t'))
1602         buf[--l] = 0;
1603       if (!strncasecmp(buf, "MD5Sum:", 7))
1604         {
1605           curchksumtype = REPOKEY_TYPE_MD5;
1606           continue;
1607         }
1608       if (!strncasecmp(buf, "SHA1:", 5))
1609         {
1610           curchksumtype = REPOKEY_TYPE_SHA1;
1611           continue;
1612         }
1613       if (!strncasecmp(buf, "SHA256:", 7))
1614         {
1615           curchksumtype = REPOKEY_TYPE_SHA256;
1616           continue;
1617         }
1618       if (!curchksumtype)
1619         continue;
1620       bp = buf;
1621       if (*bp++ != ' ')
1622         {
1623           curchksumtype = 0;
1624           continue;
1625         }
1626       ch = bp;
1627       while (*bp && *bp != ' ' && *bp != '\t')
1628         bp++;
1629       if (!*bp)
1630         continue;
1631       *bp++ = 0;
1632       while (*bp == ' ' || *bp == '\t')
1633         bp++;
1634       while (*bp && *bp != ' ' && *bp != '\t')
1635         bp++;
1636       if (!*bp)
1637         continue;
1638       while (*bp == ' ' || *bp == '\t')
1639         bp++;
1640       fn = bp;
1641       if (strncmp(fn, comp, compl) != 0 || fn[compl] != '/')
1642         continue;
1643       bp += compl + 1;
1644       if (strncmp(bp, binarydir, lbinarydir))
1645         continue;
1646       bp += lbinarydir;
1647       if (!strcmp(bp, "Packages") || !strcmp(bp, "Packages.gz"))
1648         {
1649           unsigned char curchksum[32];
1650           int curl;
1651           if (filename && !strcmp(bp, "Packages"))
1652             continue;
1653           curl = solv_chksum_len(curchksumtype);
1654           if (!curl || (chksumtype && solv_chksum_len(chksumtype) > curl))
1655             continue;
1656           if (solv_hex2bin((const char **)&ch, curchksum, sizeof(curchksum)) != curl)
1657             continue;
1658           solv_free(filename);
1659           filename = strdup(fn);
1660           chksumtype = curchksumtype;
1661           memcpy(chksum, curchksum, curl);
1662         }
1663     }
1664   free(binarydir);
1665   if (filename)
1666     {
1667       fn = solv_dupjoin("/", filename, 0);
1668       solv_free(filename);
1669       filename = solv_dupjoin("dists/", cinfo->name, fn);
1670       solv_free(fn);
1671     }
1672   if (!chksumtype)
1673     chksum = solv_free(chksum);
1674   *chksump = chksum;
1675   *chksumtypep = chksumtype;
1676   return filename;
1677 }
1678 #endif
1679
1680 void
1681 read_repos(Pool *pool, struct repoinfo *repoinfos, int nrepoinfos)
1682 {
1683   Repo *repo;
1684   struct repoinfo *cinfo;
1685   int i;
1686   FILE *fp;
1687   const char *filename;
1688   const unsigned char *filechksum;
1689   Id filechksumtype;
1690 #ifdef ENABLE_SUSEREPO
1691   const char *descrdir;
1692   int defvendor;
1693 #endif
1694   struct stat stb;
1695   Pool *sigpool = 0;
1696 #if defined(ENABLE_SUSEREPO) || defined(ENABLE_RPMMD)
1697   Repodata *data;
1698 #endif
1699   int dorefresh;
1700 #if defined(ENABLE_DEBIAN)
1701   FILE *fpr;
1702   int j;
1703 #endif
1704
1705   repo = repo_create(pool, "@System");
1706 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
1707   printf("rpm database:");
1708   if (stat(pool_prepend_rootdir_tmp(pool, "/var/lib/rpm/Packages"), &stb))
1709     memset(&stb, 0, sizeof(stb));
1710 #endif
1711 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
1712   printf("dpgk database:");
1713   if (stat(pool_prepend_rootdir_tmp(pool, "/var/lib/dpkg/status"), &stb))
1714     memset(&stb, 0, sizeof(stb));
1715 #endif
1716 #ifdef NOSYSTEM
1717   printf("no installed database:");
1718   memset(&stb, 0, sizeof(stb));
1719 #endif
1720   calc_checksum_stat(&stb, REPOKEY_TYPE_SHA256, 0, installedcookie);
1721   if (usecachedrepo(repo, 0, installedcookie, 0))
1722     printf(" cached\n");
1723   else
1724     {
1725 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
1726       FILE *ofp = 0;
1727 #endif
1728       printf(" reading\n");
1729
1730 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
1731 # if defined(ENABLE_SUSEREPO) && defined(PRODUCTS_PATH)
1732       if (repo_add_products(repo, PRODUCTS_PATH, REPO_NO_INTERNALIZE | REPO_USE_ROOTDIR))
1733         {
1734           fprintf(stderr, "product reading failed: %s\n", pool_errstr(pool));
1735           exit(1);
1736         }
1737 # endif
1738       ofp = fopen(calccachepath(repo, 0), "r");
1739       if (repo_add_rpmdb_reffp(repo, ofp, REPO_REUSE_REPODATA | REPO_USE_ROOTDIR))
1740         {
1741           fprintf(stderr, "installed db: %s\n", pool_errstr(pool));
1742           exit(1);
1743         }
1744       if (ofp)
1745         fclose(ofp);
1746 #endif
1747 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
1748       if (repo_add_debdb(repo, REPO_REUSE_REPODATA | REPO_USE_ROOTDIR))
1749         {
1750           fprintf(stderr, "installed db: %s\n", pool_errstr(pool));
1751           exit(1);
1752         }
1753 #endif
1754       writecachedrepo(repo, 0, 0, installedcookie);
1755     }
1756   pool_set_installed(pool, repo);
1757
1758   for (i = 0; i < nrepoinfos; i++)
1759     {
1760       cinfo = repoinfos + i;
1761       if (!cinfo->enabled)
1762         continue;
1763
1764       repo = repo_create(pool, cinfo->alias);
1765       cinfo->repo = repo;
1766       repo->appdata = cinfo;
1767       repo->priority = 99 - cinfo->priority;
1768
1769       dorefresh = cinfo->autorefresh;
1770       if (dorefresh && cinfo->metadata_expire && stat(calccachepath(repo, 0), &stb) == 0)
1771         {
1772           if (cinfo->metadata_expire == -1 || time(0) - stb.st_mtime < cinfo->metadata_expire)
1773             dorefresh = 0;
1774         }
1775       if (!dorefresh && usecachedrepo(repo, 0, 0, 0))
1776         {
1777           printf("repo '%s':", cinfo->alias);
1778           printf(" cached\n");
1779           continue;
1780         }
1781       switch (cinfo->type)
1782         {
1783 #ifdef ENABLE_RPMMD
1784         case TYPE_RPMMD:
1785           printf("rpmmd repo '%s':", cinfo->alias);
1786           fflush(stdout);
1787           if ((fp = curlfopen(cinfo, "repodata/repomd.xml", 0, 0, 0, 0)) == 0)
1788             {
1789               printf(" no repomd.xml file, skipped\n");
1790               repo_free(repo, 1);
1791               cinfo->repo = 0;
1792               break;
1793             }
1794           calc_checksum_fp(fp, REPOKEY_TYPE_SHA256, cinfo->cookie);
1795           if (usecachedrepo(repo, 0, cinfo->cookie, 1))
1796             {
1797               printf(" cached\n");
1798               fclose(fp);
1799               break;
1800             }
1801           if (cinfo->repo_gpgcheck && !downloadchecksig(cinfo, fp, "repodata/repomd.xml.asc", &sigpool))
1802             {
1803               fclose(fp);
1804               break;
1805             }
1806           if (repo_add_repomdxml(repo, fp, 0))
1807             {
1808               printf("repomd.xml: %s\n", pool_errstr(pool));
1809               fclose(fp);
1810               break;    /* hopeless */
1811             }
1812           fclose(fp);
1813           printf(" fetching\n");
1814           filename = repomd_find(repo, "primary", &filechksum, &filechksumtype);
1815           if (filename && (fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1816             {
1817               if (repo_add_rpmmd(repo, fp, 0, 0))
1818                 {
1819                   printf("primary: %s\n", pool_errstr(pool));
1820                   cinfo->incomplete = 1;
1821                 }
1822               fclose(fp);
1823             }
1824           if (cinfo->incomplete)
1825             break;      /* hopeless */
1826
1827           filename = repomd_find(repo, "updateinfo", &filechksum, &filechksumtype);
1828           if (filename && (fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1829             {
1830               if (repo_add_updateinfoxml(repo, fp, 0))
1831                 {
1832                   printf("updateinfo: %s\n", pool_errstr(pool));
1833                   cinfo->incomplete = 1;
1834                 }
1835               fclose(fp);
1836             }
1837
1838           data = repo_add_repodata(repo, 0);
1839           if (!repomd_add_ext(repo, data, "deltainfo"))
1840             repomd_add_ext(repo, data, "prestodelta");
1841           repomd_add_ext(repo, data, "filelists");
1842           repodata_internalize(data);
1843           if (!cinfo->incomplete)
1844             writecachedrepo(repo, 0, 0, cinfo->cookie);
1845           repodata_create_stubs(repo_last_repodata(repo));
1846           break;
1847 #endif
1848
1849 #ifdef ENABLE_SUSEREPO
1850         case TYPE_SUSETAGS:
1851           printf("susetags repo '%s':", cinfo->alias);
1852           fflush(stdout);
1853           descrdir = 0;
1854           defvendor = 0;
1855           if ((fp = curlfopen(cinfo, "content", 0, 0, 0, 0)) == 0)
1856             {
1857               printf(" no content file, skipped\n");
1858               repo_free(repo, 1);
1859               cinfo->repo = 0;
1860               break;
1861             }
1862           calc_checksum_fp(fp, REPOKEY_TYPE_SHA256, cinfo->cookie);
1863           if (usecachedrepo(repo, 0, cinfo->cookie, 1))
1864             {
1865               printf(" cached\n");
1866               fclose(fp);
1867               break;
1868             }
1869           if (cinfo->repo_gpgcheck && !downloadchecksig(cinfo, fp, "content.asc", &sigpool))
1870             {
1871               fclose(fp);
1872               break;
1873             }
1874           if (repo_add_content(repo, fp, 0))
1875             {
1876               printf("content: %s\n", pool_errstr(pool));
1877               fclose(fp);
1878               break;    /* hopeless */
1879             }
1880           fclose(fp);
1881           defvendor = repo_lookup_id(repo, SOLVID_META, SUSETAGS_DEFAULTVENDOR);
1882           descrdir = repo_lookup_str(repo, SOLVID_META, SUSETAGS_DESCRDIR);
1883           if (!descrdir)
1884             descrdir = "suse/setup/descr";
1885           filename = susetags_find(repo, "packages.gz", &filechksum, &filechksumtype);
1886           if (!filename)
1887             filename = susetags_find(repo, "packages", &filechksum, &filechksumtype);
1888           if (!filename)
1889             {
1890               printf(" no packages file entry, skipped\n");
1891               break;
1892             }
1893           printf(" fetching\n");
1894           if ((fp = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) == 0)
1895             break;      /* hopeless */
1896           if (repo_add_susetags(repo, fp, defvendor, 0, REPO_NO_INTERNALIZE|SUSETAGS_RECORD_SHARES))
1897             {
1898               printf("packages: %s\n", pool_errstr(pool));
1899               fclose(fp);
1900               cinfo->incomplete = 1;
1901               break;    /* hopeless */
1902             }
1903           fclose(fp);
1904           /* add default language */
1905           filename = susetags_find(repo, "packages.en.gz", &filechksum, &filechksumtype);
1906           if (!filename)
1907             filename = susetags_find(repo, "packages.en", &filechksum, &filechksumtype);
1908           if (filename)
1909             {
1910               if ((fp = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1911                 {
1912                   if (repo_add_susetags(repo, fp, defvendor, 0, REPO_NO_INTERNALIZE|REPO_REUSE_REPODATA|REPO_EXTEND_SOLVABLES))
1913                     {
1914                       printf("packages.en: %s\n", pool_errstr(pool));
1915                       cinfo->incomplete = 1;
1916                     }
1917                   fclose(fp);
1918                 }
1919             }
1920           filename = susetags_find(repo, "patterns", &filechksum, &filechksumtype);
1921           if (filename)
1922             {
1923               if ((fp = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1924                 {
1925                   char pbuf[256];
1926                   while (fgets(pbuf, sizeof(pbuf), fp))
1927                     {
1928                       int l = strlen(pbuf);
1929                       FILE *fp2;
1930                       if (l && pbuf[l - 1] == '\n')
1931                         pbuf[--l] = 0;
1932                       if (!*pbuf || *pbuf == '.' || strchr(pbuf, '/') != 0)
1933                         continue;
1934                       filename = susetags_find(repo, pbuf, &filechksum, &filechksumtype);
1935                       if (filename && (fp2 = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1936                         {
1937                           if (repo_add_susetags(repo, fp2, defvendor, 0, REPO_NO_INTERNALIZE))
1938                             {
1939                               printf("%s: %s\n", pbuf, pool_errstr(pool));
1940                               cinfo->incomplete = 1;
1941                             }
1942                           fclose(fp2);
1943                         }
1944                     }
1945                   fclose(fp);
1946                 }
1947             }
1948           repo_internalize(repo);
1949           data = repo_add_repodata(repo, 0);
1950           susetags_add_ext(repo, data);
1951           repodata_internalize(data);
1952           if (!cinfo->incomplete)
1953             writecachedrepo(repo, 0, 0, cinfo->cookie);
1954           repodata_create_stubs(repo_last_repodata(repo));
1955           break;
1956 #endif
1957
1958 #if defined(ENABLE_DEBIAN)
1959         case TYPE_DEBIAN:
1960           printf("debian repo '%s':", cinfo->alias);
1961           fflush(stdout);
1962           filename = solv_dupjoin("dists/", cinfo->name, "/Release");
1963           if ((fpr = curlfopen(cinfo, filename, 0, 0, 0, 0)) == 0)
1964             {
1965               printf(" no Release file, skipped\n");
1966               repo_free(repo, 1);
1967               cinfo->repo = 0;
1968               free((char *)filename);
1969               break;
1970             }
1971           solv_free((char *)filename);
1972           if (cinfo->repo_gpgcheck)
1973             {
1974               filename = solv_dupjoin("dists/", cinfo->name, "/Release.gpg");
1975               if (!downloadchecksig(cinfo, fpr, filename, &sigpool))
1976                 {
1977                   fclose(fpr);
1978                   solv_free((char *)filename);
1979                   break;
1980                 }
1981               solv_free((char *)filename);
1982             }
1983           calc_checksum_fp(fpr, REPOKEY_TYPE_SHA256, cinfo->cookie);
1984           if (usecachedrepo(repo, 0, cinfo->cookie, 1))
1985             {
1986               printf(" cached\n");
1987               fclose(fpr);
1988               break;
1989             }
1990           printf(" fetching\n");
1991           for (j = 0; j < cinfo->ncomponents; j++)
1992             {
1993               if (!(filename = debian_find_component(cinfo, fpr, cinfo->components[j], &filechksum, &filechksumtype)))
1994                 {
1995                   printf("[component %s not found]\n", cinfo->components[j]);
1996                   continue;
1997                 }
1998               if ((fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1999                 {
2000                   if (repo_add_debpackages(repo, fp, 0))
2001                     {
2002                       printf("component %s: %s\n", cinfo->components[j], pool_errstr(pool));
2003                       cinfo->incomplete = 1;
2004                     }
2005                   fclose(fp);
2006                 }
2007               solv_free((char *)filechksum);
2008               solv_free((char *)filename);
2009             }
2010           fclose(fpr);
2011           if (!cinfo->incomplete)
2012             writecachedrepo(repo, 0, 0, cinfo->cookie);
2013           break;
2014 #endif
2015
2016         default:
2017           printf("unsupported repo '%s': skipped\n", cinfo->alias);
2018           repo_free(repo, 1);
2019           cinfo->repo = 0;
2020           break;
2021         }
2022     }
2023   if (sigpool)
2024     pool_free(sigpool);
2025 }
2026
2027 int
2028 yesno(const char *str)
2029 {
2030   char inbuf[128], *ip;
2031
2032   for (;;)
2033     {
2034       printf("%s", str);
2035       fflush(stdout);
2036       *inbuf = 0;
2037       if (!(ip = fgets(inbuf, sizeof(inbuf), stdin)))
2038         {
2039           printf("Abort.\n");
2040           exit(1);
2041         }
2042       while (*ip == ' ' || *ip == '\t')
2043         ip++;
2044       if (*ip == 'q')
2045         {
2046           printf("Abort.\n");
2047           exit(1);
2048         }
2049       if (*ip == 'y' || *ip == 'n')
2050         return *ip == 'y' ? 1 : 0;
2051     }
2052 }
2053
2054 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2055
2056 struct fcstate {
2057   FILE **newpkgsfps;
2058   Queue *checkq;
2059   int newpkgscnt;
2060   void *rpmstate;
2061 };
2062
2063 static void *
2064 fileconflict_cb(Pool *pool, Id p, void *cbdata)
2065 {
2066   struct fcstate *fcstate = cbdata;
2067   Solvable *s;
2068   Id rpmdbid;
2069   int i;
2070   FILE *fp;
2071
2072   s = pool_id2solvable(pool, p);
2073   if (pool->installed && s->repo == pool->installed)
2074     {
2075       if (!s->repo->rpmdbid)
2076         return 0;
2077       rpmdbid = s->repo->rpmdbid[p - s->repo->start];
2078       if (!rpmdbid)
2079         return 0;
2080       return rpm_byrpmdbid(fcstate->rpmstate, rpmdbid);
2081     }
2082   for (i = 0; i < fcstate->newpkgscnt; i++)
2083     if (fcstate->checkq->elements[i] == p)
2084       break;
2085   if (i == fcstate->newpkgscnt)
2086     return 0;
2087   fp = fcstate->newpkgsfps[i];
2088   if (!fp)
2089     return 0;
2090   rewind(fp);
2091   return rpm_byfp(fcstate->rpmstate, fp, pool_solvable2str(pool, s));
2092 }
2093
2094
2095 void
2096 runrpm(const char *arg, const char *name, int dupfd3, const char *rootdir)
2097 {
2098   pid_t pid;
2099   int status;
2100
2101   if ((pid = fork()) == (pid_t)-1)
2102     {
2103       perror("fork");
2104       exit(1);
2105     }
2106   if (pid == 0)
2107     {
2108       if (!rootdir)
2109         rootdir = "/";
2110       if (dupfd3 != -1 && dupfd3 != 3)
2111         {
2112           dup2(dupfd3, 3);
2113           close(dupfd3);
2114         }
2115       if (dupfd3 != -1)
2116         fcntl(3, F_SETFD, 0);   /* clear CLOEXEC */
2117       if (strcmp(arg, "-e") == 0)
2118         execlp("rpm", "rpm", arg, "--nodeps", "--nodigest", "--nosignature", "--root", rootdir, name, (char *)0);
2119       else
2120         execlp("rpm", "rpm", arg, "--force", "--nodeps", "--nodigest", "--nosignature", "--root", rootdir, name, (char *)0);
2121       perror("rpm");
2122       _exit(0);
2123     }
2124   while (waitpid(pid, &status, 0) != pid)
2125     ;
2126   if (status)
2127     {
2128       printf("rpm failed\n");
2129       exit(1);
2130     }
2131 }
2132
2133 #endif
2134
2135 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
2136
2137 void
2138 rundpkg(const char *arg, const char *name, int dupfd3, const char *rootdir)
2139 {
2140   pid_t pid;
2141   int status;
2142
2143   if ((pid = fork()) == (pid_t)-1)
2144     {
2145       perror("fork");
2146       exit(1);
2147     }
2148   if (pid == 0)
2149     {
2150       if (!rootdir)
2151         rootdir = "/";
2152       if (dupfd3 != -1 && dupfd3 != 3)
2153         {
2154           dup2(dupfd3, 3);
2155           close(dupfd3);
2156         }
2157       if (dupfd3 != -1)
2158         fcntl(3, F_SETFD, 0);   /* clear CLOEXEC */
2159       if (strcmp(arg, "--install") == 0)
2160         execlp("dpkg", "dpkg", "--install", "--root", rootdir, "--force", "all", name, (char *)0);
2161       else
2162         execlp("dpkg", "dpkg", "--remove", "--root", rootdir, "--force", "all", name, (char *)0);
2163       perror("dpkg");
2164       _exit(0);
2165     }
2166   while (waitpid(pid, &status, 0) != pid)
2167     ;
2168   if (status)
2169     {
2170       printf("dpkg failed\n");
2171       exit(1);
2172     }
2173 }
2174
2175 #endif
2176
2177 #ifdef SUSE
2178 static Id
2179 nscallback(Pool *pool, void *data, Id name, Id evr)
2180 {
2181   if (name == NAMESPACE_PRODUCTBUDDY)
2182     {
2183       /* SUSE specific hack: each product has an associated rpm */
2184       Solvable *s = pool->solvables + evr;
2185       Id p, pp, cap;
2186       Id bestp = 0;
2187
2188       cap = pool_str2id(pool, pool_tmpjoin(pool, "product(", pool_id2str(pool, s->name) + 8, ")"), 0);
2189       if (!cap)
2190         return 0;
2191       cap = pool_rel2id(pool, cap, s->evr, REL_EQ, 0);
2192       if (!cap)
2193         return 0;
2194       FOR_PROVIDES(p, pp, cap)
2195         {
2196           Solvable *ps = pool->solvables + p;
2197           if (ps->repo == s->repo && ps->arch == s->arch)
2198             if (!bestp || pool_evrcmp(pool, pool->solvables[bestp].evr, ps->evr, EVRCMP_COMPARE) < 0)
2199               bestp = p;
2200         }
2201       return bestp;
2202     }
2203 #if 0
2204   if (name == NAMESPACE_LANGUAGE)
2205     {
2206       if (!strcmp(pool_id2str(pool, evr), "ja"))
2207         return 1;
2208       if (!strcmp(pool_id2str(pool, evr), "de"))
2209         return 1;
2210       if (!strcmp(pool_id2str(pool, evr), "en"))
2211         return 1;
2212       if (!strcmp(pool_id2str(pool, evr), "en_US"))
2213         return 1;
2214     }
2215 #endif
2216   return 0;
2217 }
2218 #endif
2219
2220 #ifdef SOFTLOCKS_PATH
2221 void
2222 addsoftlocks(Pool *pool, Queue *job)
2223 {
2224   FILE *fp;
2225   Id type, id, p, pp;
2226   char *bp, *ep, buf[4096];
2227
2228   if ((fp = fopen(SOFTLOCKS_PATH, "r")) == 0)
2229     return;
2230   while((bp = fgets(buf, sizeof(buf), fp)) != 0)
2231     {
2232       while (*bp == ' ' || *bp == '\t')
2233         bp++;
2234       if (!*bp || *bp == '#')
2235         continue;
2236       for (ep = bp; *ep; ep++)
2237         if (*ep == ' ' || *ep == '\t' || *ep == '\n')
2238           break;
2239       *ep = 0;
2240       type = SOLVER_SOLVABLE_NAME;
2241       if (!strncmp(bp, "provides:", 9) && bp[9])
2242         {
2243           type = SOLVER_SOLVABLE_PROVIDES;
2244           bp += 9;
2245         }
2246       id = pool_str2id(pool, bp, 1);
2247       if (pool->installed)
2248         {
2249           FOR_JOB_SELECT(p, pp, type, id)
2250             if (pool->solvables[p].repo == pool->installed)
2251               break;
2252           if (p)
2253             continue;   /* ignore, as it is already installed */
2254         }
2255       queue_push2(job, SOLVER_LOCK|SOLVER_WEAK|type, id);
2256     }
2257   fclose(fp);
2258 }
2259 #endif
2260
2261
2262 #if defined(ENABLE_RPMDB)
2263
2264 static void
2265 rewrite_repos(Pool *pool, Queue *addedfileprovides, Queue *addedfileprovides_inst)
2266 {
2267   Repo *repo;
2268   Repodata *data;
2269   Map providedids;
2270   Queue fileprovidesq;
2271   int i, j, n;
2272   struct repoinfo *cinfo;
2273
2274   map_init(&providedids, pool->ss.nstrings);
2275   queue_init(&fileprovidesq);
2276   for (i = 0; i < addedfileprovides->count; i++)
2277     MAPSET(&providedids, addedfileprovides->elements[i]);
2278   FOR_REPOS(i, repo)
2279     {
2280       /* make sure all repodatas but the first are extensions */
2281       if (repo->nrepodata < 2)
2282         continue;
2283       cinfo = repo->appdata;
2284       if (cinfo && cinfo->incomplete)
2285         continue;
2286       data = repo_id2repodata(repo, 1);
2287       if (data->loadcallback)
2288         continue;
2289       for (j = 2; j < repo->nrepodata; j++)
2290         {
2291           Repodata *edata = repo_id2repodata(repo, j);
2292           if (!edata->loadcallback)
2293             break;
2294         }
2295       if (j < repo->nrepodata)
2296         continue;       /* found a non-externsion repodata, can't rewrite  */
2297       if (repodata_lookup_idarray(data, SOLVID_META, REPOSITORY_ADDEDFILEPROVIDES, &fileprovidesq))
2298         {
2299           if (repo == pool->installed && addedfileprovides_inst)
2300             {
2301               for (j = 0; j < addedfileprovides->count; j++)
2302                 MAPCLR(&providedids, addedfileprovides->elements[j]);
2303               for (j = 0; j < addedfileprovides_inst->count; j++)
2304                 MAPSET(&providedids, addedfileprovides_inst->elements[j]);
2305             }
2306           n = 0;
2307           for (j = 0; j < fileprovidesq.count; j++)
2308             if (MAPTST(&providedids, fileprovidesq.elements[j]))
2309               n++;
2310           if (repo == pool->installed && addedfileprovides_inst)
2311             {
2312               for (j = 0; j < addedfileprovides_inst->count; j++)
2313                 MAPCLR(&providedids, addedfileprovides_inst->elements[j]);
2314               for (j = 0; j < addedfileprovides->count; j++)
2315                 MAPSET(&providedids, addedfileprovides->elements[j]);
2316               if (n == addedfileprovides_inst->count)
2317                 continue;       /* nothing new added */
2318             }
2319           else if (n == addedfileprovides->count)
2320             continue;   /* nothing new added */
2321         }
2322       repodata_set_idarray(data, SOLVID_META, REPOSITORY_ADDEDFILEPROVIDES, repo == pool->installed && addedfileprovides_inst ? addedfileprovides_inst : addedfileprovides);
2323       repodata_internalize(data);
2324       writecachedrepo(repo, data, 0, cinfo ? cinfo->cookie : installedcookie);
2325     }
2326   queue_free(&fileprovidesq);
2327   map_free(&providedids);
2328 }
2329
2330 static void
2331 addfileprovides(Pool *pool)
2332 {
2333   Queue addedfileprovides;
2334   Queue addedfileprovides_inst;
2335
2336   queue_init(&addedfileprovides);
2337   queue_init(&addedfileprovides_inst);
2338   pool_addfileprovides_queue(pool, &addedfileprovides, &addedfileprovides_inst);
2339   if (addedfileprovides.count || addedfileprovides_inst.count)
2340     rewrite_repos(pool, &addedfileprovides, &addedfileprovides_inst);
2341   queue_free(&addedfileprovides);
2342   queue_free(&addedfileprovides_inst);
2343 }
2344
2345 #endif
2346
2347 #if defined(SUSE) || defined(FEDORA)
2348 static void
2349 add_patchjobs(Pool *pool, Queue *job)
2350 {
2351   Id p, pp;
2352   int pruneyou = 0;
2353   Map installedmap, multiversionmap;
2354   Solvable *s;
2355
2356   map_init(&multiversionmap, 0);
2357   map_init(&installedmap, pool->nsolvables);
2358   solver_calculate_multiversionmap(pool, job, &multiversionmap);
2359   if (pool->installed)
2360     FOR_REPO_SOLVABLES(pool->installed, p, s)
2361       MAPSET(&installedmap, p);
2362
2363   /* install all patches */
2364   for (p = 1; p < pool->nsolvables; p++)
2365     {
2366       const char *type;
2367       int r;
2368       Id p2;
2369
2370       s = pool->solvables + p;
2371       if (strncmp(pool_id2str(pool, s->name), "patch:", 6) != 0)
2372         continue;
2373       FOR_PROVIDES(p2, pp, s->name)
2374         {
2375           Solvable *s2 = pool->solvables + p2;
2376           if (s2->name != s->name)
2377             continue;
2378           r = pool_evrcmp(pool, s->evr, s2->evr, EVRCMP_COMPARE);
2379           if (r < 0 || (r == 0 && p > p2))
2380             break;
2381         }
2382       if (p2)
2383         continue;
2384       type = solvable_lookup_str(s, SOLVABLE_PATCHCATEGORY);
2385       if (type && !strcmp(type, "optional"))
2386         continue;
2387       r = solvable_trivial_installable_map(s, &installedmap, 0, &multiversionmap);
2388       if (r == -1)
2389         continue;
2390       if (solvable_lookup_bool(s, UPDATE_RESTART) && r == 0)
2391         {
2392           if (!pruneyou++)
2393             queue_empty(job);
2394         }
2395       else if (pruneyou)
2396         continue;
2397       queue_push2(job, SOLVER_SOLVABLE, p);
2398     }
2399   map_free(&installedmap);
2400   map_free(&multiversionmap);
2401 }
2402 #endif
2403
2404 #ifdef SUSE
2405 static void
2406 showdiskusagechanges(Transaction *trans)
2407 {
2408   DUChanges duc[4];
2409   int i;
2410
2411   /* XXX: use mountpoints here */
2412   duc[0].path = "/";
2413   duc[1].path = "/usr/share/man";
2414   duc[2].path = "/sbin";
2415   duc[3].path = "/etc";
2416   transaction_calc_duchanges(trans, duc, 4);
2417   for (i = 0; i < 4; i++)
2418     printf("duchanges %s: %d K  %d inodes\n", duc[i].path, duc[i].kbytes, duc[i].files);
2419 }
2420 #endif
2421
2422 #if defined(ENABLE_RPMDB)
2423 static FILE *
2424 trydeltadownload(Solvable *s, struct repoinfo *cinfo, const char *loc)
2425 {
2426   Pool *pool = s->repo->pool;
2427   Dataiterator di;
2428   Id pp;
2429   const unsigned char *chksum;
2430   Id chksumtype;
2431   FILE *retfp = 0;
2432   char *matchname = strdup(pool_id2str(pool, s->name));
2433
2434   dataiterator_init(&di, pool, s->repo, SOLVID_META, DELTA_PACKAGE_NAME, matchname, SEARCH_STRING);
2435   dataiterator_prepend_keyname(&di, REPOSITORY_DELTAINFO);
2436   while (dataiterator_step(&di))
2437     {
2438       Id baseevr, op;
2439
2440       dataiterator_setpos_parent(&di);
2441       if (pool_lookup_id(pool, SOLVID_POS, DELTA_PACKAGE_EVR) != s->evr ||
2442           pool_lookup_id(pool, SOLVID_POS, DELTA_PACKAGE_ARCH) != s->arch)
2443         continue;
2444       baseevr = pool_lookup_id(pool, SOLVID_POS, DELTA_BASE_EVR);
2445       FOR_PROVIDES(op, pp, s->name)
2446         {
2447           Solvable *os = pool->solvables + op;
2448           if (os->repo == pool->installed && os->name == s->name && os->arch == s->arch && os->evr == baseevr)
2449             break;
2450         }
2451       if (op && access("/usr/bin/applydeltarpm", X_OK) == 0)
2452         {
2453           /* base is installed, run sequence check */
2454           const char *seq;
2455           const char *dloc;
2456           const char *archstr;
2457           FILE *fp;
2458           char cmd[128];
2459           int newfd;
2460
2461           archstr = pool_id2str(pool, s->arch);
2462           if (strlen(archstr) > 10 || strchr(archstr, '\'') != 0)
2463             continue;
2464
2465           seq = pool_tmpjoin(pool, pool_lookup_str(pool, SOLVID_POS, DELTA_SEQ_NAME), "-", pool_lookup_str(pool, SOLVID_POS, DELTA_SEQ_EVR));
2466           seq = pool_tmpappend(pool, seq, "-", pool_lookup_str(pool, SOLVID_POS, DELTA_SEQ_NUM));
2467           if (strchr(seq, '\'') != 0)
2468             continue;
2469 #ifdef FEDORA
2470           sprintf(cmd, "/usr/bin/applydeltarpm -a '%s' -c -s '", archstr);
2471 #else
2472           sprintf(cmd, "/usr/bin/applydeltarpm -c -s '");
2473 #endif
2474           if (system(pool_tmpjoin(pool, cmd, seq, "'")) != 0)
2475             continue;   /* didn't match */
2476           /* looks good, download delta */
2477           chksumtype = 0;
2478           chksum = pool_lookup_bin_checksum(pool, SOLVID_POS, DELTA_CHECKSUM, &chksumtype);
2479           if (!chksumtype)
2480             continue;   /* no way! */
2481           dloc = pool_lookup_deltalocation(pool, SOLVID_POS, 0);
2482           if (!dloc)
2483             continue;
2484 #ifdef ENABLE_SUSEREPO
2485           if (cinfo->type == TYPE_SUSETAGS)
2486             {
2487               const char *datadir = repo_lookup_str(cinfo->repo, SOLVID_META, SUSETAGS_DATADIR);
2488               dloc = pool_tmpjoin(pool, datadir ? datadir : "suse", "/", dloc);
2489             }
2490 #endif
2491           if ((fp = curlfopen(cinfo, dloc, 0, chksum, chksumtype, 0)) == 0)
2492             continue;
2493           /* got it, now reconstruct */
2494           newfd = opentmpfile();
2495 #ifdef FEDORA
2496           sprintf(cmd, "applydeltarpm -a '%s' /dev/fd/%d /dev/fd/%d", archstr, fileno(fp), newfd);
2497 #else
2498           sprintf(cmd, "applydeltarpm /dev/fd/%d /dev/fd/%d", fileno(fp), newfd);
2499 #endif
2500           fcntl(fileno(fp), F_SETFD, 0);
2501           if (system(cmd))
2502             {
2503               close(newfd);
2504               fclose(fp);
2505               continue;
2506             }
2507           lseek(newfd, 0, SEEK_SET);
2508           chksumtype = 0;
2509           chksum = solvable_lookup_bin_checksum(s, SOLVABLE_CHECKSUM, &chksumtype);
2510           if (chksumtype && !verify_checksum(newfd, loc, chksum, chksumtype))
2511             {
2512               close(newfd);
2513               fclose(fp);
2514               continue;
2515             }
2516           retfp = fdopen(newfd, "r");
2517           fclose(fp);
2518           break;
2519         }
2520     }
2521   dataiterator_free(&di);
2522   solv_free(matchname);
2523   return retfp;
2524 }
2525 #endif
2526
2527
2528 #define MODE_LIST        0
2529 #define MODE_INSTALL     1
2530 #define MODE_ERASE       2
2531 #define MODE_UPDATE      3
2532 #define MODE_DISTUPGRADE 4
2533 #define MODE_VERIFY      5
2534 #define MODE_PATCH       6
2535 #define MODE_INFO        7
2536 #define MODE_REPOLIST    8
2537 #define MODE_SEARCH      9
2538
2539 void
2540 usage(int r)
2541 {
2542   fprintf(stderr, "Usage: solv COMMAND <select>\n");
2543   fprintf(stderr, "\n");
2544   fprintf(stderr, "    dist-upgrade: replace installed packages with\n");
2545   fprintf(stderr, "                  versions from the repositories\n");
2546   fprintf(stderr, "    erase:        erase installed packages\n");
2547   fprintf(stderr, "    info:         display package information\n");
2548   fprintf(stderr, "    install:      install packages\n");
2549   fprintf(stderr, "    list:         list packages\n");
2550   fprintf(stderr, "    repos:        list enabled repositories\n");
2551   fprintf(stderr, "    search:       search name/summary/description\n");
2552   fprintf(stderr, "    update:       update installed packages\n");
2553   fprintf(stderr, "    verify:       check dependencies of installed packages\n");
2554 #if defined(SUSE) || defined(FEDORA)
2555   fprintf(stderr, "    patch:        install newest patches\n");
2556 #endif
2557   fprintf(stderr, "\n");
2558   exit(r);
2559 }
2560
2561 int
2562 main(int argc, char **argv)
2563 {
2564   Pool *pool;
2565   Repo *commandlinerepo = 0;
2566   Id *commandlinepkgs = 0;
2567   Id p;
2568   struct repoinfo *repoinfos;
2569   int nrepoinfos = 0;
2570   int mainmode = 0, mode = 0;
2571   int i, newpkgs;
2572   Queue job, checkq;
2573   Solver *solv = 0;
2574   Transaction *trans;
2575   FILE **newpkgsfps;
2576   Queue repofilter;
2577   int cleandeps = 0;
2578   int forcebest = 0;
2579   char *rootdir = 0;
2580
2581   argc--;
2582   argv++;
2583   if (!argv[0])
2584     usage(1);
2585   if (!strcmp(argv[0], "install") || !strcmp(argv[0], "in"))
2586     {
2587       mainmode = MODE_INSTALL;
2588       mode = SOLVER_INSTALL;
2589     }
2590 #if defined(SUSE) || defined(FEDORA)
2591   else if (!strcmp(argv[0], "patch"))
2592     {
2593       mainmode = MODE_PATCH;
2594       mode = SOLVER_INSTALL;
2595     }
2596 #endif
2597   else if (!strcmp(argv[0], "erase") || !strcmp(argv[0], "rm"))
2598     {
2599       mainmode = MODE_ERASE;
2600       mode = SOLVER_ERASE;
2601     }
2602   else if (!strcmp(argv[0], "list"))
2603     {
2604       mainmode = MODE_LIST;
2605       mode = 0;
2606     }
2607   else if (!strcmp(argv[0], "info"))
2608     {
2609       mainmode = MODE_INFO;
2610       mode = 0;
2611     }
2612   else if (!strcmp(argv[0], "search") || !strcmp(argv[0], "se"))
2613     {
2614       mainmode = MODE_SEARCH;
2615       mode = 0;
2616     }
2617   else if (!strcmp(argv[0], "verify"))
2618     {
2619       mainmode = MODE_VERIFY;
2620       mode = SOLVER_VERIFY;
2621     }
2622   else if (!strcmp(argv[0], "update") || !strcmp(argv[0], "up"))
2623     {
2624       mainmode = MODE_UPDATE;
2625       mode = SOLVER_UPDATE;
2626     }
2627   else if (!strcmp(argv[0], "dist-upgrade") || !strcmp(argv[0], "dup"))
2628     {
2629       mainmode = MODE_DISTUPGRADE;
2630       mode = SOLVER_DISTUPGRADE;
2631     }
2632   else if (!strcmp(argv[0], "repos") || !strcmp(argv[0], "repolist") || !strcmp(argv[0], "lr"))
2633     {
2634       mainmode = MODE_REPOLIST;
2635       mode = 0;
2636     }
2637   else
2638     usage(1);
2639
2640   for (;;)
2641     {
2642       if (argc > 2 && !strcmp(argv[1], "--root"))
2643         {
2644           rootdir = argv[2];
2645           argc -= 2;
2646           argv += 2;
2647         }
2648
2649       else if (argc > 1 && !strcmp(argv[1], "--clean"))
2650         {
2651           cleandeps = 1;
2652           argc--;
2653           argv++;
2654         }
2655       else if (argc > 1 && !strcmp(argv[1], "--best"))
2656         {
2657           forcebest = 1;
2658           argc--;
2659           argv++;
2660         }
2661       else
2662         break;
2663     }
2664
2665   pool = pool_create();
2666   pool_set_rootdir(pool, rootdir);
2667
2668 #if 0
2669   {
2670     const char *langs[] = {"de_DE", "de", "en"};
2671     pool_set_languages(pool, langs, sizeof(langs)/sizeof(*langs));
2672   }
2673 #endif
2674
2675   pool_setloadcallback(pool, load_stub, 0);
2676 #ifdef SUSE
2677   pool->nscallback = nscallback;
2678 #endif
2679   // pool_setdebuglevel(pool, 2);
2680   setarch(pool);
2681   repoinfos = read_repoinfos(pool, &nrepoinfos);
2682
2683   if (mainmode == MODE_REPOLIST)
2684     {
2685       int j = 1;
2686       for (i = 0; i < nrepoinfos; i++)
2687         {
2688           struct repoinfo *cinfo = repoinfos + i;
2689           if (!cinfo->enabled)
2690             continue;
2691           printf("%d: %-20s %s (prio %d)\n", j++, cinfo->alias, cinfo->name, cinfo->priority);
2692         }
2693       exit(0);
2694     }
2695
2696   read_repos(pool, repoinfos, nrepoinfos);
2697
2698   /* setup repofilter */
2699   queue_init(&repofilter);
2700   while (argc > 2 && !strcmp(argv[1], "-r"))
2701     {
2702       const char *rname = argv[2], *rp;
2703       Id repoid = 0;
2704       for (rp = rname; *rp; rp++)
2705         if (*rp <= '0' || *rp >= '9')
2706           break;
2707       if (!*rp)
2708         {
2709           /* repo specified by number */
2710           int rnum = atoi(rname);
2711           for (i = 0; i < nrepoinfos; i++)
2712             {
2713               struct repoinfo *cinfo = repoinfos + i;
2714               if (!cinfo->enabled)
2715                 continue;
2716               if (--rnum == 0)
2717                 repoid = cinfo->repo->repoid;
2718             }
2719         }
2720       else
2721         {
2722           /* repo specified by alias */
2723           Repo *repo;
2724           FOR_REPOS(i, repo)
2725             {
2726               if (!strcasecmp(rname, repo->name))
2727                 repoid = repo->repoid;
2728             }
2729         }
2730       if (!repoid)
2731         {
2732           fprintf(stderr, "%s: no such repo\n", rname);
2733           exit(1);
2734         }
2735       /* SETVENDOR is actually wrong but useful */
2736       queue_push2(&repofilter, SOLVER_SOLVABLE_REPO | SOLVER_SETREPO | SOLVER_SETVENDOR, repoid);
2737       argc -= 2;
2738       argv += 2;
2739     }
2740
2741   if (mainmode == MODE_SEARCH)
2742     {
2743       Queue sel, q;
2744       Dataiterator di;
2745       if (argc != 2)
2746         usage(1);
2747       pool_createwhatprovides(pool);
2748       queue_init(&sel);
2749       dataiterator_init(&di, pool, 0, 0, 0, argv[1], SEARCH_SUBSTRING|SEARCH_NOCASE);
2750       dataiterator_set_keyname(&di, SOLVABLE_NAME);
2751       dataiterator_set_search(&di, 0, 0);
2752       while (dataiterator_step(&di))
2753         queue_push2(&sel, SOLVER_SOLVABLE, di.solvid);
2754       dataiterator_set_keyname(&di, SOLVABLE_SUMMARY);
2755       dataiterator_set_search(&di, 0, 0);
2756       while (dataiterator_step(&di))
2757         queue_push2(&sel, SOLVER_SOLVABLE, di.solvid);
2758       dataiterator_set_keyname(&di, SOLVABLE_DESCRIPTION);
2759       dataiterator_set_search(&di, 0, 0);
2760       while (dataiterator_step(&di))
2761         queue_push2(&sel, SOLVER_SOLVABLE, di.solvid);
2762       dataiterator_free(&di);
2763       if (repofilter.count)
2764         selection_filter(pool, &sel, &repofilter);
2765         
2766       queue_init(&q);
2767       selection_solvables(pool, &sel, &q);
2768       queue_free(&sel);
2769       for (i = 0; i < q.count; i++)
2770         {
2771           Solvable *s = pool_id2solvable(pool, q.elements[i]);
2772           printf("  - %s [%s]: %s\n", pool_solvable2str(pool, s), s->repo->name, solvable_lookup_str(s, SOLVABLE_SUMMARY));
2773         }
2774       queue_free(&q);
2775       exit(0);
2776     }
2777
2778   /* process command line packages */
2779   if (mainmode == MODE_LIST || mainmode == MODE_INSTALL)
2780     {
2781       for (i = 1; i < argc; i++)
2782         {
2783           int l;
2784           l = strlen(argv[i]);
2785 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2786           if (l <= 4 || strcmp(argv[i] + l - 4, ".rpm"))
2787             continue;
2788 #endif
2789 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
2790           if (l <= 4 || strcmp(argv[i] + l - 4, ".deb"))
2791             continue;
2792 #endif
2793           if (access(argv[i], R_OK))
2794             {
2795               perror(argv[i]);
2796               exit(1);
2797             }
2798           if (!commandlinepkgs)
2799             commandlinepkgs = solv_calloc(argc, sizeof(Id));
2800           if (!commandlinerepo)
2801             commandlinerepo = repo_create(pool, "@commandline");
2802           p = 0;
2803 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2804           p = repo_add_rpm(commandlinerepo, (const char *)argv[i], REPO_REUSE_REPODATA|REPO_NO_INTERNALIZE);
2805 #endif
2806 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
2807           p = repo_add_deb(commandlinerepo, (const char *)argv[i], REPO_REUSE_REPODATA|REPO_NO_INTERNALIZE);
2808 #endif
2809           if (!p)
2810             {
2811               fprintf(stderr, "could not add '%s'\n", argv[i]);
2812               exit(1);
2813             }
2814           commandlinepkgs[i] = p;
2815         }
2816       if (commandlinerepo)
2817         repo_internalize(commandlinerepo);
2818     }
2819
2820   // FOR_REPOS(i, repo)
2821   //   printf("%s: %d solvables\n", repo->name, repo->nsolvables);
2822
2823 #if defined(ENABLE_RPMDB)
2824   addfileprovides(pool);
2825 #endif
2826   pool_createwhatprovides(pool);
2827
2828   queue_init(&job);
2829   for (i = 1; i < argc; i++)
2830     {
2831       Queue job2;
2832       int j, flags, rflags;
2833
2834       if (commandlinepkgs && commandlinepkgs[i])
2835         {
2836           queue_push2(&job, SOLVER_SOLVABLE, commandlinepkgs[i]);
2837           continue;
2838         }
2839       queue_init(&job2);
2840       flags = SELECTION_NAME|SELECTION_PROVIDES|SELECTION_GLOB;
2841       flags |= SELECTION_CANON|SELECTION_DOTARCH|SELECTION_REL;
2842       if (mode == MODE_LIST)
2843         flags |= SELECTION_WITH_SOURCE;
2844       if (argv[i][0] == '/')
2845         flags |= SELECTION_FILELIST | (mode == MODE_ERASE ? SELECTION_INSTALLED_ONLY : 0);
2846       rflags = selection_make(pool, &job2, argv[i], flags);
2847       if (repofilter.count)
2848         selection_filter(pool, &job2, &repofilter);
2849       if (!job2.count)
2850         {
2851           flags |= SELECTION_NOCASE;
2852           rflags = selection_make(pool, &job2, argv[i], flags);
2853           if (repofilter.count)
2854             selection_filter(pool, &job2, &repofilter);
2855           if (job2.count)
2856             printf("[ignoring case for '%s']\n", argv[i]);
2857         }
2858       if (!job2.count)
2859         {
2860           fprintf(stderr, "nothing matches '%s'\n", argv[i]);
2861           exit(1);
2862         }
2863       if (rflags & SELECTION_FILELIST)
2864         printf("[using file list match for '%s']\n", argv[i]);
2865       if (rflags & SELECTION_PROVIDES)
2866         printf("[using capability match for '%s']\n", argv[i]);
2867       for (j = 0; j < job2.count; j++)
2868         queue_push(&job, job2.elements[j]);
2869       queue_free(&job2);
2870     }
2871
2872   if (!job.count && (mainmode == MODE_UPDATE || mainmode == MODE_DISTUPGRADE || mainmode == MODE_VERIFY || repofilter.count))
2873     {
2874       queue_push2(&job, SOLVER_SOLVABLE_ALL, 0);
2875       if (repofilter.count)
2876         selection_filter(pool, &job, &repofilter);
2877     }
2878   queue_free(&repofilter);
2879
2880   if (!job.count && mainmode != MODE_PATCH)
2881     {
2882       printf("no package matched\n");
2883       exit(1);
2884     }
2885
2886   if (mainmode == MODE_LIST || mainmode == MODE_INFO)
2887     {
2888       /* list mode, no solver needed */
2889       Queue q;
2890       queue_init(&q);
2891       for (i = 0; i < job.count; i += 2)
2892         {
2893           int j;
2894           queue_empty(&q);
2895           pool_job2solvables(pool, &q, job.elements[i], job.elements[i + 1]);
2896           for (j = 0; j < q.count; j++)
2897             {
2898               Solvable *s = pool_id2solvable(pool, q.elements[j]);
2899               if (mainmode == MODE_INFO)
2900                 {
2901                   const char *str;
2902                   printf("Name:        %s\n", pool_solvable2str(pool, s));
2903                   printf("Repo:        %s\n", s->repo->name);
2904                   printf("Summary:     %s\n", solvable_lookup_str(s, SOLVABLE_SUMMARY));
2905                   str = solvable_lookup_str(s, SOLVABLE_URL);
2906                   if (str)
2907                     printf("Url:         %s\n", str);
2908                   str = solvable_lookup_str(s, SOLVABLE_LICENSE);
2909                   if (str)
2910                     printf("License:     %s\n", str);
2911                   printf("Description:\n%s\n", solvable_lookup_str(s, SOLVABLE_DESCRIPTION));
2912                   printf("\n");
2913                 }
2914               else
2915                 {
2916 #if 1
2917                   const char *sum = solvable_lookup_str_lang(s, SOLVABLE_SUMMARY, "de", 1);
2918 #else
2919                   const char *sum = solvable_lookup_str_poollang(s, SOLVABLE_SUMMARY);
2920 #endif
2921                   printf("  - %s [%s]\n", pool_solvable2str(pool, s), s->repo->name);
2922                   if (sum)
2923                     printf("    %s\n", sum);
2924                 }
2925             }
2926         }
2927       queue_free(&q);
2928       queue_free(&job);
2929       pool_free(pool);
2930       free_repoinfos(repoinfos, nrepoinfos);
2931       solv_free(commandlinepkgs);
2932 #ifdef FEDORA
2933       yum_substitute(pool, 0);
2934 #endif
2935       exit(0);
2936     }
2937
2938 #if defined(SUSE) || defined(FEDORA)
2939   if (mainmode == MODE_PATCH)
2940     add_patchjobs(pool, &job);
2941 #endif
2942
2943   // add mode
2944   for (i = 0; i < job.count; i += 2)
2945     {
2946       job.elements[i] |= mode;
2947       if (mode == SOLVER_UPDATE && pool_isemptyupdatejob(pool, job.elements[i], job.elements[i + 1]))
2948         job.elements[i] ^= SOLVER_UPDATE ^ SOLVER_INSTALL;
2949       if (cleandeps)
2950         job.elements[i] |= SOLVER_CLEANDEPS;
2951       if (forcebest)
2952         job.elements[i] |= SOLVER_FORCEBEST;
2953     }
2954
2955   // multiversion test
2956   // queue_push2(&job, SOLVER_MULTIVERSION|SOLVER_SOLVABLE_NAME, pool_str2id(pool, "kernel-pae", 1));
2957   // queue_push2(&job, SOLVER_MULTIVERSION|SOLVER_SOLVABLE_NAME, pool_str2id(pool, "kernel-pae-base", 1));
2958   // queue_push2(&job, SOLVER_MULTIVERSION|SOLVER_SOLVABLE_NAME, pool_str2id(pool, "kernel-pae-extra", 1));
2959 #if 0
2960   queue_push2(&job, SOLVER_INSTALL|SOLVER_SOLVABLE_PROVIDES, pool_rel2id(pool, NAMESPACE_LANGUAGE, 0, REL_NAMESPACE, 1));
2961   queue_push2(&job, SOLVER_ERASE|SOLVER_CLEANDEPS|SOLVER_SOLVABLE_PROVIDES, pool_rel2id(pool, NAMESPACE_LANGUAGE, 0, REL_NAMESPACE, 1));
2962 #endif
2963
2964 #ifdef SOFTLOCKS_PATH
2965   addsoftlocks(pool, &job);
2966 #endif
2967
2968 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2969 rerunsolver:
2970 #endif
2971   solv = solver_create(pool);
2972   solver_set_flag(solv, SOLVER_FLAG_SPLITPROVIDES, 1);
2973 #ifdef FEDORA
2974   solver_set_flag(solv, SOLVER_FLAG_ALLOW_VENDORCHANGE, 1);
2975 #endif
2976   if (mainmode == MODE_ERASE)
2977     solver_set_flag(solv, SOLVER_FLAG_ALLOW_UNINSTALL, 1);      /* don't nag */
2978   solver_set_flag(solv, SOLVER_FLAG_BEST_OBEY_POLICY, 1);
2979
2980   for (;;)
2981     {
2982       Id problem, solution;
2983       int pcnt, scnt;
2984
2985       if (!solver_solve(solv, &job))
2986         break;
2987       pcnt = solver_problem_count(solv);
2988       printf("Found %d problems:\n", pcnt);
2989       for (problem = 1; problem <= pcnt; problem++)
2990         {
2991           int take = 0;
2992           printf("Problem %d/%d:\n", problem, pcnt);
2993           solver_printprobleminfo(solv, problem);
2994           printf("\n");
2995           scnt = solver_solution_count(solv, problem);
2996           for (solution = 1; solution <= scnt; solution++)
2997             {
2998               printf("Solution %d:\n", solution);
2999               solver_printsolution(solv, problem, solution);
3000               printf("\n");
3001             }
3002           for (;;)
3003             {
3004               char inbuf[128], *ip;
3005               printf("Please choose a solution: ");
3006               fflush(stdout);
3007               *inbuf = 0;
3008               if (!(ip = fgets(inbuf, sizeof(inbuf), stdin)))
3009                 {
3010                   printf("Abort.\n");
3011                   exit(1);
3012                 }
3013               while (*ip == ' ' || *ip == '\t')
3014                 ip++;
3015               if (*ip >= '0' && *ip <= '9')
3016                 {
3017                   take = atoi(ip);
3018                   if (take >= 1 && take <= scnt)
3019                     break;
3020                 }
3021               if (*ip == 's')
3022                 {
3023                   take = 0;
3024                   break;
3025                 }
3026               if (*ip == 'q')
3027                 {
3028                   printf("Abort.\n");
3029                   exit(1);
3030                 }
3031             }
3032           if (!take)
3033             continue;
3034           solver_take_solution(solv, problem, take, &job);
3035         }
3036     }
3037
3038   trans = solver_create_transaction(solv);
3039   if (!trans->steps.count)
3040     {
3041       printf("Nothing to do.\n");
3042       transaction_free(trans);
3043       solver_free(solv);
3044       queue_free(&job);
3045       pool_free(pool);
3046       free_repoinfos(repoinfos, nrepoinfos);
3047       solv_free(commandlinepkgs);
3048 #ifdef FEDORA
3049       yum_substitute(pool, 0);
3050 #endif
3051       exit(1);
3052     }
3053
3054   /* display transaction to the user and ask for confirmation */
3055   printf("\n");
3056   printf("Transaction summary:\n\n");
3057   transaction_print(trans);
3058 #if defined(SUSE)
3059   showdiskusagechanges(trans);
3060 #endif
3061   printf("install size change: %d K\n", transaction_calc_installsizechange(trans));
3062   printf("\n");
3063
3064   if (!yesno("OK to continue (y/n)? "))
3065     {
3066       printf("Abort.\n");
3067       transaction_free(trans);
3068       solver_free(solv);
3069       queue_free(&job);
3070       pool_free(pool);
3071       free_repoinfos(repoinfos, nrepoinfos);
3072       solv_free(commandlinepkgs);
3073 #ifdef FEDORA
3074       yum_substitute(pool, 0);
3075 #endif
3076       exit(1);
3077     }
3078
3079   /* download all new packages */
3080   queue_init(&checkq);
3081   newpkgs = transaction_installedresult(trans, &checkq);
3082   newpkgsfps = 0;
3083   if (newpkgs)
3084     {
3085       int downloadsize = 0;
3086       for (i = 0; i < newpkgs; i++)
3087         {
3088           Solvable *s;
3089
3090           p = checkq.elements[i];
3091           s = pool_id2solvable(pool, p);
3092           downloadsize += solvable_lookup_sizek(s, SOLVABLE_DOWNLOADSIZE, 0);
3093         }
3094       printf("Downloading %d packages, %d K\n", newpkgs, downloadsize);
3095       newpkgsfps = solv_calloc(newpkgs, sizeof(*newpkgsfps));
3096       for (i = 0; i < newpkgs; i++)
3097         {
3098           unsigned int medianr;
3099           const char *loc;
3100           Solvable *s;
3101           struct repoinfo *cinfo;
3102           const unsigned char *chksum;
3103           Id chksumtype;
3104
3105           p = checkq.elements[i];
3106           s = pool_id2solvable(pool, p);
3107           if (s->repo == commandlinerepo)
3108             {
3109               loc = solvable_lookup_location(s, &medianr);
3110               if (!(newpkgsfps[i] = fopen(loc, "r")))
3111                 {
3112                   perror(loc);
3113                   exit(1);
3114                 }
3115               putchar('.');
3116               continue;
3117             }
3118           cinfo = s->repo->appdata;
3119           if (!cinfo)
3120             {
3121               printf("%s: no repository information\n", s->repo->name);
3122               exit(1);
3123             }
3124           loc = solvable_lookup_location(s, &medianr);
3125           if (!loc)
3126              continue;
3127 #if defined(ENABLE_RPMDB)
3128           if (pool->installed && pool->installed->nsolvables)
3129             {
3130               if ((newpkgsfps[i] = trydeltadownload(s, cinfo, loc)) != 0)
3131                 {
3132                   putchar('d');
3133                   fflush(stdout);
3134                   continue;             /* delta worked! */
3135                 }
3136             }
3137 #endif
3138 #ifdef ENABLE_SUSEREPO
3139           if (cinfo->type == TYPE_SUSETAGS)
3140             {
3141               const char *datadir = repo_lookup_str(cinfo->repo, SOLVID_META, SUSETAGS_DATADIR);
3142               loc = pool_tmpjoin(pool, datadir ? datadir : "suse", "/", loc);
3143             }
3144 #endif
3145           chksumtype = 0;
3146           chksum = solvable_lookup_bin_checksum(s, SOLVABLE_CHECKSUM, &chksumtype);
3147           if ((newpkgsfps[i] = curlfopen(cinfo, loc, 0, chksum, chksumtype, 0)) == 0)
3148             {
3149               printf("\n%s: %s not found in repository\n", s->repo->name, loc);
3150               exit(1);
3151             }
3152           putchar('.');
3153           fflush(stdout);
3154         }
3155       putchar('\n');
3156     }
3157
3158 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3159   /* check for file conflicts */
3160   if (newpkgs)
3161     {
3162       Queue conflicts;
3163       struct fcstate fcstate;
3164
3165       printf("Searching for file conflicts\n");
3166       queue_init(&conflicts);
3167       fcstate.rpmstate = rpm_state_create(pool, rootdir);
3168       fcstate.newpkgscnt = newpkgs;
3169       fcstate.checkq = &checkq;
3170       fcstate.newpkgsfps = newpkgsfps;
3171       pool_findfileconflicts(pool, &checkq, newpkgs, &conflicts, FINDFILECONFLICTS_USE_SOLVABLEFILELIST | FINDFILECONFLICTS_CHECK_DIRALIASING | FINDFILECONFLICTS_USE_ROOTDIR, &fileconflict_cb, &fcstate);
3172       fcstate.rpmstate = rpm_state_free(fcstate.rpmstate);
3173       if (conflicts.count)
3174         {
3175           printf("\n");
3176           for (i = 0; i < conflicts.count; i += 6)
3177             printf("file %s of package %s conflicts with package %s\n", pool_id2str(pool, conflicts.elements[i]), pool_solvid2str(pool, conflicts.elements[i + 1]), pool_solvid2str(pool, conflicts.elements[i + 4]));
3178           printf("\n");
3179           if (yesno("Re-run solver (y/n/q)? "))
3180             {
3181               for (i = 0; i < newpkgs; i++)
3182                 if (newpkgsfps[i])
3183                   fclose(newpkgsfps[i]);
3184               newpkgsfps = solv_free(newpkgsfps);
3185               solver_free(solv);
3186               solv = 0;
3187               pool_add_fileconflicts_deps(pool, &conflicts);
3188               goto rerunsolver;
3189             }
3190         }
3191       queue_free(&conflicts);
3192     }
3193 #endif
3194
3195   /* and finally commit the transaction */
3196   printf("Committing transaction:\n\n");
3197   transaction_order(trans, 0);
3198   for (i = 0; i < trans->steps.count; i++)
3199     {
3200 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3201       const char *evr, *evrp, *nvra;
3202 #endif
3203       Solvable *s;
3204       int j;
3205       FILE *fp;
3206       Id type;
3207
3208       p = trans->steps.elements[i];
3209       s = pool_id2solvable(pool, p);
3210       type = transaction_type(trans, p, SOLVER_TRANSACTION_RPM_ONLY);
3211       switch(type)
3212         {
3213         case SOLVER_TRANSACTION_ERASE:
3214           printf("erase %s\n", pool_solvid2str(pool, p));
3215 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3216           if (!s->repo->rpmdbid || !s->repo->rpmdbid[p - s->repo->start])
3217             continue;
3218           /* strip epoch from evr */
3219           evr = evrp = pool_id2str(pool, s->evr);
3220           while (*evrp >= '0' && *evrp <= '9')
3221             evrp++;
3222           if (evrp > evr && evrp[0] == ':' && evrp[1])
3223             evr = evrp + 1;
3224           nvra = pool_tmpjoin(pool, pool_id2str(pool, s->name), "-", evr);
3225           nvra = pool_tmpappend(pool, nvra, ".", pool_id2str(pool, s->arch));
3226           runrpm("-e", nvra, -1, rootdir);      /* too bad that --querybynumber doesn't work */
3227 #endif
3228 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
3229           rundpkg("--remove", pool_id2str(pool, s->name), 0, rootdir);
3230 #endif
3231           break;
3232         case SOLVER_TRANSACTION_INSTALL:
3233         case SOLVER_TRANSACTION_MULTIINSTALL:
3234           printf("install %s\n", pool_solvid2str(pool, p));
3235           for (j = 0; j < newpkgs; j++)
3236             if (checkq.elements[j] == p)
3237               break;
3238           fp = j < newpkgs ? newpkgsfps[j] : 0;
3239           if (!fp)
3240             continue;
3241           rewind(fp);
3242           lseek(fileno(fp), 0, SEEK_SET);
3243 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3244           runrpm(type == SOLVER_TRANSACTION_MULTIINSTALL ? "-i" : "-U", "/dev/fd/3", fileno(fp), rootdir);
3245 #endif
3246 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
3247           rundpkg("--install", "/dev/fd/3", fileno(fp), rootdir);
3248 #endif
3249           fclose(fp);
3250           newpkgsfps[j] = 0;
3251           break;
3252         default:
3253           break;
3254         }
3255     }
3256
3257   for (i = 0; i < newpkgs; i++)
3258     if (newpkgsfps[i])
3259       fclose(newpkgsfps[i]);
3260   solv_free(newpkgsfps);
3261   queue_free(&checkq);
3262   transaction_free(trans);
3263   solver_free(solv);
3264   queue_free(&job);
3265   pool_free(pool);
3266   free_repoinfos(repoinfos, nrepoinfos);
3267   solv_free(commandlinepkgs);
3268 #ifdef FEDORA
3269   yum_substitute(pool, 0);
3270 #endif
3271   exit(0);
3272 }