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