2 * Copyright (c) 2009-2013, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
8 /* solv, a little software installer demoing the sat solver library */
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
19 * - fastestmirror implementation
21 * things available in the library but missing from solv:
22 * - vendor policy loading
23 * - soft locks file handling
24 * - multi version handling
37 #include <sys/utsname.h>
38 #include <sys/types.h>
45 #include <sys/socket.h>
57 #include "solverdebug.h"
59 #include "repo_solv.h"
60 #include "selection.h"
62 #include "repo_write.h"
64 #include "repo_rpmdb.h"
65 #include "pool_fileconflicts.h"
67 #ifdef ENABLE_RPMDB_PUBKEY
68 #include "repo_rpmdb_pubkey.h"
74 #include "repo_rpmmd.h"
75 #include "repo_repomdxml.h"
76 #include "repo_updateinfoxml.h"
77 #include "repo_deltainfoxml.h"
79 #ifdef ENABLE_SUSEREPO
80 #include "repo_products.h"
81 #include "repo_susetags.h"
82 #include "repo_content.h"
84 #include "solv_xfopen.h"
87 # define REPOINFO_PATH "/etc/yum.repos.d"
90 # define REPOINFO_PATH "/etc/zypp/repos.d"
91 # define PRODUCTS_PATH "/etc/products.d"
92 # define SOFTLOCKS_PATH "/var/lib/zypp/SoftLocks"
95 #define SOLVCACHE_PATH "/var/cache/solv"
97 #define METADATA_EXPIRE (60 * 15)
119 unsigned char cookie[32];
120 unsigned char extcookie[32];
126 yum_substitute(Pool *pool, char *line)
129 static char *releaseevr;
130 static char *basearch;
134 solv_free(releaseevr);
141 while ((p2 = strchr(p, '$')) != 0)
143 if (!strncmp(p2, "$releasever", 11))
151 rpmstate = rpm_state_create(pool, pool_get_rootdir(pool));
152 rpm_installedrpmdbids(rpmstate, "Providename", "redhat-release", &q);
157 handle = rpm_byrpmdbid(rpmstate, q.elements[0]);
158 releaseevr = handle ? rpm_query(handle, SOLVABLE_EVR) : 0;
159 if (releaseevr && (p = strchr(releaseevr, '-')) != 0)
162 rpm_state_free(rpmstate);
166 fprintf(stderr, "no installed package provides 'redhat-release', cannot determine $releasever\n");
171 p = pool_tmpjoin(pool, line, releaseevr, p2 + 11);
172 p2 = p + (p2 - line);
174 p = p2 + strlen(releaseevr);
177 if (!strncmp(p2, "$basearch", 9))
187 basearch = strdup(un.machine);
188 if (basearch[0] == 'i' && basearch[1] && !strcmp(basearch + 2, "86"))
192 p = pool_tmpjoin(pool, line, basearch, p2 + 9);
193 p2 = p + (p2 - line);
195 p = p2 + strlen(basearch);
204 #define TYPE_UNKNOWN 0
205 #define TYPE_SUSETAGS 1
207 #define TYPE_PLAINDIR 3
208 #define TYPE_DEBIAN 4
212 read_repoinfos_sort(const void *ap, const void *bp)
214 const struct repoinfo *a = ap;
215 const struct repoinfo *b = bp;
216 return strcmp(a->alias, b->alias);
220 #if defined(SUSE) || defined(FEDORA)
223 read_repoinfos(Pool *pool, int *nrepoinfosp)
225 const char *reposdir = REPOINFO_PATH;
227 char buf2[4096], *kp, *vp, *kpe;
232 struct repoinfo *repoinfos = 0, *cinfo;
235 rdlen = strlen(reposdir);
236 dir = opendir(reposdir);
242 while ((ent = readdir(dir)) != 0)
244 if (ent->d_name[0] == '.')
246 l = strlen(ent->d_name);
247 if (l < 6 || rdlen + 2 + l >= sizeof(buf) || strcmp(ent->d_name + l - 5, ".repo") != 0)
249 snprintf(buf, sizeof(buf), "%s/%s", reposdir, ent->d_name);
250 if ((fp = fopen(buf, "r")) == 0)
256 while(fgets(buf2, sizeof(buf2), fp))
261 while (l && (buf2[l - 1] == '\n' || buf2[l - 1] == ' ' || buf2[l - 1] == '\t'))
264 while (*kp == ' ' || *kp == '\t')
266 if (!*kp || *kp == '#')
270 kp = yum_substitute(pool, kp);
274 vp = strrchr(kp, ']');
278 repoinfos = solv_extend(repoinfos, nrepoinfos, 1, sizeof(*repoinfos), 15);
279 cinfo = repoinfos + nrepoinfos++;
280 memset(cinfo, 0, sizeof(*cinfo));
281 cinfo->alias = strdup(kp + 1);
282 cinfo->type = TYPE_RPMMD;
283 cinfo->autorefresh = 1;
284 cinfo->priority = 99;
286 cinfo->repo_gpgcheck = 1;
288 cinfo->metadata_expire = METADATA_EXPIRE;
293 vp = strchr(kp, '=');
296 for (kpe = vp - 1; kpe >= kp; kpe--)
297 if (*kpe != ' ' && *kpe != '\t')
302 while (*vp == ' ' || *vp == '\t')
305 if (!strcmp(kp, "name"))
306 cinfo->name = strdup(vp);
307 else if (!strcmp(kp, "enabled"))
308 cinfo->enabled = *vp == '0' ? 0 : 1;
309 else if (!strcmp(kp, "autorefresh"))
310 cinfo->autorefresh = *vp == '0' ? 0 : 1;
311 else if (!strcmp(kp, "gpgcheck"))
312 cinfo->pkgs_gpgcheck = *vp == '0' ? 0 : 1;
313 else if (!strcmp(kp, "repo_gpgcheck"))
314 cinfo->repo_gpgcheck = *vp == '0' ? 0 : 1;
315 else if (!strcmp(kp, "baseurl"))
316 cinfo->baseurl = strdup(vp);
317 else if (!strcmp(kp, "mirrorlist"))
319 if (strstr(vp, "metalink"))
320 cinfo->metalink = strdup(vp);
322 cinfo->mirrorlist = strdup(vp);
324 else if (!strcmp(kp, "path"))
326 if (vp && strcmp(vp, "/") != 0)
327 cinfo->path = strdup(vp);
329 else if (!strcmp(kp, "type"))
331 if (!strcmp(vp, "yast2"))
332 cinfo->type = TYPE_SUSETAGS;
333 else if (!strcmp(vp, "rpm-md"))
334 cinfo->type = TYPE_RPMMD;
335 else if (!strcmp(vp, "plaindir"))
336 cinfo->type = TYPE_PLAINDIR;
338 cinfo->type = TYPE_UNKNOWN;
340 else if (!strcmp(kp, "priority"))
341 cinfo->priority = atoi(vp);
342 else if (!strcmp(kp, "keeppackages"))
343 cinfo->keeppackages = *vp == '0' ? 0 : 1;
349 qsort(repoinfos, nrepoinfos, sizeof(*repoinfos), read_repoinfos_sort);
350 *nrepoinfosp = nrepoinfos;
359 read_repoinfos(Pool *pool, int *nrepoinfosp)
365 char *kp, *url, *distro;
366 struct repoinfo *repoinfos = 0, *cinfo;
371 fp = fopen("/etc/apt/sources.list", "r");
378 dir = opendir("/etc/apt/sources.list.d");
382 if ((ent = readdir(dir)) == 0)
387 if (ent->d_name[0] == '.')
389 l = strlen(ent->d_name);
390 if (l < 5 || strcmp(ent->d_name + l - 5, ".list") != 0)
392 snprintf(buf, sizeof(buf), "%s/%s", "/etc/apt/sources.list.d", ent->d_name);
393 if (!(fp = fopen(buf, "r")))
396 while(fgets(buf2, sizeof(buf2), fp))
401 while (l && (buf2[l - 1] == '\n' || buf2[l - 1] == ' ' || buf2[l - 1] == '\t'))
404 while (*kp == ' ' || *kp == '\t')
406 if (!*kp || *kp == '#')
408 if (strncmp(kp, "deb", 3) != 0)
411 if (*kp != ' ' && *kp != '\t')
413 while (*kp == ' ' || *kp == '\t')
418 while (*kp && *kp != ' ' && *kp != '\t')
422 while (*kp == ' ' || *kp == '\t')
427 while (*kp && *kp != ' ' && *kp != '\t')
431 while (*kp == ' ' || *kp == '\t')
435 repoinfos = solv_extend(repoinfos, nrepoinfos, 1, sizeof(*repoinfos), 15);
436 cinfo = repoinfos + nrepoinfos++;
437 memset(cinfo, 0, sizeof(*cinfo));
438 cinfo->baseurl = strdup(url);
439 cinfo->alias = solv_dupjoin(url, "/", distro);
440 cinfo->name = strdup(distro);
441 cinfo->type = TYPE_DEBIAN;
443 cinfo->autorefresh = 1;
444 cinfo->repo_gpgcheck = 1;
445 cinfo->metadata_expire = METADATA_EXPIRE;
449 while (*kp == ' ' || *kp == '\t')
454 while (*kp && *kp != ' ' && *kp != '\t')
458 cinfo->components = solv_extend(cinfo->components, cinfo->ncomponents, 1, sizeof(*cinfo->components), 15);
459 cinfo->components[cinfo->ncomponents++] = strdup(compo);
465 qsort(repoinfos, nrepoinfos, sizeof(*repoinfos), read_repoinfos_sort);
466 *nrepoinfosp = nrepoinfos;
474 read_repoinfos(Pool *pool, int *nrepoinfosp)
483 free_repoinfos(struct repoinfo *repoinfos, int nrepoinfos)
486 for (i = 0; i < nrepoinfos; i++)
488 struct repoinfo *cinfo = repoinfos + i;
489 solv_free(cinfo->name);
490 solv_free(cinfo->alias);
491 solv_free(cinfo->path);
492 solv_free(cinfo->metalink);
493 solv_free(cinfo->mirrorlist);
494 solv_free(cinfo->baseurl);
495 for (j = 0; j < cinfo->ncomponents; j++)
496 solv_free(cinfo->components[j]);
497 solv_free(cinfo->components);
499 solv_free(repoinfos);
508 strcpy(tmpl, "/var/tmp/solvXXXXXX");
520 verify_checksum(int fd, const char *file, const unsigned char *chksum, Id chksumtype)
523 const unsigned char *sum;
527 h = solv_chksum_create(chksumtype);
530 printf("%s: unknown checksum type\n", file);
533 while ((l = read(fd, buf, sizeof(buf))) > 0)
534 solv_chksum_add(h, buf, l);
535 lseek(fd, 0, SEEK_SET);
537 sum = solv_chksum_get(h, &l);
538 if (memcmp(sum, chksum, l))
540 printf("%s: checksum mismatch\n", file);
541 solv_chksum_free(h, 0);
544 solv_chksum_free(h, 0);
549 findfastest(char **urls, int nurls)
556 struct addrinfo hints, *result;;
558 fds = solv_calloc(nurls, sizeof(*fds));
559 socks = solv_calloc(nurls, sizeof(*socks));
560 for (i = 0; i < nurls; i++)
563 p = strchr(urls[i], '/');
576 if ((p2 = strchr(p, '@')) != 0)
579 if (!strncmp("https:", urls[i], 6))
581 else if (!strncmp("ftp:", urls[i], 4))
583 if ((p2 = strrchr(p, ':')) != 0)
592 sprintf(portstr, "%d", port);
593 memset(&hints, 0, sizeof(struct addrinfo));
594 hints.ai_family = AF_UNSPEC;
595 hints.ai_socktype = SOCK_STREAM;
596 hints.ai_flags = AI_NUMERICSERV;
598 if (!getaddrinfo(p, portstr, &hints, &result))
600 socks[i] = socket(result->ai_family, result->ai_socktype, result->ai_protocol);
603 fcntl(socks[i], F_SETFL, O_NONBLOCK);
604 if (connect(socks[i], result->ai_addr, result->ai_addrlen) == -1)
606 if (errno != EINPROGRESS)
613 freeaddrinfo(result);
620 for (i = j = 0; i < nurls; i++)
624 fds[j].fd = socks[i];
625 fds[j].events = POLLOUT;
633 if (poll(fds, j, 10000) <= 0)
635 i = -1; /* something is wrong */
638 for (i = 0; i < j; i++)
639 if ((fds[i].revents & POLLOUT) != 0)
642 socklen_t soel = sizeof(int);
643 if (getsockopt(fds[i].fd, SOL_SOCKET, SO_ERROR, &soe, &soel) == -1 || soe != 0)
645 /* connect failed, kill socket */
646 for (j = 0; j < nurls; j++)
647 if (socks[j] == fds[i].fd)
660 i = -1; /* something is wrong, no bit was set */
663 /* now i contains the fastest fd index */
666 for (j = 0; j < nurls; j++)
667 if (socks[j] == fds[i].fd)
671 char *url0 = urls[0];
676 for (i = j = 0; i < nurls; i++)
684 findmetalinkurl(FILE *fp, unsigned char *chksump, Id *chksumtypep)
686 char buf[4096], *bp, *ep;
693 while((bp = fgets(buf, sizeof(buf), fp)) != 0)
695 while (*bp == ' ' || *bp == '\t')
697 if (chksumtypep && !*chksumtypep && !strncmp(bp, "<hash type=\"sha256\">", 20))
700 if (solv_hex2bin((const char **)&bp, chksump, 32) == 32)
701 *chksumtypep = REPOKEY_TYPE_SHA256;
704 if (strncmp(bp, "<url", 4))
706 bp = strchr(bp, '>');
710 ep = strstr(bp, "repodata/repomd.xml</url>");
714 if (strncmp(bp, "http", 4))
716 urls = solv_extend(urls, nurls, 1, sizeof(*urls), 15);
717 urls[nurls++] = strdup(bp);
722 findfastest(urls, nurls > 5 ? 5 : nurls);
725 for (i = 0; i < nurls; i++)
728 ep = strchr(bp, '/');
729 if ((ep = strchr(ep + 2, '/')) != 0)
732 printf("[using mirror %s]\n", bp);
741 findmirrorlisturl(FILE *fp)
743 char buf[4096], *bp, *ep;
748 while((bp = fgets(buf, sizeof(buf), fp)) != 0)
750 while (*bp == ' ' || *bp == '\t')
752 if (!*bp || *bp == '#')
755 while (l > 0 && (bp[l - 1] == ' ' || bp[l - 1] == '\t' || bp[l - 1] == '\n'))
757 urls = solv_extend(urls, nurls, 1, sizeof(*urls), 15);
758 urls[nurls++] = strdup(bp);
763 findfastest(urls, nurls > 5 ? 5 : nurls);
766 for (i = 0; i < nurls; i++)
769 ep = strchr(bp, '/');
770 if ((ep = strchr(ep + 2, '/')) != 0)
773 printf("[using mirror %s]\n", bp);
782 iscompressed(const char *name)
784 return solv_xfopen_iscompressed(name) != 0;
788 curlfopen(struct repoinfo *cinfo, const char *file, int uncompress, const unsigned char *chksum, Id chksumtype, int markincomplete)
795 const char *baseurl = cinfo->baseurl;
799 if (!cinfo->metalink && !cinfo->mirrorlist)
801 if (file != cinfo->metalink && file != cinfo->mirrorlist)
803 unsigned char mlchksum[32];
805 fp = curlfopen(cinfo, cinfo->metalink ? cinfo->metalink : cinfo->mirrorlist, 0, 0, 0, 0);
810 cinfo->baseurl = findmetalinkurl(fp, mlchksum, &mlchksumtype);
812 cinfo->baseurl = findmirrorlisturl(fp);
817 if (strchr(cinfo->baseurl, '$'))
819 char *b = yum_substitute(cinfo->repo->pool, cinfo->baseurl);
820 free(cinfo->baseurl);
821 cinfo->baseurl = strdup(b);
824 if (!chksumtype && mlchksumtype && !strcmp(file, "repodata/repomd.xml"))
826 chksumtype = mlchksumtype;
829 return curlfopen(cinfo, file, uncompress, chksum, chksumtype, markincomplete);
831 snprintf(url, sizeof(url), "%s", file);
836 if (l && baseurl[l - 1] == '/')
837 snprintf(url, sizeof(url), "%s%s", baseurl, file);
839 snprintf(url, sizeof(url), "%s/%s", baseurl, file);
842 // printf("url: %s\n", url);
843 if ((pid = fork()) == (pid_t)-1)
855 execlp("curl", "curl", "-f", "-s", "-L", url, (char *)0);
860 while (waitpid(pid, &status, 0) != pid)
862 if (lseek(fd, 0, SEEK_END) == 0 && (!status || !chksumtype))
868 lseek(fd, 0, SEEK_SET);
871 printf("%s: download error %d\n", file, status >> 8 ? status >> 8 : status);
873 cinfo->incomplete = 1;
877 if (chksumtype && !verify_checksum(fd, file, chksum, chksumtype))
880 cinfo->incomplete = 1;
884 fcntl(fd, F_SETFD, FD_CLOEXEC);
887 if (solv_xfopen_iscompressed(file) < 0)
889 printf("%s: unsupported compression\n", file);
891 cinfo->incomplete = 1;
895 fp = solv_xfopen_fd(file, fd, "r");
898 fp = fdopen(fd, "r");
907 cleanupgpg(char *gpgdir)
910 snprintf(cmd, sizeof(cmd), "%s/pubring.gpg", gpgdir);
912 snprintf(cmd, sizeof(cmd), "%s/pubring.gpg~", gpgdir);
914 snprintf(cmd, sizeof(cmd), "%s/secring.gpg", gpgdir);
916 snprintf(cmd, sizeof(cmd), "%s/trustdb.gpg", gpgdir);
918 snprintf(cmd, sizeof(cmd), "%s/keys", gpgdir);
924 checksig(Pool *sigpool, FILE *fp, FILE *sigfp)
933 off_t posfp, possigfp;
936 gpgdir = mkdtemp(pool_tmpjoin(sigpool, "/var/tmp/solvgpg.XXXXXX", 0, 0));
939 keysfile = pool_tmpjoin(sigpool, gpgdir, "/keys", 0);
940 if (!(kfp = fopen(keysfile, "w")) )
946 for (p = 1, s = sigpool->solvables + p; p < sigpool->nsolvables; p++, s++)
950 pubkey = solvable_lookup_str(s, SOLVABLE_DESCRIPTION);
951 if (!pubkey || !*pubkey)
953 if (fwrite(pubkey, strlen(pubkey), 1, kfp) != 1)
955 if (fputc('\n', kfp) == EOF) /* Just in case... */
959 if (fclose(kfp) || !nkeys)
964 snprintf(cmd, sizeof(cmd), "gpg2 -q --homedir %s --import %s", gpgdir, keysfile);
967 fprintf(stderr, "key import error\n");
972 posfp = lseek(fileno(fp), 0, SEEK_CUR);
973 lseek(fileno(fp), 0, SEEK_SET);
974 possigfp = lseek(fileno(sigfp), 0, SEEK_CUR);
975 lseek(fileno(sigfp), 0, SEEK_SET);
976 snprintf(cmd, sizeof(cmd), "gpg -q --homedir %s --verify /dev/fd/%d /dev/fd/%d >/dev/null 2>&1", gpgdir, fileno(sigfp), fileno(fp));
977 fcntl(fileno(fp), F_SETFD, 0); /* clear CLOEXEC */
978 fcntl(fileno(sigfp), F_SETFD, 0); /* clear CLOEXEC */
980 lseek(fileno(sigfp), possigfp, SEEK_SET);
981 lseek(fileno(fp), posfp, SEEK_SET);
982 fcntl(fileno(fp), F_SETFD, FD_CLOEXEC);
983 fcntl(fileno(sigfp), F_SETFD, FD_CLOEXEC);
985 return r == 0 ? 1 : 0;
991 checksig(Pool *sigpool, FILE *fp, FILE *sigfp)
996 snprintf(cmd, sizeof(cmd), "gpgv -q --keyring /etc/apt/trusted.gpg /dev/fd/%d /dev/fd/%d >/dev/null 2>&1", fileno(sigfp), fileno(fp));
997 fcntl(fileno(fp), F_SETFD, 0); /* clear CLOEXEC */
998 fcntl(fileno(sigfp), F_SETFD, 0); /* clear CLOEXEC */
1000 fcntl(fileno(fp), F_SETFD, FD_CLOEXEC);
1001 fcntl(fileno(sigfp), F_SETFD, FD_CLOEXEC);
1002 return r == 0 ? 1 : 0;
1010 Pool *sigpool = pool_create();
1011 #if defined(ENABLE_RPMDB_PUBKEY)
1012 Repo *repo = repo_create(sigpool, "rpmdbkeys");
1013 repo_add_rpmdb_pubkeys(repo, 0);
1019 downloadchecksig(struct repoinfo *cinfo, FILE *fp, const char *sigurl, Pool **sigpool)
1022 sigfp = curlfopen(cinfo, sigurl, 0, 0, 0, 0);
1025 printf(" unsigned, skipped\n");
1029 *sigpool = read_sigs();
1030 if (!checksig(*sigpool, fp, sigfp))
1032 printf(" checksig failed, skipped\n");
1040 #define CHKSUM_IDENT "1.1"
1043 calc_checksum_fp(FILE *fp, Id chktype, unsigned char *out)
1046 void *h = solv_chksum_create(chktype);
1049 solv_chksum_add(h, CHKSUM_IDENT, strlen(CHKSUM_IDENT));
1050 while ((l = fread(buf, 1, sizeof(buf), fp)) > 0)
1051 solv_chksum_add(h, buf, l);
1053 solv_chksum_free(h, out);
1057 calc_checksum_stat(struct stat *stb, Id chktype, unsigned char *cookie, unsigned char *out)
1059 void *h = solv_chksum_create(chktype);
1060 solv_chksum_add(h, CHKSUM_IDENT, strlen(CHKSUM_IDENT));
1062 solv_chksum_add(h, cookie, 32);
1063 solv_chksum_add(h, &stb->st_dev, sizeof(stb->st_dev));
1064 solv_chksum_add(h, &stb->st_ino, sizeof(stb->st_ino));
1065 solv_chksum_add(h, &stb->st_size, sizeof(stb->st_size));
1066 solv_chksum_add(h, &stb->st_mtime, sizeof(stb->st_mtime));
1067 solv_chksum_free(h, out);
1079 pool_setarch(pool, un.machine);
1083 calccachepath(Repo *repo, const char *repoext)
1085 char *q, *p = pool_tmpjoin(repo->pool, SOLVCACHE_PATH, "/", repo->name);
1088 p = pool_tmpappend(repo->pool, p, "_", repoext);
1089 p = pool_tmpappend(repo->pool, p, ".solvx", 0);
1092 p = pool_tmpappend(repo->pool, p, ".solv", 0);
1093 q = p + strlen(SOLVCACHE_PATH) + 1;
1103 usecachedrepo(Repo *repo, const char *repoext, unsigned char *cookie, int mark)
1106 unsigned char mycookie[32];
1107 unsigned char myextcookie[32];
1108 struct repoinfo *cinfo;
1111 cinfo = repo->appdata;
1112 if (!(fp = fopen(calccachepath(repo, repoext), "r")))
1114 if (fseek(fp, -sizeof(mycookie), SEEK_END) || fread(mycookie, sizeof(mycookie), 1, fp) != 1)
1119 if (cookie && memcmp(cookie, mycookie, sizeof(mycookie)))
1124 if (cinfo && !repoext)
1126 if (fseek(fp, -sizeof(mycookie) * 2, SEEK_END) || fread(myextcookie, sizeof(myextcookie), 1, fp) != 1)
1137 flags = REPO_USE_LOADING|REPO_EXTEND_SOLVABLES;
1138 if (strcmp(repoext, "DL") != 0)
1139 flags |= REPO_LOCALPOOL; /* no local pool for DL so that we can compare IDs */
1142 if (repo_add_solv(repo, fp, flags))
1147 if (cinfo && !repoext)
1149 memcpy(cinfo->cookie, mycookie, sizeof(mycookie));
1150 memcpy(cinfo->extcookie, myextcookie, sizeof(myextcookie));
1153 futimens(fileno(fp), 0); /* try to set modification time */
1159 writecachedrepo(Repo *repo, Repodata *info, const char *repoext, unsigned char *cookie)
1164 struct repoinfo *cinfo;
1167 cinfo = repo->appdata;
1168 if (cinfo && cinfo->incomplete)
1170 mkdir(SOLVCACHE_PATH, 0755);
1171 /* use dupjoin instead of tmpjoin because tmpl must survive repo_write */
1172 tmpl = solv_dupjoin(SOLVCACHE_PATH, "/", ".newsolv-XXXXXX");
1180 if (!(fp = fdopen(fd, "w")))
1189 for (i = repo->start; i < repo->end; i++)
1190 if (repo->pool->solvables[i].repo != repo)
1196 repo_write(repo, fp);
1198 repodata_write(info, fp);
1201 int oldnrepodata = repo->nrepodata;
1202 repo->nrepodata = oldnrepodata > 2 ? 2 : oldnrepodata; /* XXX: do this right */
1203 repo_write(repo, fp);
1204 repo->nrepodata = oldnrepodata;
1208 if (!repoext && cinfo)
1210 if (!cinfo->extcookie[0])
1212 /* create the ext cookie and append it */
1213 /* we just need some unique ID */
1215 if (!fstat(fileno(fp), &stb))
1216 memset(&stb, 0, sizeof(stb));
1217 calc_checksum_stat(&stb, REPOKEY_TYPE_SHA256, cookie, cinfo->extcookie);
1218 if (cinfo->extcookie[0] == 0)
1219 cinfo->extcookie[0] = 1;
1221 if (fwrite(cinfo->extcookie, 32, 1, fp) != 1)
1229 /* append our cookie describing the metadata state */
1230 if (fwrite(cookie, 32, 1, fp) != 1)
1245 /* switch to just saved repo to activate paging and save memory */
1246 FILE *fp = fopen(tmpl, "r");
1252 repo_empty(repo, 1);
1253 if (repo_add_solv(repo, fp, SOLV_ADD_NO_STUBS))
1255 /* oops, no way to recover from here */
1256 fprintf(stderr, "internal error\n");
1262 int flags = REPO_USE_LOADING|REPO_EXTEND_SOLVABLES;
1263 /* make sure repodata contains complete repo */
1264 /* (this is how repodata_write saves it) */
1265 repodata_extend_block(info, repo->start, repo->end - repo->start);
1266 info->state = REPODATA_LOADING;
1267 if (strcmp(repoext, "DL") != 0)
1268 flags |= REPO_LOCALPOOL;
1269 repo_add_solv(repo, fp, flags);
1270 info->state = REPODATA_AVAILABLE; /* in case the load failed */
1275 if (!rename(tmpl, calccachepath(repo, repoext)))
1282 /* repomd helpers */
1284 static inline const char *
1285 repomd_find(Repo *repo, const char *what, const unsigned char **chksump, Id *chksumtypep)
1287 Pool *pool = repo->pool;
1289 const char *filename;
1294 dataiterator_init(&di, pool, repo, SOLVID_META, REPOSITORY_REPOMD_TYPE, what, SEARCH_STRING);
1295 dataiterator_prepend_keyname(&di, REPOSITORY_REPOMD);
1296 if (dataiterator_step(&di))
1298 dataiterator_setpos_parent(&di);
1299 filename = pool_lookup_str(pool, SOLVID_POS, REPOSITORY_REPOMD_LOCATION);
1300 *chksump = pool_lookup_bin_checksum(pool, SOLVID_POS, REPOSITORY_REPOMD_CHECKSUM, chksumtypep);
1302 dataiterator_free(&di);
1303 if (filename && !*chksumtypep)
1305 printf("no %s file checksum!\n", what);
1312 repomd_add_ext(Repo *repo, Repodata *data, const char *what)
1314 Id chksumtype, handle;
1315 const unsigned char *chksum;
1316 const char *filename;
1318 filename = repomd_find(repo, what, &chksum, &chksumtype);
1321 if (!strcmp(what, "prestodelta"))
1323 handle = repodata_new_handle(data);
1324 repodata_set_poolstr(data, handle, REPOSITORY_REPOMD_TYPE, what);
1325 repodata_set_str(data, handle, REPOSITORY_REPOMD_LOCATION, filename);
1326 repodata_set_bin_checksum(data, handle, REPOSITORY_REPOMD_CHECKSUM, chksumtype, chksum);
1327 if (!strcmp(what, "deltainfo"))
1329 repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOSITORY_DELTAINFO);
1330 repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_FLEXARRAY);
1332 if (!strcmp(what, "filelists"))
1334 repodata_add_idarray(data, handle, REPOSITORY_KEYS, SOLVABLE_FILELIST);
1335 repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_DIRSTRARRAY);
1337 repodata_add_flexarray(data, SOLVID_META, REPOSITORY_EXTERNAL, handle);
1342 repomd_load_ext(Repo *repo, Repodata *data)
1344 const char *filename, *repomdtype;
1347 struct repoinfo *cinfo;
1348 const unsigned char *filechksum;
1352 cinfo = repo->appdata;
1353 repomdtype = repodata_lookup_str(data, SOLVID_META, REPOSITORY_REPOMD_TYPE);
1356 if (!strcmp(repomdtype, "filelists"))
1358 else if (!strcmp(repomdtype, "deltainfo"))
1362 printf("[%s:%s", repo->name, ext);
1363 if (usecachedrepo(repo, ext, cinfo->extcookie, 0))
1365 printf(" cached]\n"); fflush(stdout);
1368 printf(" fetching]\n"); fflush(stdout);
1369 filename = repodata_lookup_str(data, SOLVID_META, REPOSITORY_REPOMD_LOCATION);
1371 filechksum = repodata_lookup_bin_checksum(data, SOLVID_META, REPOSITORY_REPOMD_CHECKSUM, &filechksumtype);
1372 if ((fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 0)) == 0)
1374 if (!strcmp(ext, "FL"))
1375 r = repo_add_rpmmd(repo, fp, ext, REPO_USE_LOADING|REPO_EXTEND_SOLVABLES|REPO_LOCALPOOL);
1376 else if (!strcmp(ext, "DL"))
1377 r = repo_add_deltainfoxml(repo, fp, REPO_USE_LOADING);
1381 printf("%s\n", pool_errstr(repo->pool));
1384 writecachedrepo(repo, data, ext, cinfo->extcookie);
1391 #ifdef ENABLE_SUSEREPO
1392 /* susetags helpers */
1394 static inline const char *
1395 susetags_find(Repo *repo, const char *what, const unsigned char **chksump, Id *chksumtypep)
1397 Pool *pool = repo->pool;
1399 const char *filename;
1404 dataiterator_init(&di, pool, repo, SOLVID_META, SUSETAGS_FILE_NAME, what, SEARCH_STRING);
1405 dataiterator_prepend_keyname(&di, SUSETAGS_FILE);
1406 if (dataiterator_step(&di))
1408 dataiterator_setpos_parent(&di);
1409 *chksump = pool_lookup_bin_checksum(pool, SOLVID_POS, SUSETAGS_FILE_CHECKSUM, chksumtypep);
1412 dataiterator_free(&di);
1413 if (filename && !*chksumtypep)
1415 printf("no %s file checksum!\n", what);
1421 static Id susetags_langtags[] = {
1422 SOLVABLE_SUMMARY, REPOKEY_TYPE_STR,
1423 SOLVABLE_DESCRIPTION, REPOKEY_TYPE_STR,
1424 SOLVABLE_EULA, REPOKEY_TYPE_STR,
1425 SOLVABLE_MESSAGEINS, REPOKEY_TYPE_STR,
1426 SOLVABLE_MESSAGEDEL, REPOKEY_TYPE_STR,
1427 SOLVABLE_CATEGORY, REPOKEY_TYPE_ID,
1432 susetags_add_ext(Repo *repo, Repodata *data)
1434 Pool *pool = repo->pool;
1437 Id handle, filechksumtype;
1438 const unsigned char *filechksum;
1441 dataiterator_init(&di, pool, repo, SOLVID_META, SUSETAGS_FILE_NAME, 0, 0);
1442 dataiterator_prepend_keyname(&di, SUSETAGS_FILE);
1443 while (dataiterator_step(&di))
1445 if (strncmp(di.kv.str, "packages.", 9) != 0)
1447 if (!strcmp(di.kv.str + 9, "gz"))
1449 if (!di.kv.str[9] || !di.kv.str[10] || (di.kv.str[11] && di.kv.str[11] != '.'))
1451 ext[0] = di.kv.str[9];
1452 ext[1] = di.kv.str[10];
1454 if (!strcmp(ext, "en"))
1456 if (!susetags_find(repo, di.kv.str, &filechksum, &filechksumtype))
1458 handle = repodata_new_handle(data);
1459 repodata_set_str(data, handle, SUSETAGS_FILE_NAME, di.kv.str);
1461 repodata_set_bin_checksum(data, handle, SUSETAGS_FILE_CHECKSUM, filechksumtype, filechksum);
1462 if (!strcmp(ext, "DU"))
1464 repodata_add_idarray(data, handle, REPOSITORY_KEYS, SOLVABLE_DISKUSAGE);
1465 repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_DIRNUMNUMARRAY);
1467 else if (!strcmp(ext, "FL"))
1469 repodata_add_idarray(data, handle, REPOSITORY_KEYS, SOLVABLE_FILELIST);
1470 repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_DIRSTRARRAY);
1474 for (i = 0; susetags_langtags[i]; i += 2)
1476 repodata_add_idarray(data, handle, REPOSITORY_KEYS, pool_id2langid(pool, susetags_langtags[i], ext, 1));
1477 repodata_add_idarray(data, handle, REPOSITORY_KEYS, susetags_langtags[i + 1]);
1480 repodata_add_flexarray(data, SOLVID_META, REPOSITORY_EXTERNAL, handle);
1482 dataiterator_free(&di);
1486 susetags_load_ext(Repo *repo, Repodata *data)
1488 const char *filename, *descrdir;
1492 struct repoinfo *cinfo;
1493 const unsigned char *filechksum;
1497 cinfo = repo->appdata;
1498 filename = repodata_lookup_str(data, SOLVID_META, SUSETAGS_FILE_NAME);
1502 ext[0] = filename[9];
1503 ext[1] = filename[10];
1505 printf("[%s:%s", repo->name, ext);
1506 if (usecachedrepo(repo, ext, cinfo->extcookie, 0))
1508 printf(" cached]\n"); fflush(stdout);
1511 printf(" fetching]\n"); fflush(stdout);
1512 defvendor = repo_lookup_id(repo, SOLVID_META, SUSETAGS_DEFAULTVENDOR);
1513 descrdir = repo_lookup_str(repo, SOLVID_META, SUSETAGS_DESCRDIR);
1515 descrdir = "suse/setup/descr";
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)
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))
1526 printf("%s\n", pool_errstr(repo->pool));
1530 writecachedrepo(repo, data, ext, cinfo->extcookie);
1540 load_stub(Pool *pool, Repodata *data, void *dp)
1542 struct repoinfo *cinfo = data->repo->appdata;
1543 switch (cinfo->type)
1545 #ifdef ENABLE_SUSEREPO
1547 return susetags_load_ext(data->repo, data);
1551 return repomd_load_ext(data->repo, data);
1558 static unsigned char installedcookie[32];
1560 #ifdef ENABLE_DEBIAN
1563 debian_find_component(struct repoinfo *cinfo, FILE *fp, char *comp, const unsigned char **chksump, Id *chksumtypep)
1567 unsigned char *chksum;
1572 static char *basearch;
1584 basearch = strdup(un.machine);
1585 if (basearch[0] == 'i' && basearch[1] && !strcmp(basearch + 2, "86"))
1588 binarydir = solv_dupjoin("binary-", basearch, "/");
1589 lbinarydir = strlen(binarydir);
1590 compl = strlen(comp);
1594 chksum = solv_malloc(32);
1596 while(fgets(buf, sizeof(buf), fp))
1601 while (l && (buf[l - 1] == '\n' || buf[l - 1] == ' ' || buf[l - 1] == '\t'))
1603 if (!strncasecmp(buf, "MD5Sum:", 7))
1605 curchksumtype = REPOKEY_TYPE_MD5;
1608 if (!strncasecmp(buf, "SHA1:", 5))
1610 curchksumtype = REPOKEY_TYPE_SHA1;
1613 if (!strncasecmp(buf, "SHA256:", 7))
1615 curchksumtype = REPOKEY_TYPE_SHA256;
1627 while (*bp && *bp != ' ' && *bp != '\t')
1632 while (*bp == ' ' || *bp == '\t')
1634 while (*bp && *bp != ' ' && *bp != '\t')
1638 while (*bp == ' ' || *bp == '\t')
1641 if (strncmp(fn, comp, compl) != 0 || fn[compl] != '/')
1644 if (strncmp(bp, binarydir, lbinarydir))
1647 if (!strcmp(bp, "Packages") || !strcmp(bp, "Packages.gz"))
1649 unsigned char curchksum[32];
1651 if (filename && !strcmp(bp, "Packages"))
1653 curl = solv_chksum_len(curchksumtype);
1654 if (!curl || (chksumtype && solv_chksum_len(chksumtype) > curl))
1656 if (solv_hex2bin((const char **)&ch, curchksum, sizeof(curchksum)) != curl)
1658 solv_free(filename);
1659 filename = strdup(fn);
1660 chksumtype = curchksumtype;
1661 memcpy(chksum, curchksum, curl);
1667 fn = solv_dupjoin("/", filename, 0);
1668 solv_free(filename);
1669 filename = solv_dupjoin("dists/", cinfo->name, fn);
1673 chksum = solv_free(chksum);
1675 *chksumtypep = chksumtype;
1681 read_repos(Pool *pool, struct repoinfo *repoinfos, int nrepoinfos)
1684 struct repoinfo *cinfo;
1687 const char *filename;
1688 const unsigned char *filechksum;
1690 #ifdef ENABLE_SUSEREPO
1691 const char *descrdir;
1696 #if defined(ENABLE_SUSEREPO) || defined(ENABLE_RPMMD)
1700 #if defined(ENABLE_DEBIAN)
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));
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));
1717 printf("no installed database:");
1718 memset(&stb, 0, sizeof(stb));
1720 calc_checksum_stat(&stb, REPOKEY_TYPE_SHA256, 0, installedcookie);
1721 if (usecachedrepo(repo, 0, installedcookie, 0))
1722 printf(" cached\n");
1725 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
1728 printf(" reading\n");
1730 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
1731 # if defined(ENABLE_SUSEREPO) && defined(PRODUCTS_PATH)
1732 if (repo_add_products(repo, PRODUCTS_PATH, REPO_NO_INTERNALIZE | REPO_USE_ROOTDIR))
1734 fprintf(stderr, "product reading failed: %s\n", pool_errstr(pool));
1738 ofp = fopen(calccachepath(repo, 0), "r");
1739 if (repo_add_rpmdb_reffp(repo, ofp, REPO_REUSE_REPODATA | REPO_USE_ROOTDIR))
1741 fprintf(stderr, "installed db: %s\n", pool_errstr(pool));
1747 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
1748 if (repo_add_debdb(repo, REPO_REUSE_REPODATA | REPO_USE_ROOTDIR))
1750 fprintf(stderr, "installed db: %s\n", pool_errstr(pool));
1754 writecachedrepo(repo, 0, 0, installedcookie);
1756 pool_set_installed(pool, repo);
1758 for (i = 0; i < nrepoinfos; i++)
1760 cinfo = repoinfos + i;
1761 if (!cinfo->enabled)
1764 repo = repo_create(pool, cinfo->alias);
1766 repo->appdata = cinfo;
1767 repo->priority = 99 - cinfo->priority;
1769 dorefresh = cinfo->autorefresh;
1770 if (dorefresh && cinfo->metadata_expire && stat(calccachepath(repo, 0), &stb) == 0)
1772 if (cinfo->metadata_expire == -1 || time(0) - stb.st_mtime < cinfo->metadata_expire)
1775 if (!dorefresh && usecachedrepo(repo, 0, 0, 0))
1777 printf("repo '%s':", cinfo->alias);
1778 printf(" cached\n");
1781 switch (cinfo->type)
1785 printf("rpmmd repo '%s':", cinfo->alias);
1787 if ((fp = curlfopen(cinfo, "repodata/repomd.xml", 0, 0, 0, 0)) == 0)
1789 printf(" no repomd.xml file, skipped\n");
1794 calc_checksum_fp(fp, REPOKEY_TYPE_SHA256, cinfo->cookie);
1795 if (usecachedrepo(repo, 0, cinfo->cookie, 1))
1797 printf(" cached\n");
1801 if (cinfo->repo_gpgcheck && !downloadchecksig(cinfo, fp, "repodata/repomd.xml.asc", &sigpool))
1806 if (repo_add_repomdxml(repo, fp, 0))
1808 printf("repomd.xml: %s\n", pool_errstr(pool));
1810 break; /* hopeless */
1813 printf(" fetching\n");
1814 filename = repomd_find(repo, "primary", &filechksum, &filechksumtype);
1815 if (filename && (fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1817 if (repo_add_rpmmd(repo, fp, 0, 0))
1819 printf("primary: %s\n", pool_errstr(pool));
1820 cinfo->incomplete = 1;
1824 if (cinfo->incomplete)
1825 break; /* hopeless */
1827 filename = repomd_find(repo, "updateinfo", &filechksum, &filechksumtype);
1828 if (filename && (fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1830 if (repo_add_updateinfoxml(repo, fp, 0))
1832 printf("updateinfo: %s\n", pool_errstr(pool));
1833 cinfo->incomplete = 1;
1838 data = repo_add_repodata(repo, 0);
1839 if (!repomd_add_ext(repo, data, "deltainfo"))
1840 repomd_add_ext(repo, data, "prestodelta");
1841 repomd_add_ext(repo, data, "filelists");
1842 repodata_internalize(data);
1843 if (!cinfo->incomplete)
1844 writecachedrepo(repo, 0, 0, cinfo->cookie);
1845 repodata_create_stubs(repo_last_repodata(repo));
1849 #ifdef ENABLE_SUSEREPO
1851 printf("susetags repo '%s':", cinfo->alias);
1855 if ((fp = curlfopen(cinfo, "content", 0, 0, 0, 0)) == 0)
1857 printf(" no content file, skipped\n");
1862 calc_checksum_fp(fp, REPOKEY_TYPE_SHA256, cinfo->cookie);
1863 if (usecachedrepo(repo, 0, cinfo->cookie, 1))
1865 printf(" cached\n");
1869 if (cinfo->repo_gpgcheck && !downloadchecksig(cinfo, fp, "content.asc", &sigpool))
1874 if (repo_add_content(repo, fp, 0))
1876 printf("content: %s\n", pool_errstr(pool));
1878 break; /* hopeless */
1881 defvendor = repo_lookup_id(repo, SOLVID_META, SUSETAGS_DEFAULTVENDOR);
1882 descrdir = repo_lookup_str(repo, SOLVID_META, SUSETAGS_DESCRDIR);
1884 descrdir = "suse/setup/descr";
1885 filename = susetags_find(repo, "packages.gz", &filechksum, &filechksumtype);
1887 filename = susetags_find(repo, "packages", &filechksum, &filechksumtype);
1890 printf(" no packages file entry, skipped\n");
1893 printf(" fetching\n");
1894 if ((fp = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) == 0)
1895 break; /* hopeless */
1896 if (repo_add_susetags(repo, fp, defvendor, 0, REPO_NO_INTERNALIZE|SUSETAGS_RECORD_SHARES))
1898 printf("packages: %s\n", pool_errstr(pool));
1900 cinfo->incomplete = 1;
1901 break; /* hopeless */
1904 /* add default language */
1905 filename = susetags_find(repo, "packages.en.gz", &filechksum, &filechksumtype);
1907 filename = susetags_find(repo, "packages.en", &filechksum, &filechksumtype);
1910 if ((fp = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1912 if (repo_add_susetags(repo, fp, defvendor, 0, REPO_NO_INTERNALIZE|REPO_REUSE_REPODATA|REPO_EXTEND_SOLVABLES))
1914 printf("packages.en: %s\n", pool_errstr(pool));
1915 cinfo->incomplete = 1;
1920 filename = susetags_find(repo, "patterns", &filechksum, &filechksumtype);
1923 if ((fp = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1926 while (fgets(pbuf, sizeof(pbuf), fp))
1928 int l = strlen(pbuf);
1930 if (l && pbuf[l - 1] == '\n')
1932 if (!*pbuf || *pbuf == '.' || strchr(pbuf, '/') != 0)
1934 filename = susetags_find(repo, pbuf, &filechksum, &filechksumtype);
1935 if (filename && (fp2 = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1937 if (repo_add_susetags(repo, fp2, defvendor, 0, REPO_NO_INTERNALIZE))
1939 printf("%s: %s\n", pbuf, pool_errstr(pool));
1940 cinfo->incomplete = 1;
1948 repo_internalize(repo);
1949 data = repo_add_repodata(repo, 0);
1950 susetags_add_ext(repo, data);
1951 repodata_internalize(data);
1952 if (!cinfo->incomplete)
1953 writecachedrepo(repo, 0, 0, cinfo->cookie);
1954 repodata_create_stubs(repo_last_repodata(repo));
1958 #if defined(ENABLE_DEBIAN)
1960 printf("debian repo '%s':", cinfo->alias);
1962 filename = solv_dupjoin("dists/", cinfo->name, "/Release");
1963 if ((fpr = curlfopen(cinfo, filename, 0, 0, 0, 0)) == 0)
1965 printf(" no Release file, skipped\n");
1968 free((char *)filename);
1971 solv_free((char *)filename);
1972 if (cinfo->repo_gpgcheck)
1974 filename = solv_dupjoin("dists/", cinfo->name, "/Release.gpg");
1975 if (!downloadchecksig(cinfo, fpr, filename, &sigpool))
1978 solv_free((char *)filename);
1981 solv_free((char *)filename);
1983 calc_checksum_fp(fpr, REPOKEY_TYPE_SHA256, cinfo->cookie);
1984 if (usecachedrepo(repo, 0, cinfo->cookie, 1))
1986 printf(" cached\n");
1990 printf(" fetching\n");
1991 for (j = 0; j < cinfo->ncomponents; j++)
1993 if (!(filename = debian_find_component(cinfo, fpr, cinfo->components[j], &filechksum, &filechksumtype)))
1995 printf("[component %s not found]\n", cinfo->components[j]);
1998 if ((fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
2000 if (repo_add_debpackages(repo, fp, 0))
2002 printf("component %s: %s\n", cinfo->components[j], pool_errstr(pool));
2003 cinfo->incomplete = 1;
2007 solv_free((char *)filechksum);
2008 solv_free((char *)filename);
2011 if (!cinfo->incomplete)
2012 writecachedrepo(repo, 0, 0, cinfo->cookie);
2017 printf("unsupported repo '%s': skipped\n", cinfo->alias);
2028 yesno(const char *str)
2030 char inbuf[128], *ip;
2037 if (!(ip = fgets(inbuf, sizeof(inbuf), stdin)))
2042 while (*ip == ' ' || *ip == '\t')
2049 if (*ip == 'y' || *ip == 'n')
2050 return *ip == 'y' ? 1 : 0;
2054 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2064 fileconflict_cb(Pool *pool, Id p, void *cbdata)
2066 struct fcstate *fcstate = cbdata;
2072 s = pool_id2solvable(pool, p);
2073 if (pool->installed && s->repo == pool->installed)
2075 if (!s->repo->rpmdbid)
2077 rpmdbid = s->repo->rpmdbid[p - s->repo->start];
2080 return rpm_byrpmdbid(fcstate->rpmstate, rpmdbid);
2082 for (i = 0; i < fcstate->newpkgscnt; i++)
2083 if (fcstate->checkq->elements[i] == p)
2085 if (i == fcstate->newpkgscnt)
2087 fp = fcstate->newpkgsfps[i];
2091 return rpm_byfp(fcstate->rpmstate, fp, pool_solvable2str(pool, s));
2096 runrpm(const char *arg, const char *name, int dupfd3, const char *rootdir)
2101 if ((pid = fork()) == (pid_t)-1)
2110 if (dupfd3 != -1 && dupfd3 != 3)
2116 fcntl(3, F_SETFD, 0); /* clear CLOEXEC */
2117 if (strcmp(arg, "-e") == 0)
2118 execlp("rpm", "rpm", arg, "--nodeps", "--nodigest", "--nosignature", "--root", rootdir, name, (char *)0);
2120 execlp("rpm", "rpm", arg, "--force", "--nodeps", "--nodigest", "--nosignature", "--root", rootdir, name, (char *)0);
2124 while (waitpid(pid, &status, 0) != pid)
2128 printf("rpm failed\n");
2135 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
2138 rundpkg(const char *arg, const char *name, int dupfd3, const char *rootdir)
2143 if ((pid = fork()) == (pid_t)-1)
2152 if (dupfd3 != -1 && dupfd3 != 3)
2158 fcntl(3, F_SETFD, 0); /* clear CLOEXEC */
2159 if (strcmp(arg, "--install") == 0)
2160 execlp("dpkg", "dpkg", "--install", "--root", rootdir, "--force", "all", name, (char *)0);
2162 execlp("dpkg", "dpkg", "--remove", "--root", rootdir, "--force", "all", name, (char *)0);
2166 while (waitpid(pid, &status, 0) != pid)
2170 printf("dpkg failed\n");
2179 nscallback(Pool *pool, void *data, Id name, Id evr)
2181 if (name == NAMESPACE_PRODUCTBUDDY)
2183 /* SUSE specific hack: each product has an associated rpm */
2184 Solvable *s = pool->solvables + evr;
2188 cap = pool_str2id(pool, pool_tmpjoin(pool, "product(", pool_id2str(pool, s->name) + 8, ")"), 0);
2191 cap = pool_rel2id(pool, cap, s->evr, REL_EQ, 0);
2194 FOR_PROVIDES(p, pp, cap)
2196 Solvable *ps = pool->solvables + p;
2197 if (ps->repo == s->repo && ps->arch == s->arch)
2198 if (!bestp || pool_evrcmp(pool, pool->solvables[bestp].evr, ps->evr, EVRCMP_COMPARE) < 0)
2204 if (name == NAMESPACE_LANGUAGE)
2206 if (!strcmp(pool_id2str(pool, evr), "ja"))
2208 if (!strcmp(pool_id2str(pool, evr), "de"))
2210 if (!strcmp(pool_id2str(pool, evr), "en"))
2212 if (!strcmp(pool_id2str(pool, evr), "en_US"))
2220 #ifdef SOFTLOCKS_PATH
2222 addsoftlocks(Pool *pool, Queue *job)
2226 char *bp, *ep, buf[4096];
2228 if ((fp = fopen(SOFTLOCKS_PATH, "r")) == 0)
2230 while((bp = fgets(buf, sizeof(buf), fp)) != 0)
2232 while (*bp == ' ' || *bp == '\t')
2234 if (!*bp || *bp == '#')
2236 for (ep = bp; *ep; ep++)
2237 if (*ep == ' ' || *ep == '\t' || *ep == '\n')
2240 type = SOLVER_SOLVABLE_NAME;
2241 if (!strncmp(bp, "provides:", 9) && bp[9])
2243 type = SOLVER_SOLVABLE_PROVIDES;
2246 id = pool_str2id(pool, bp, 1);
2247 if (pool->installed)
2249 FOR_JOB_SELECT(p, pp, type, id)
2250 if (pool->solvables[p].repo == pool->installed)
2253 continue; /* ignore, as it is already installed */
2255 queue_push2(job, SOLVER_LOCK|SOLVER_WEAK|type, id);
2262 #if defined(ENABLE_RPMDB)
2265 rewrite_repos(Pool *pool, Queue *addedfileprovides, Queue *addedfileprovides_inst)
2270 Queue fileprovidesq;
2272 struct repoinfo *cinfo;
2274 map_init(&providedids, pool->ss.nstrings);
2275 queue_init(&fileprovidesq);
2276 for (i = 0; i < addedfileprovides->count; i++)
2277 MAPSET(&providedids, addedfileprovides->elements[i]);
2280 /* make sure all repodatas but the first are extensions */
2281 if (repo->nrepodata < 2)
2283 cinfo = repo->appdata;
2284 if (cinfo && cinfo->incomplete)
2286 data = repo_id2repodata(repo, 1);
2287 if (data->loadcallback)
2289 for (j = 2; j < repo->nrepodata; j++)
2291 Repodata *edata = repo_id2repodata(repo, j);
2292 if (!edata->loadcallback)
2295 if (j < repo->nrepodata)
2296 continue; /* found a non-externsion repodata, can't rewrite */
2297 if (repodata_lookup_idarray(data, SOLVID_META, REPOSITORY_ADDEDFILEPROVIDES, &fileprovidesq))
2299 if (repo == pool->installed && addedfileprovides_inst)
2301 for (j = 0; j < addedfileprovides->count; j++)
2302 MAPCLR(&providedids, addedfileprovides->elements[j]);
2303 for (j = 0; j < addedfileprovides_inst->count; j++)
2304 MAPSET(&providedids, addedfileprovides_inst->elements[j]);
2307 for (j = 0; j < fileprovidesq.count; j++)
2308 if (MAPTST(&providedids, fileprovidesq.elements[j]))
2310 if (repo == pool->installed && addedfileprovides_inst)
2312 for (j = 0; j < addedfileprovides_inst->count; j++)
2313 MAPCLR(&providedids, addedfileprovides_inst->elements[j]);
2314 for (j = 0; j < addedfileprovides->count; j++)
2315 MAPSET(&providedids, addedfileprovides->elements[j]);
2316 if (n == addedfileprovides_inst->count)
2317 continue; /* nothing new added */
2319 else if (n == addedfileprovides->count)
2320 continue; /* nothing new added */
2322 repodata_set_idarray(data, SOLVID_META, REPOSITORY_ADDEDFILEPROVIDES, repo == pool->installed && addedfileprovides_inst ? addedfileprovides_inst : addedfileprovides);
2323 repodata_internalize(data);
2324 writecachedrepo(repo, data, 0, cinfo ? cinfo->cookie : installedcookie);
2326 queue_free(&fileprovidesq);
2327 map_free(&providedids);
2331 addfileprovides(Pool *pool)
2333 Queue addedfileprovides;
2334 Queue addedfileprovides_inst;
2336 queue_init(&addedfileprovides);
2337 queue_init(&addedfileprovides_inst);
2338 pool_addfileprovides_queue(pool, &addedfileprovides, &addedfileprovides_inst);
2339 if (addedfileprovides.count || addedfileprovides_inst.count)
2340 rewrite_repos(pool, &addedfileprovides, &addedfileprovides_inst);
2341 queue_free(&addedfileprovides);
2342 queue_free(&addedfileprovides_inst);
2347 #if defined(SUSE) || defined(FEDORA)
2349 add_patchjobs(Pool *pool, Queue *job)
2353 Map installedmap, multiversionmap;
2356 map_init(&multiversionmap, 0);
2357 map_init(&installedmap, pool->nsolvables);
2358 solver_calculate_multiversionmap(pool, job, &multiversionmap);
2359 if (pool->installed)
2360 FOR_REPO_SOLVABLES(pool->installed, p, s)
2361 MAPSET(&installedmap, p);
2363 /* install all patches */
2364 for (p = 1; p < pool->nsolvables; p++)
2370 s = pool->solvables + p;
2371 if (strncmp(pool_id2str(pool, s->name), "patch:", 6) != 0)
2373 FOR_PROVIDES(p2, pp, s->name)
2375 Solvable *s2 = pool->solvables + p2;
2376 if (s2->name != s->name)
2378 r = pool_evrcmp(pool, s->evr, s2->evr, EVRCMP_COMPARE);
2379 if (r < 0 || (r == 0 && p > p2))
2384 type = solvable_lookup_str(s, SOLVABLE_PATCHCATEGORY);
2385 if (type && !strcmp(type, "optional"))
2387 r = solvable_trivial_installable_map(s, &installedmap, 0, &multiversionmap);
2390 if (solvable_lookup_bool(s, UPDATE_RESTART) && r == 0)
2397 queue_push2(job, SOLVER_SOLVABLE, p);
2399 map_free(&installedmap);
2400 map_free(&multiversionmap);
2406 showdiskusagechanges(Transaction *trans)
2411 /* XXX: use mountpoints here */
2413 duc[1].path = "/usr/share/man";
2414 duc[2].path = "/sbin";
2415 duc[3].path = "/etc";
2416 transaction_calc_duchanges(trans, duc, 4);
2417 for (i = 0; i < 4; i++)
2418 printf("duchanges %s: %d K %d inodes\n", duc[i].path, duc[i].kbytes, duc[i].files);
2422 #if defined(ENABLE_RPMDB)
2424 trydeltadownload(Solvable *s, struct repoinfo *cinfo, const char *loc)
2426 Pool *pool = s->repo->pool;
2429 const unsigned char *chksum;
2432 char *matchname = strdup(pool_id2str(pool, s->name));
2434 dataiterator_init(&di, pool, s->repo, SOLVID_META, DELTA_PACKAGE_NAME, matchname, SEARCH_STRING);
2435 dataiterator_prepend_keyname(&di, REPOSITORY_DELTAINFO);
2436 while (dataiterator_step(&di))
2440 dataiterator_setpos_parent(&di);
2441 if (pool_lookup_id(pool, SOLVID_POS, DELTA_PACKAGE_EVR) != s->evr ||
2442 pool_lookup_id(pool, SOLVID_POS, DELTA_PACKAGE_ARCH) != s->arch)
2444 baseevr = pool_lookup_id(pool, SOLVID_POS, DELTA_BASE_EVR);
2445 FOR_PROVIDES(op, pp, s->name)
2447 Solvable *os = pool->solvables + op;
2448 if (os->repo == pool->installed && os->name == s->name && os->arch == s->arch && os->evr == baseevr)
2451 if (op && access("/usr/bin/applydeltarpm", X_OK) == 0)
2453 /* base is installed, run sequence check */
2456 const char *archstr;
2461 archstr = pool_id2str(pool, s->arch);
2462 if (strlen(archstr) > 10 || strchr(archstr, '\'') != 0)
2465 seq = pool_tmpjoin(pool, pool_lookup_str(pool, SOLVID_POS, DELTA_SEQ_NAME), "-", pool_lookup_str(pool, SOLVID_POS, DELTA_SEQ_EVR));
2466 seq = pool_tmpappend(pool, seq, "-", pool_lookup_str(pool, SOLVID_POS, DELTA_SEQ_NUM));
2467 if (strchr(seq, '\'') != 0)
2470 sprintf(cmd, "/usr/bin/applydeltarpm -a '%s' -c -s '", archstr);
2472 sprintf(cmd, "/usr/bin/applydeltarpm -c -s '");
2474 if (system(pool_tmpjoin(pool, cmd, seq, "'")) != 0)
2475 continue; /* didn't match */
2476 /* looks good, download delta */
2478 chksum = pool_lookup_bin_checksum(pool, SOLVID_POS, DELTA_CHECKSUM, &chksumtype);
2480 continue; /* no way! */
2481 dloc = pool_lookup_deltalocation(pool, SOLVID_POS, 0);
2484 #ifdef ENABLE_SUSEREPO
2485 if (cinfo->type == TYPE_SUSETAGS)
2487 const char *datadir = repo_lookup_str(cinfo->repo, SOLVID_META, SUSETAGS_DATADIR);
2488 dloc = pool_tmpjoin(pool, datadir ? datadir : "suse", "/", dloc);
2491 if ((fp = curlfopen(cinfo, dloc, 0, chksum, chksumtype, 0)) == 0)
2493 /* got it, now reconstruct */
2494 newfd = opentmpfile();
2496 sprintf(cmd, "applydeltarpm -a '%s' /dev/fd/%d /dev/fd/%d", archstr, fileno(fp), newfd);
2498 sprintf(cmd, "applydeltarpm /dev/fd/%d /dev/fd/%d", fileno(fp), newfd);
2500 fcntl(fileno(fp), F_SETFD, 0);
2507 lseek(newfd, 0, SEEK_SET);
2509 chksum = solvable_lookup_bin_checksum(s, SOLVABLE_CHECKSUM, &chksumtype);
2510 if (chksumtype && !verify_checksum(newfd, loc, chksum, chksumtype))
2516 retfp = fdopen(newfd, "r");
2521 dataiterator_free(&di);
2522 solv_free(matchname);
2529 #define MODE_INSTALL 1
2530 #define MODE_ERASE 2
2531 #define MODE_UPDATE 3
2532 #define MODE_DISTUPGRADE 4
2533 #define MODE_VERIFY 5
2534 #define MODE_PATCH 6
2536 #define MODE_REPOLIST 8
2537 #define MODE_SEARCH 9
2542 fprintf(stderr, "Usage: solv COMMAND <select>\n");
2543 fprintf(stderr, "\n");
2544 fprintf(stderr, " dist-upgrade: replace installed packages with\n");
2545 fprintf(stderr, " versions from the repositories\n");
2546 fprintf(stderr, " erase: erase installed packages\n");
2547 fprintf(stderr, " info: display package information\n");
2548 fprintf(stderr, " install: install packages\n");
2549 fprintf(stderr, " list: list packages\n");
2550 fprintf(stderr, " repos: list enabled repositories\n");
2551 fprintf(stderr, " search: search name/summary/description\n");
2552 fprintf(stderr, " update: update installed packages\n");
2553 fprintf(stderr, " verify: check dependencies of installed packages\n");
2554 #if defined(SUSE) || defined(FEDORA)
2555 fprintf(stderr, " patch: install newest patches\n");
2557 fprintf(stderr, "\n");
2562 main(int argc, char **argv)
2565 Repo *commandlinerepo = 0;
2566 Id *commandlinepkgs = 0;
2568 struct repoinfo *repoinfos;
2570 int mainmode = 0, mode = 0;
2585 if (!strcmp(argv[0], "install") || !strcmp(argv[0], "in"))
2587 mainmode = MODE_INSTALL;
2588 mode = SOLVER_INSTALL;
2590 #if defined(SUSE) || defined(FEDORA)
2591 else if (!strcmp(argv[0], "patch"))
2593 mainmode = MODE_PATCH;
2594 mode = SOLVER_INSTALL;
2597 else if (!strcmp(argv[0], "erase") || !strcmp(argv[0], "rm"))
2599 mainmode = MODE_ERASE;
2600 mode = SOLVER_ERASE;
2602 else if (!strcmp(argv[0], "list") || !strcmp(argv[0], "ls"))
2604 mainmode = MODE_LIST;
2607 else if (!strcmp(argv[0], "info"))
2609 mainmode = MODE_INFO;
2612 else if (!strcmp(argv[0], "search") || !strcmp(argv[0], "se"))
2614 mainmode = MODE_SEARCH;
2617 else if (!strcmp(argv[0], "verify"))
2619 mainmode = MODE_VERIFY;
2620 mode = SOLVER_VERIFY;
2622 else if (!strcmp(argv[0], "update") || !strcmp(argv[0], "up"))
2624 mainmode = MODE_UPDATE;
2625 mode = SOLVER_UPDATE;
2627 else if (!strcmp(argv[0], "dist-upgrade") || !strcmp(argv[0], "dup"))
2629 mainmode = MODE_DISTUPGRADE;
2630 mode = SOLVER_DISTUPGRADE;
2632 else if (!strcmp(argv[0], "repos") || !strcmp(argv[0], "repolist") || !strcmp(argv[0], "lr"))
2634 mainmode = MODE_REPOLIST;
2642 if (argc > 2 && !strcmp(argv[1], "--root"))
2649 else if (argc > 1 && !strcmp(argv[1], "--clean"))
2655 else if (argc > 1 && !strcmp(argv[1], "--best"))
2665 pool = pool_create();
2666 pool_set_rootdir(pool, rootdir);
2670 const char *langs[] = {"de_DE", "de", "en"};
2671 pool_set_languages(pool, langs, sizeof(langs)/sizeof(*langs));
2675 pool_setloadcallback(pool, load_stub, 0);
2677 pool->nscallback = nscallback;
2679 // pool_setdebuglevel(pool, 2);
2681 repoinfos = read_repoinfos(pool, &nrepoinfos);
2683 if (mainmode == MODE_REPOLIST)
2686 for (i = 0; i < nrepoinfos; i++)
2688 struct repoinfo *cinfo = repoinfos + i;
2689 if (!cinfo->enabled)
2691 printf("%d: %-20s %s (prio %d)\n", j++, cinfo->alias, cinfo->name, cinfo->priority);
2696 read_repos(pool, repoinfos, nrepoinfos);
2698 /* setup repofilter */
2699 queue_init(&repofilter);
2700 while (argc > 2 && !strcmp(argv[1], "-r"))
2702 const char *rname = argv[2], *rp;
2704 for (rp = rname; *rp; rp++)
2705 if (*rp <= '0' || *rp >= '9')
2709 /* repo specified by number */
2710 int rnum = atoi(rname);
2711 for (i = 0; i < nrepoinfos; i++)
2713 struct repoinfo *cinfo = repoinfos + i;
2714 if (!cinfo->enabled)
2717 repoid = cinfo->repo->repoid;
2722 /* repo specified by alias */
2726 if (!strcasecmp(rname, repo->name))
2727 repoid = repo->repoid;
2732 fprintf(stderr, "%s: no such repo\n", rname);
2735 /* SETVENDOR is actually wrong but useful */
2736 queue_push2(&repofilter, SOLVER_SOLVABLE_REPO | SOLVER_SETREPO | SOLVER_SETVENDOR, repoid);
2741 if (mainmode == MODE_SEARCH)
2747 pool_createwhatprovides(pool);
2749 dataiterator_init(&di, pool, 0, 0, 0, argv[1], SEARCH_SUBSTRING|SEARCH_NOCASE);
2750 dataiterator_set_keyname(&di, SOLVABLE_NAME);
2751 dataiterator_set_search(&di, 0, 0);
2752 while (dataiterator_step(&di))
2753 queue_push2(&sel, SOLVER_SOLVABLE, di.solvid);
2754 dataiterator_set_keyname(&di, SOLVABLE_SUMMARY);
2755 dataiterator_set_search(&di, 0, 0);
2756 while (dataiterator_step(&di))
2757 queue_push2(&sel, SOLVER_SOLVABLE, di.solvid);
2758 dataiterator_set_keyname(&di, SOLVABLE_DESCRIPTION);
2759 dataiterator_set_search(&di, 0, 0);
2760 while (dataiterator_step(&di))
2761 queue_push2(&sel, SOLVER_SOLVABLE, di.solvid);
2762 dataiterator_free(&di);
2763 if (repofilter.count)
2764 selection_filter(pool, &sel, &repofilter);
2767 selection_solvables(pool, &sel, &q);
2769 for (i = 0; i < q.count; i++)
2771 Solvable *s = pool_id2solvable(pool, q.elements[i]);
2772 printf(" - %s [%s]: %s\n", pool_solvable2str(pool, s), s->repo->name, solvable_lookup_str(s, SOLVABLE_SUMMARY));
2778 /* process command line packages */
2779 if (mainmode == MODE_LIST || mainmode == MODE_INSTALL)
2781 for (i = 1; i < argc; i++)
2784 l = strlen(argv[i]);
2785 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2786 if (l <= 4 || strcmp(argv[i] + l - 4, ".rpm"))
2789 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
2790 if (l <= 4 || strcmp(argv[i] + l - 4, ".deb"))
2793 if (access(argv[i], R_OK))
2798 if (!commandlinepkgs)
2799 commandlinepkgs = solv_calloc(argc, sizeof(Id));
2800 if (!commandlinerepo)
2801 commandlinerepo = repo_create(pool, "@commandline");
2803 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2804 p = repo_add_rpm(commandlinerepo, (const char *)argv[i], REPO_REUSE_REPODATA|REPO_NO_INTERNALIZE);
2806 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
2807 p = repo_add_deb(commandlinerepo, (const char *)argv[i], REPO_REUSE_REPODATA|REPO_NO_INTERNALIZE);
2811 fprintf(stderr, "could not add '%s'\n", argv[i]);
2814 commandlinepkgs[i] = p;
2816 if (commandlinerepo)
2817 repo_internalize(commandlinerepo);
2820 // FOR_REPOS(i, repo)
2821 // printf("%s: %d solvables\n", repo->name, repo->nsolvables);
2823 #if defined(ENABLE_RPMDB)
2824 addfileprovides(pool);
2826 pool_createwhatprovides(pool);
2829 for (i = 1; i < argc; i++)
2832 int j, flags, rflags;
2834 if (commandlinepkgs && commandlinepkgs[i])
2836 queue_push2(&job, SOLVER_SOLVABLE, commandlinepkgs[i]);
2840 flags = SELECTION_NAME|SELECTION_PROVIDES|SELECTION_GLOB;
2841 flags |= SELECTION_CANON|SELECTION_DOTARCH|SELECTION_REL;
2842 if (mode == MODE_LIST)
2843 flags |= SELECTION_WITH_SOURCE;
2844 if (argv[i][0] == '/')
2845 flags |= SELECTION_FILELIST | (mode == MODE_ERASE ? SELECTION_INSTALLED_ONLY : 0);
2846 rflags = selection_make(pool, &job2, argv[i], flags);
2847 if (repofilter.count)
2848 selection_filter(pool, &job2, &repofilter);
2851 flags |= SELECTION_NOCASE;
2852 rflags = selection_make(pool, &job2, argv[i], flags);
2853 if (repofilter.count)
2854 selection_filter(pool, &job2, &repofilter);
2856 printf("[ignoring case for '%s']\n", argv[i]);
2860 fprintf(stderr, "nothing matches '%s'\n", argv[i]);
2863 if (rflags & SELECTION_FILELIST)
2864 printf("[using file list match for '%s']\n", argv[i]);
2865 if (rflags & SELECTION_PROVIDES)
2866 printf("[using capability match for '%s']\n", argv[i]);
2867 for (j = 0; j < job2.count; j++)
2868 queue_push(&job, job2.elements[j]);
2872 if (!job.count && (mainmode == MODE_UPDATE || mainmode == MODE_DISTUPGRADE || mainmode == MODE_VERIFY || repofilter.count))
2874 queue_push2(&job, SOLVER_SOLVABLE_ALL, 0);
2875 if (repofilter.count)
2876 selection_filter(pool, &job, &repofilter);
2878 queue_free(&repofilter);
2880 if (!job.count && mainmode != MODE_PATCH)
2882 printf("no package matched\n");
2886 if (mainmode == MODE_LIST || mainmode == MODE_INFO)
2888 /* list mode, no solver needed */
2891 for (i = 0; i < job.count; i += 2)
2895 pool_job2solvables(pool, &q, job.elements[i], job.elements[i + 1]);
2896 for (j = 0; j < q.count; j++)
2898 Solvable *s = pool_id2solvable(pool, q.elements[j]);
2899 if (mainmode == MODE_INFO)
2902 printf("Name: %s\n", pool_solvable2str(pool, s));
2903 printf("Repo: %s\n", s->repo->name);
2904 printf("Summary: %s\n", solvable_lookup_str(s, SOLVABLE_SUMMARY));
2905 str = solvable_lookup_str(s, SOLVABLE_URL);
2907 printf("Url: %s\n", str);
2908 str = solvable_lookup_str(s, SOLVABLE_LICENSE);
2910 printf("License: %s\n", str);
2911 printf("Description:\n%s\n", solvable_lookup_str(s, SOLVABLE_DESCRIPTION));
2917 const char *sum = solvable_lookup_str_lang(s, SOLVABLE_SUMMARY, "de", 1);
2919 const char *sum = solvable_lookup_str_poollang(s, SOLVABLE_SUMMARY);
2921 printf(" - %s [%s]\n", pool_solvable2str(pool, s), s->repo->name);
2923 printf(" %s\n", sum);
2930 free_repoinfos(repoinfos, nrepoinfos);
2931 solv_free(commandlinepkgs);
2933 yum_substitute(pool, 0);
2938 #if defined(SUSE) || defined(FEDORA)
2939 if (mainmode == MODE_PATCH)
2940 add_patchjobs(pool, &job);
2944 for (i = 0; i < job.count; i += 2)
2946 job.elements[i] |= mode;
2947 if (mode == SOLVER_UPDATE && pool_isemptyupdatejob(pool, job.elements[i], job.elements[i + 1]))
2948 job.elements[i] ^= SOLVER_UPDATE ^ SOLVER_INSTALL;
2950 job.elements[i] |= SOLVER_CLEANDEPS;
2952 job.elements[i] |= SOLVER_FORCEBEST;
2955 // multiversion test
2956 // queue_push2(&job, SOLVER_MULTIVERSION|SOLVER_SOLVABLE_NAME, pool_str2id(pool, "kernel-pae", 1));
2957 // queue_push2(&job, SOLVER_MULTIVERSION|SOLVER_SOLVABLE_NAME, pool_str2id(pool, "kernel-pae-base", 1));
2958 // queue_push2(&job, SOLVER_MULTIVERSION|SOLVER_SOLVABLE_NAME, pool_str2id(pool, "kernel-pae-extra", 1));
2960 queue_push2(&job, SOLVER_INSTALL|SOLVER_SOLVABLE_PROVIDES, pool_rel2id(pool, NAMESPACE_LANGUAGE, 0, REL_NAMESPACE, 1));
2961 queue_push2(&job, SOLVER_ERASE|SOLVER_CLEANDEPS|SOLVER_SOLVABLE_PROVIDES, pool_rel2id(pool, NAMESPACE_LANGUAGE, 0, REL_NAMESPACE, 1));
2964 #ifdef SOFTLOCKS_PATH
2965 addsoftlocks(pool, &job);
2968 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2971 solv = solver_create(pool);
2972 solver_set_flag(solv, SOLVER_FLAG_SPLITPROVIDES, 1);
2974 solver_set_flag(solv, SOLVER_FLAG_ALLOW_VENDORCHANGE, 1);
2976 if (mainmode == MODE_ERASE)
2977 solver_set_flag(solv, SOLVER_FLAG_ALLOW_UNINSTALL, 1); /* don't nag */
2978 solver_set_flag(solv, SOLVER_FLAG_BEST_OBEY_POLICY, 1);
2982 Id problem, solution;
2985 if (!solver_solve(solv, &job))
2987 pcnt = solver_problem_count(solv);
2988 printf("Found %d problems:\n", pcnt);
2989 for (problem = 1; problem <= pcnt; problem++)
2992 printf("Problem %d/%d:\n", problem, pcnt);
2993 solver_printprobleminfo(solv, problem);
2995 scnt = solver_solution_count(solv, problem);
2996 for (solution = 1; solution <= scnt; solution++)
2998 printf("Solution %d:\n", solution);
2999 solver_printsolution(solv, problem, solution);
3004 char inbuf[128], *ip;
3005 printf("Please choose a solution: ");
3008 if (!(ip = fgets(inbuf, sizeof(inbuf), stdin)))
3013 while (*ip == ' ' || *ip == '\t')
3015 if (*ip >= '0' && *ip <= '9')
3018 if (take >= 1 && take <= scnt)
3034 solver_take_solution(solv, problem, take, &job);
3038 trans = solver_create_transaction(solv);
3039 if (!trans->steps.count)
3041 printf("Nothing to do.\n");
3042 transaction_free(trans);
3046 free_repoinfos(repoinfos, nrepoinfos);
3047 solv_free(commandlinepkgs);
3049 yum_substitute(pool, 0);
3054 /* display transaction to the user and ask for confirmation */
3056 printf("Transaction summary:\n\n");
3057 transaction_print(trans);
3059 showdiskusagechanges(trans);
3061 printf("install size change: %d K\n", transaction_calc_installsizechange(trans));
3064 if (!yesno("OK to continue (y/n)? "))
3067 transaction_free(trans);
3071 free_repoinfos(repoinfos, nrepoinfos);
3072 solv_free(commandlinepkgs);
3074 yum_substitute(pool, 0);
3079 /* download all new packages */
3080 queue_init(&checkq);
3081 newpkgs = transaction_installedresult(trans, &checkq);
3085 int downloadsize = 0;
3086 for (i = 0; i < newpkgs; i++)
3090 p = checkq.elements[i];
3091 s = pool_id2solvable(pool, p);
3092 downloadsize += solvable_lookup_sizek(s, SOLVABLE_DOWNLOADSIZE, 0);
3094 printf("Downloading %d packages, %d K\n", newpkgs, downloadsize);
3095 newpkgsfps = solv_calloc(newpkgs, sizeof(*newpkgsfps));
3096 for (i = 0; i < newpkgs; i++)
3098 unsigned int medianr;
3101 struct repoinfo *cinfo;
3102 const unsigned char *chksum;
3105 p = checkq.elements[i];
3106 s = pool_id2solvable(pool, p);
3107 if (s->repo == commandlinerepo)
3109 loc = solvable_lookup_location(s, &medianr);
3110 if (!(newpkgsfps[i] = fopen(loc, "r")))
3118 cinfo = s->repo->appdata;
3121 printf("%s: no repository information\n", s->repo->name);
3124 loc = solvable_lookup_location(s, &medianr);
3127 #if defined(ENABLE_RPMDB)
3128 if (pool->installed && pool->installed->nsolvables)
3130 if ((newpkgsfps[i] = trydeltadownload(s, cinfo, loc)) != 0)
3134 continue; /* delta worked! */
3138 #ifdef ENABLE_SUSEREPO
3139 if (cinfo->type == TYPE_SUSETAGS)
3141 const char *datadir = repo_lookup_str(cinfo->repo, SOLVID_META, SUSETAGS_DATADIR);
3142 loc = pool_tmpjoin(pool, datadir ? datadir : "suse", "/", loc);
3146 chksum = solvable_lookup_bin_checksum(s, SOLVABLE_CHECKSUM, &chksumtype);
3147 if ((newpkgsfps[i] = curlfopen(cinfo, loc, 0, chksum, chksumtype, 0)) == 0)
3149 printf("\n%s: %s not found in repository\n", s->repo->name, loc);
3158 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3159 /* check for file conflicts */
3163 struct fcstate fcstate;
3165 printf("Searching for file conflicts\n");
3166 queue_init(&conflicts);
3167 fcstate.rpmstate = rpm_state_create(pool, rootdir);
3168 fcstate.newpkgscnt = newpkgs;
3169 fcstate.checkq = &checkq;
3170 fcstate.newpkgsfps = newpkgsfps;
3171 pool_findfileconflicts(pool, &checkq, newpkgs, &conflicts, FINDFILECONFLICTS_USE_SOLVABLEFILELIST | FINDFILECONFLICTS_CHECK_DIRALIASING | FINDFILECONFLICTS_USE_ROOTDIR, &fileconflict_cb, &fcstate);
3172 fcstate.rpmstate = rpm_state_free(fcstate.rpmstate);
3173 if (conflicts.count)
3176 for (i = 0; i < conflicts.count; i += 6)
3177 printf("file %s of package %s conflicts with package %s\n", pool_id2str(pool, conflicts.elements[i]), pool_solvid2str(pool, conflicts.elements[i + 1]), pool_solvid2str(pool, conflicts.elements[i + 4]));
3179 if (yesno("Re-run solver (y/n/q)? "))
3181 for (i = 0; i < newpkgs; i++)
3183 fclose(newpkgsfps[i]);
3184 newpkgsfps = solv_free(newpkgsfps);
3187 pool_add_fileconflicts_deps(pool, &conflicts);
3191 queue_free(&conflicts);
3195 /* and finally commit the transaction */
3196 printf("Committing transaction:\n\n");
3197 transaction_order(trans, 0);
3198 for (i = 0; i < trans->steps.count; i++)
3200 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3201 const char *evr, *evrp, *nvra;
3208 p = trans->steps.elements[i];
3209 s = pool_id2solvable(pool, p);
3210 type = transaction_type(trans, p, SOLVER_TRANSACTION_RPM_ONLY);
3213 case SOLVER_TRANSACTION_ERASE:
3214 printf("erase %s\n", pool_solvid2str(pool, p));
3215 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3216 if (!s->repo->rpmdbid || !s->repo->rpmdbid[p - s->repo->start])
3218 /* strip epoch from evr */
3219 evr = evrp = pool_id2str(pool, s->evr);
3220 while (*evrp >= '0' && *evrp <= '9')
3222 if (evrp > evr && evrp[0] == ':' && evrp[1])
3224 nvra = pool_tmpjoin(pool, pool_id2str(pool, s->name), "-", evr);
3225 nvra = pool_tmpappend(pool, nvra, ".", pool_id2str(pool, s->arch));
3226 runrpm("-e", nvra, -1, rootdir); /* too bad that --querybynumber doesn't work */
3228 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
3229 rundpkg("--remove", pool_id2str(pool, s->name), 0, rootdir);
3232 case SOLVER_TRANSACTION_INSTALL:
3233 case SOLVER_TRANSACTION_MULTIINSTALL:
3234 printf("install %s\n", pool_solvid2str(pool, p));
3235 for (j = 0; j < newpkgs; j++)
3236 if (checkq.elements[j] == p)
3238 fp = j < newpkgs ? newpkgsfps[j] : 0;
3242 lseek(fileno(fp), 0, SEEK_SET);
3243 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3244 runrpm(type == SOLVER_TRANSACTION_MULTIINSTALL ? "-i" : "-U", "/dev/fd/3", fileno(fp), rootdir);
3246 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
3247 rundpkg("--install", "/dev/fd/3", fileno(fp), rootdir);
3257 for (i = 0; i < newpkgs; i++)
3259 fclose(newpkgsfps[i]);
3260 solv_free(newpkgsfps);
3261 queue_free(&checkq);
3262 transaction_free(trans);
3266 free_repoinfos(repoinfos, nrepoinfos);
3267 solv_free(commandlinepkgs);
3269 yum_substitute(pool, 0);