2 * Copyright (c) 2009, 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"
71 #include "repo_rpmmd.h"
72 #include "repo_repomdxml.h"
73 #include "repo_updateinfoxml.h"
74 #include "repo_deltainfoxml.h"
76 #ifdef ENABLE_SUSEREPO
77 #include "repo_products.h"
78 #include "repo_susetags.h"
79 #include "repo_content.h"
81 #include "solv_xfopen.h"
84 # define REPOINFO_PATH "/etc/yum.repos.d"
87 # define REPOINFO_PATH "/etc/zypp/repos.d"
88 # define PRODUCTS_PATH "/etc/products.d"
89 # define SOFTLOCKS_PATH "/var/lib/zypp/SoftLocks"
92 #define SOLVCACHE_PATH "/var/cache/solv"
94 #define METADATA_EXPIRE (60 * 15)
116 unsigned char cookie[32];
117 unsigned char extcookie[32];
123 yum_substitute(Pool *pool, char *line)
126 static char *releaseevr;
127 static char *basearch;
131 solv_free(releaseevr);
138 while ((p2 = strchr(p, '$')) != 0)
140 if (!strncmp(p2, "$releasever", 11))
145 const char *rootdir = pool_get_rootdir(pool);
148 rpm_installedrpmdbids(rootdir, "Providename", "redhat-release", &q);
151 void *handle, *state = 0;
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)
162 fprintf(stderr, "no installed package provides 'redhat-release', cannot determine $releasever\n");
167 p = pool_tmpjoin(pool, line, releaseevr, p2 + 11);
168 p2 = p + (p2 - line);
170 p = p2 + strlen(releaseevr);
173 if (!strncmp(p2, "$basearch", 9))
183 basearch = strdup(un.machine);
184 if (basearch[0] == 'i' && basearch[1] && !strcmp(basearch + 2, "86"))
188 p = pool_tmpjoin(pool, line, basearch, p2 + 9);
189 p2 = p + (p2 - line);
191 p = p2 + strlen(basearch);
200 #define TYPE_UNKNOWN 0
201 #define TYPE_SUSETAGS 1
203 #define TYPE_PLAINDIR 3
204 #define TYPE_DEBIAN 4
208 read_repoinfos_sort(const void *ap, const void *bp)
210 const struct repoinfo *a = ap;
211 const struct repoinfo *b = bp;
212 return strcmp(a->alias, b->alias);
216 #if defined(SUSE) || defined(FEDORA)
219 read_repoinfos(Pool *pool, int *nrepoinfosp)
221 const char *reposdir = REPOINFO_PATH;
223 char buf2[4096], *kp, *vp, *kpe;
228 struct repoinfo *repoinfos = 0, *cinfo;
231 rdlen = strlen(reposdir);
232 dir = opendir(reposdir);
238 while ((ent = readdir(dir)) != 0)
240 if (ent->d_name[0] == '.')
242 l = strlen(ent->d_name);
243 if (l < 6 || rdlen + 2 + l >= sizeof(buf) || strcmp(ent->d_name + l - 5, ".repo") != 0)
245 snprintf(buf, sizeof(buf), "%s/%s", reposdir, ent->d_name);
246 if ((fp = fopen(buf, "r")) == 0)
252 while(fgets(buf2, sizeof(buf2), fp))
257 while (l && (buf2[l - 1] == '\n' || buf2[l - 1] == ' ' || buf2[l - 1] == '\t'))
260 while (*kp == ' ' || *kp == '\t')
262 if (!*kp || *kp == '#')
266 kp = yum_substitute(pool, kp);
270 vp = strrchr(kp, ']');
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;
282 cinfo->repo_gpgcheck = 1;
284 cinfo->metadata_expire = METADATA_EXPIRE;
289 vp = strchr(kp, '=');
292 for (kpe = vp - 1; kpe >= kp; kpe--)
293 if (*kpe != ' ' && *kpe != '\t')
298 while (*vp == ' ' || *vp == '\t')
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"))
315 if (strstr(vp, "metalink"))
316 cinfo->metalink = strdup(vp);
318 cinfo->mirrorlist = strdup(vp);
320 else if (!strcmp(kp, "path"))
322 if (vp && strcmp(vp, "/") != 0)
323 cinfo->path = strdup(vp);
325 else if (!strcmp(kp, "type"))
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;
334 cinfo->type = TYPE_UNKNOWN;
336 else if (!strcmp(kp, "priority"))
337 cinfo->priority = atoi(vp);
338 else if (!strcmp(kp, "keeppackages"))
339 cinfo->keeppackages = *vp == '0' ? 0 : 1;
345 qsort(repoinfos, nrepoinfos, sizeof(*repoinfos), read_repoinfos_sort);
346 *nrepoinfosp = nrepoinfos;
355 read_repoinfos(Pool *pool, int *nrepoinfosp)
361 char *kp, *url, *distro;
362 struct repoinfo *repoinfos = 0, *cinfo;
367 fp = fopen("/etc/apt/sources.list", "r");
374 dir = opendir("/etc/apt/sources.list.d");
378 if ((ent = readdir(dir)) == 0)
383 if (ent->d_name[0] == '.')
385 l = strlen(ent->d_name);
386 if (l < 5 || strcmp(ent->d_name + l - 5, ".list") != 0)
388 snprintf(buf, sizeof(buf), "%s/%s", "/etc/apt/sources.list.d", ent->d_name);
389 if (!(fp = fopen(buf, "r")))
392 while(fgets(buf2, sizeof(buf2), fp))
397 while (l && (buf2[l - 1] == '\n' || buf2[l - 1] == ' ' || buf2[l - 1] == '\t'))
400 while (*kp == ' ' || *kp == '\t')
402 if (!*kp || *kp == '#')
404 if (strncmp(kp, "deb", 3) != 0)
407 if (*kp != ' ' && *kp != '\t')
409 while (*kp == ' ' || *kp == '\t')
414 while (*kp && *kp != ' ' && *kp != '\t')
418 while (*kp == ' ' || *kp == '\t')
423 while (*kp && *kp != ' ' && *kp != '\t')
427 while (*kp == ' ' || *kp == '\t')
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;
439 cinfo->autorefresh = 1;
440 cinfo->repo_gpgcheck = 1;
441 cinfo->metadata_expire = METADATA_EXPIRE;
445 while (*kp == ' ' || *kp == '\t')
450 while (*kp && *kp != ' ' && *kp != '\t')
454 cinfo->components = solv_extend(cinfo->components, cinfo->ncomponents, 1, sizeof(*cinfo->components), 15);
455 cinfo->components[cinfo->ncomponents++] = strdup(compo);
461 qsort(repoinfos, nrepoinfos, sizeof(*repoinfos), read_repoinfos_sort);
462 *nrepoinfosp = nrepoinfos;
470 read_repoinfos(Pool *pool, int *nrepoinfosp)
479 free_repoinfos(struct repoinfo *repoinfos, int nrepoinfos)
482 for (i = 0; i < nrepoinfos; i++)
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);
495 solv_free(repoinfos);
504 strcpy(tmpl, "/var/tmp/solvXXXXXX");
516 verify_checksum(int fd, const char *file, const unsigned char *chksum, Id chksumtype)
519 const unsigned char *sum;
523 h = solv_chksum_create(chksumtype);
526 printf("%s: unknown checksum type\n", file);
529 while ((l = read(fd, buf, sizeof(buf))) > 0)
530 solv_chksum_add(h, buf, l);
531 lseek(fd, 0, SEEK_SET);
533 sum = solv_chksum_get(h, &l);
534 if (memcmp(sum, chksum, l))
536 printf("%s: checksum mismatch\n", file);
537 solv_chksum_free(h, 0);
540 solv_chksum_free(h, 0);
545 findfastest(char **urls, int nurls)
552 struct addrinfo hints, *result;;
554 fds = solv_calloc(nurls, sizeof(*fds));
555 socks = solv_calloc(nurls, sizeof(*socks));
556 for (i = 0; i < nurls; i++)
559 p = strchr(urls[i], '/');
572 if ((p2 = strchr(p, '@')) != 0)
575 if (!strncmp("https:", urls[i], 6))
577 else if (!strncmp("ftp:", urls[i], 4))
579 if ((p2 = strrchr(p, ':')) != 0)
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;
594 if (!getaddrinfo(p, portstr, &hints, &result))
596 socks[i] = socket(result->ai_family, result->ai_socktype, result->ai_protocol);
599 fcntl(socks[i], F_SETFL, O_NONBLOCK);
600 if (connect(socks[i], result->ai_addr, result->ai_addrlen) == -1)
602 if (errno != EINPROGRESS)
609 freeaddrinfo(result);
616 for (i = j = 0; i < nurls; i++)
620 fds[j].fd = socks[i];
621 fds[j].events = POLLOUT;
629 if (poll(fds, j, 10000) <= 0)
631 i = -1; /* something is wrong */
634 for (i = 0; i < j; i++)
635 if ((fds[i].revents & POLLOUT) != 0)
638 socklen_t soel = sizeof(int);
639 if (getsockopt(fds[i].fd, SOL_SOCKET, SO_ERROR, &soe, &soel) == -1 || soe != 0)
641 /* connect failed, kill socket */
642 for (j = 0; j < nurls; j++)
643 if (socks[j] == fds[i].fd)
656 i = -1; /* something is wrong, no bit was set */
659 /* now i contains the fastest fd index */
662 for (j = 0; j < nurls; j++)
663 if (socks[j] == fds[i].fd)
667 char *url0 = urls[0];
672 for (i = j = 0; i < nurls; i++)
680 findmetalinkurl(FILE *fp, unsigned char *chksump, Id *chksumtypep)
682 char buf[4096], *bp, *ep;
689 while((bp = fgets(buf, sizeof(buf), fp)) != 0)
691 while (*bp == ' ' || *bp == '\t')
693 if (chksumtypep && !*chksumtypep && !strncmp(bp, "<hash type=\"sha256\">", 20))
696 if (solv_hex2bin((const char **)&bp, chksump, 32) == 32)
697 *chksumtypep = REPOKEY_TYPE_SHA256;
700 if (strncmp(bp, "<url", 4))
702 bp = strchr(bp, '>');
706 ep = strstr(bp, "repodata/repomd.xml</url>");
710 if (strncmp(bp, "http", 4))
712 urls = solv_extend(urls, nurls, 1, sizeof(*urls), 15);
713 urls[nurls++] = strdup(bp);
718 findfastest(urls, nurls > 5 ? 5 : nurls);
721 for (i = 0; i < nurls; i++)
724 ep = strchr(bp, '/');
725 if ((ep = strchr(ep + 2, '/')) != 0)
728 printf("[using mirror %s]\n", bp);
737 findmirrorlisturl(FILE *fp)
739 char buf[4096], *bp, *ep;
744 while((bp = fgets(buf, sizeof(buf), fp)) != 0)
746 while (*bp == ' ' || *bp == '\t')
748 if (!*bp || *bp == '#')
751 while (l > 0 && (bp[l - 1] == ' ' || bp[l - 1] == '\t' || bp[l - 1] == '\n'))
753 urls = solv_extend(urls, nurls, 1, sizeof(*urls), 15);
754 urls[nurls++] = strdup(bp);
759 findfastest(urls, nurls > 5 ? 5 : nurls);
762 for (i = 0; i < nurls; i++)
765 ep = strchr(bp, '/');
766 if ((ep = strchr(ep + 2, '/')) != 0)
769 printf("[using mirror %s]\n", bp);
778 iscompressed(const char *name)
780 return solv_xfopen_iscompressed(name) != 0;
784 curlfopen(struct repoinfo *cinfo, const char *file, int uncompress, const unsigned char *chksum, Id chksumtype, int markincomplete)
791 const char *baseurl = cinfo->baseurl;
795 if (!cinfo->metalink && !cinfo->mirrorlist)
797 if (file != cinfo->metalink && file != cinfo->mirrorlist)
799 unsigned char mlchksum[32];
800 fp = curlfopen(cinfo, cinfo->metalink ? cinfo->metalink : cinfo->mirrorlist, 0, 0, 0, 0);
805 cinfo->baseurl = findmetalinkurl(fp, mlchksum, &mlchksumtype);
807 cinfo->baseurl = findmirrorlisturl(fp);
812 if (strchr(cinfo->baseurl, '$'))
814 char *b = yum_substitute(cinfo->repo->pool, cinfo->baseurl);
815 free(cinfo->baseurl);
816 cinfo->baseurl = strdup(b);
819 if (!chksumtype && mlchksumtype && !strcmp(file, "repodata/repomd.xml"))
821 chksumtype = mlchksumtype;
824 return curlfopen(cinfo, file, uncompress, chksum, chksumtype, markincomplete);
826 snprintf(url, sizeof(url), "%s", file);
831 if (l && baseurl[l - 1] == '/')
832 snprintf(url, sizeof(url), "%s%s", baseurl, file);
834 snprintf(url, sizeof(url), "%s/%s", baseurl, file);
837 // printf("url: %s\n", url);
838 if ((pid = fork()) == (pid_t)-1)
850 execlp("curl", "curl", "-f", "-s", "-L", url, (char *)0);
855 while (waitpid(pid, &status, 0) != pid)
857 if (lseek(fd, 0, SEEK_END) == 0 && (!status || !chksumtype))
863 lseek(fd, 0, SEEK_SET);
866 printf("%s: download error %d\n", file, status >> 8 ? status >> 8 : status);
868 cinfo->incomplete = 1;
872 if (chksumtype && !verify_checksum(fd, file, chksum, chksumtype))
875 cinfo->incomplete = 1;
879 fcntl(fd, F_SETFD, FD_CLOEXEC);
882 if (solv_xfopen_iscompressed(file) < 0)
884 printf("%s: unsupported compression\n", file);
886 cinfo->incomplete = 1;
890 fp = solv_xfopen_fd(file, fd, "r");
893 fp = fdopen(fd, "r");
902 cleanupgpg(char *gpgdir)
905 snprintf(cmd, sizeof(cmd), "%s/pubring.gpg", gpgdir);
907 snprintf(cmd, sizeof(cmd), "%s/pubring.gpg~", gpgdir);
909 snprintf(cmd, sizeof(cmd), "%s/secring.gpg", gpgdir);
911 snprintf(cmd, sizeof(cmd), "%s/trustdb.gpg", gpgdir);
913 snprintf(cmd, sizeof(cmd), "%s/keys", gpgdir);
919 checksig(Pool *sigpool, FILE *fp, FILE *sigfp)
928 off_t posfp, possigfp;
931 gpgdir = mkdtemp(pool_tmpjoin(sigpool, "/var/tmp/solvgpg.XXXXXX", 0, 0));
934 keysfile = pool_tmpjoin(sigpool, gpgdir, "/keys", 0);
935 if (!(kfp = fopen(keysfile, "w")) )
941 for (p = 1, s = sigpool->solvables + p; p < sigpool->nsolvables; p++, s++)
945 pubkey = solvable_lookup_str(s, SOLVABLE_DESCRIPTION);
946 if (!pubkey || !*pubkey)
948 if (fwrite(pubkey, strlen(pubkey), 1, kfp) != 1)
950 if (fputc('\n', kfp) == EOF) /* Just in case... */
954 if (fclose(kfp) || !nkeys)
959 snprintf(cmd, sizeof(cmd), "gpg2 -q --homedir %s --import %s", gpgdir, keysfile);
962 fprintf(stderr, "key import error\n");
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 */
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);
980 return r == 0 ? 1 : 0;
986 checksig(Pool *sigpool, FILE *fp, FILE *sigfp)
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 */
995 fcntl(fileno(fp), F_SETFD, FD_CLOEXEC);
996 fcntl(fileno(sigfp), F_SETFD, FD_CLOEXEC);
997 return r == 0 ? 1 : 0;
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);
1014 downloadchecksig(struct repoinfo *cinfo, FILE *fp, const char *sigurl, Pool **sigpool)
1017 sigfp = curlfopen(cinfo, sigurl, 0, 0, 0, 0);
1020 printf(" unsigned, skipped\n");
1024 *sigpool = read_sigs();
1025 if (!checksig(*sigpool, fp, sigfp))
1027 printf(" checksig failed, skipped\n");
1035 #define CHKSUM_IDENT "1.1"
1038 calc_checksum_fp(FILE *fp, Id chktype, unsigned char *out)
1041 void *h = solv_chksum_create(chktype);
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);
1048 solv_chksum_free(h, out);
1052 calc_checksum_stat(struct stat *stb, Id chktype, unsigned char *cookie, unsigned char *out)
1054 void *h = solv_chksum_create(chktype);
1055 solv_chksum_add(h, CHKSUM_IDENT, strlen(CHKSUM_IDENT));
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);
1074 pool_setarch(pool, un.machine);
1077 char *calccachepath(Repo *repo, const char *repoext)
1079 char *q, *p = pool_tmpjoin(repo->pool, SOLVCACHE_PATH, "/", repo->name);
1082 p = pool_tmpappend(repo->pool, p, "_", repoext);
1083 p = pool_tmpappend(repo->pool, p, ".solvx", 0);
1086 p = pool_tmpappend(repo->pool, p, ".solv", 0);
1087 q = p + strlen(SOLVCACHE_PATH) + 1;
1097 usecachedrepo(Repo *repo, const char *repoext, unsigned char *cookie, int mark)
1100 unsigned char mycookie[32];
1101 unsigned char myextcookie[32];
1102 struct repoinfo *cinfo;
1105 cinfo = repo->appdata;
1106 if (!(fp = fopen(calccachepath(repo, repoext), "r")))
1108 if (fseek(fp, -sizeof(mycookie), SEEK_END) || fread(mycookie, sizeof(mycookie), 1, fp) != 1)
1113 if (cookie && memcmp(cookie, mycookie, sizeof(mycookie)))
1118 if (cinfo && !repoext)
1120 if (fseek(fp, -sizeof(mycookie) * 2, SEEK_END) || fread(myextcookie, sizeof(myextcookie), 1, fp) != 1)
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 */
1136 if (repo_add_solv(repo, fp, flags))
1141 if (cinfo && !repoext)
1143 memcpy(cinfo->cookie, mycookie, sizeof(mycookie));
1144 memcpy(cinfo->extcookie, myextcookie, sizeof(myextcookie));
1147 futimes(fileno(fp), 0); /* try to set modification time */
1153 writecachedrepo(Repo *repo, Repodata *info, const char *repoext, unsigned char *cookie)
1158 struct repoinfo *cinfo;
1161 cinfo = repo->appdata;
1162 if (cinfo && cinfo->incomplete)
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");
1174 if (!(fp = fdopen(fd, "w")))
1183 for (i = repo->start; i < repo->end; i++)
1184 if (repo->pool->solvables[i].repo != repo)
1190 repo_write(repo, fp);
1192 repodata_write(info, fp);
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;
1202 if (!repoext && cinfo)
1204 if (!cinfo->extcookie[0])
1206 /* create the ext cookie and append it */
1207 /* we just need some unique ID */
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;
1215 if (fwrite(cinfo->extcookie, 32, 1, fp) != 1)
1223 /* append our cookie describing the metadata state */
1224 if (fwrite(cookie, 32, 1, fp) != 1)
1239 /* switch to just saved repo to activate paging and save memory */
1240 FILE *fp = fopen(tmpl, "r");
1246 repo_empty(repo, 1);
1247 if (repo_add_solv(repo, fp, SOLV_ADD_NO_STUBS))
1249 /* oops, no way to recover from here */
1250 fprintf(stderr, "internal error\n");
1256 /* make sure repodata contains complete repo */
1257 /* (this is how repodata_write saves it) */
1258 repodata_extend_block(info, repo->start, repo->end - repo->start);
1259 info->state = REPODATA_LOADING;
1260 /* no need for LOCALPOOL as pool already contains ids */
1261 repo_add_solv(repo, fp, REPO_USE_LOADING|REPO_EXTEND_SOLVABLES);
1262 info->state = REPODATA_AVAILABLE; /* in case the load failed */
1267 if (!rename(tmpl, calccachepath(repo, repoext)))
1274 /* repomd helpers */
1276 static inline const char *
1277 repomd_find(Repo *repo, const char *what, const unsigned char **chksump, Id *chksumtypep)
1279 Pool *pool = repo->pool;
1281 const char *filename;
1286 dataiterator_init(&di, pool, repo, SOLVID_META, REPOSITORY_REPOMD_TYPE, what, SEARCH_STRING);
1287 dataiterator_prepend_keyname(&di, REPOSITORY_REPOMD);
1288 if (dataiterator_step(&di))
1290 dataiterator_setpos_parent(&di);
1291 filename = pool_lookup_str(pool, SOLVID_POS, REPOSITORY_REPOMD_LOCATION);
1292 *chksump = pool_lookup_bin_checksum(pool, SOLVID_POS, REPOSITORY_REPOMD_CHECKSUM, chksumtypep);
1294 dataiterator_free(&di);
1295 if (filename && !*chksumtypep)
1297 printf("no %s file checksum!\n", what);
1304 repomd_add_ext(Repo *repo, Repodata *data, const char *what)
1306 Id chksumtype, handle;
1307 const unsigned char *chksum;
1308 const char *filename;
1310 filename = repomd_find(repo, what, &chksum, &chksumtype);
1313 if (!strcmp(what, "prestodelta"))
1315 handle = repodata_new_handle(data);
1316 repodata_set_poolstr(data, handle, REPOSITORY_REPOMD_TYPE, what);
1317 repodata_set_str(data, handle, REPOSITORY_REPOMD_LOCATION, filename);
1318 repodata_set_bin_checksum(data, handle, REPOSITORY_REPOMD_CHECKSUM, chksumtype, chksum);
1319 if (!strcmp(what, "deltainfo"))
1321 repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOSITORY_DELTAINFO);
1322 repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_FLEXARRAY);
1324 if (!strcmp(what, "filelists"))
1326 repodata_add_idarray(data, handle, REPOSITORY_KEYS, SOLVABLE_FILELIST);
1327 repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_DIRSTRARRAY);
1329 repodata_add_flexarray(data, SOLVID_META, REPOSITORY_EXTERNAL, handle);
1334 repomd_load_ext(Repo *repo, Repodata *data)
1336 const char *filename, *repomdtype;
1339 struct repoinfo *cinfo;
1340 const unsigned char *filechksum;
1344 cinfo = repo->appdata;
1345 repomdtype = repodata_lookup_str(data, SOLVID_META, REPOSITORY_REPOMD_TYPE);
1348 if (!strcmp(repomdtype, "filelists"))
1350 else if (!strcmp(repomdtype, "deltainfo"))
1355 printf("[%s:%s", repo->name, ext);
1357 if (usecachedrepo(repo, ext, cinfo->extcookie, 0))
1359 printf(" cached]\n");fflush(stdout);
1362 printf(" fetching]\n"); fflush(stdout);
1363 filename = repodata_lookup_str(data, SOLVID_META, REPOSITORY_REPOMD_LOCATION);
1365 filechksum = repodata_lookup_bin_checksum(data, SOLVID_META, REPOSITORY_REPOMD_CHECKSUM, &filechksumtype);
1366 if ((fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 0)) == 0)
1368 if (!strcmp(ext, "FL"))
1369 r = repo_add_rpmmd(repo, fp, ext, REPO_USE_LOADING|REPO_EXTEND_SOLVABLES);
1370 else if (!strcmp(ext, "DL"))
1371 r = repo_add_deltainfoxml(repo, fp, REPO_USE_LOADING);
1375 printf("%s\n", pool_errstr(repo->pool));
1378 writecachedrepo(repo, data, ext, cinfo->extcookie);
1385 #ifdef ENABLE_SUSEREPO
1386 /* susetags helpers */
1388 static inline const char *
1389 susetags_find(Repo *repo, const char *what, const unsigned char **chksump, Id *chksumtypep)
1391 Pool *pool = repo->pool;
1393 const char *filename;
1398 dataiterator_init(&di, pool, repo, SOLVID_META, SUSETAGS_FILE_NAME, what, SEARCH_STRING);
1399 dataiterator_prepend_keyname(&di, SUSETAGS_FILE);
1400 if (dataiterator_step(&di))
1402 dataiterator_setpos_parent(&di);
1403 *chksump = pool_lookup_bin_checksum(pool, SOLVID_POS, SUSETAGS_FILE_CHECKSUM, chksumtypep);
1406 dataiterator_free(&di);
1407 if (filename && !*chksumtypep)
1409 printf("no %s file checksum!\n", what);
1415 static Id susetags_langtags[] = {
1416 SOLVABLE_SUMMARY, REPOKEY_TYPE_STR,
1417 SOLVABLE_DESCRIPTION, REPOKEY_TYPE_STR,
1418 SOLVABLE_EULA, REPOKEY_TYPE_STR,
1419 SOLVABLE_MESSAGEINS, REPOKEY_TYPE_STR,
1420 SOLVABLE_MESSAGEDEL, REPOKEY_TYPE_STR,
1421 SOLVABLE_CATEGORY, REPOKEY_TYPE_ID,
1426 susetags_add_ext(Repo *repo, Repodata *data)
1428 Pool *pool = repo->pool;
1431 Id handle, filechksumtype;
1432 const unsigned char *filechksum;
1435 dataiterator_init(&di, pool, repo, SOLVID_META, SUSETAGS_FILE_NAME, 0, 0);
1436 dataiterator_prepend_keyname(&di, SUSETAGS_FILE);
1437 while (dataiterator_step(&di))
1439 if (strncmp(di.kv.str, "packages.", 9) != 0)
1441 if (!strcmp(di.kv.str + 9, "gz"))
1443 if (!di.kv.str[9] || !di.kv.str[10] || (di.kv.str[11] && di.kv.str[11] != '.'))
1445 ext[0] = di.kv.str[9];
1446 ext[1] = di.kv.str[10];
1448 if (!strcmp(ext, "en"))
1450 if (!susetags_find(repo, di.kv.str, &filechksum, &filechksumtype))
1452 handle = repodata_new_handle(data);
1453 repodata_set_str(data, handle, SUSETAGS_FILE_NAME, di.kv.str);
1455 repodata_set_bin_checksum(data, handle, SUSETAGS_FILE_CHECKSUM, filechksumtype, filechksum);
1456 if (!strcmp(ext, "DU"))
1458 repodata_add_idarray(data, handle, REPOSITORY_KEYS, SOLVABLE_DISKUSAGE);
1459 repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_DIRNUMNUMARRAY);
1461 else if (!strcmp(ext, "FL"))
1463 repodata_add_idarray(data, handle, REPOSITORY_KEYS, SOLVABLE_FILELIST);
1464 repodata_add_idarray(data, handle, REPOSITORY_KEYS, REPOKEY_TYPE_DIRSTRARRAY);
1468 for (i = 0; susetags_langtags[i]; i += 2)
1470 repodata_add_idarray(data, handle, REPOSITORY_KEYS, pool_id2langid(pool, susetags_langtags[i], ext, 1));
1471 repodata_add_idarray(data, handle, REPOSITORY_KEYS, susetags_langtags[i + 1]);
1474 repodata_add_flexarray(data, SOLVID_META, REPOSITORY_EXTERNAL, handle);
1476 dataiterator_free(&di);
1480 susetags_load_ext(Repo *repo, Repodata *data)
1482 const char *filename, *descrdir;
1486 struct repoinfo *cinfo;
1487 const unsigned char *filechksum;
1490 cinfo = repo->appdata;
1491 filename = repodata_lookup_str(data, SOLVID_META, SUSETAGS_FILE_NAME);
1495 ext[0] = filename[9];
1496 ext[1] = filename[10];
1499 printf("[%s:%s", repo->name, ext);
1501 if (usecachedrepo(repo, ext, cinfo->extcookie, 0))
1503 printf(" cached]\n"); fflush(stdout);
1507 printf(" fetching]\n"); fflush(stdout);
1509 defvendor = repo_lookup_id(repo, SOLVID_META, SUSETAGS_DEFAULTVENDOR);
1510 descrdir = repo_lookup_str(repo, SOLVID_META, SUSETAGS_DESCRDIR);
1512 descrdir = "suse/setup/descr";
1514 filechksum = repodata_lookup_bin_checksum(data, SOLVID_META, SUSETAGS_FILE_CHECKSUM, &filechksumtype);
1515 if ((fp = curlfopen(cinfo, pool_tmpjoin(repo->pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 0)) == 0)
1517 if (repo_add_susetags(repo, fp, defvendor, ext, REPO_USE_LOADING|REPO_EXTEND_SOLVABLES))
1520 printf("%s\n", pool_errstr(repo->pool));
1524 writecachedrepo(repo, data, ext, cinfo->extcookie);
1534 load_stub(Pool *pool, Repodata *data, void *dp)
1536 struct repoinfo *cinfo = data->repo->appdata;
1537 switch (cinfo->type)
1539 #ifdef ENABLE_SUSEREPO
1541 return susetags_load_ext(data->repo, data);
1545 return repomd_load_ext(data->repo, data);
1552 static unsigned char installedcookie[32];
1554 #ifdef ENABLE_DEBIAN
1557 debian_find_component(struct repoinfo *cinfo, FILE *fp, char *comp, const unsigned char **chksump, Id *chksumtypep)
1561 unsigned char *chksum;
1566 static char *basearch;
1578 basearch = strdup(un.machine);
1579 if (basearch[0] == 'i' && basearch[1] && !strcmp(basearch + 2, "86"))
1582 binarydir = solv_dupjoin("binary-", basearch, "/");
1583 lbinarydir = strlen(binarydir);
1584 compl = strlen(comp);
1588 chksum = solv_malloc(32);
1590 while(fgets(buf, sizeof(buf), fp))
1595 while (l && (buf[l - 1] == '\n' || buf[l - 1] == ' ' || buf[l - 1] == '\t'))
1597 if (!strncasecmp(buf, "MD5Sum:", 7))
1599 curchksumtype = REPOKEY_TYPE_MD5;
1602 if (!strncasecmp(buf, "SHA1:", 5))
1604 curchksumtype = REPOKEY_TYPE_SHA1;
1607 if (!strncasecmp(buf, "SHA256:", 7))
1609 curchksumtype = REPOKEY_TYPE_SHA256;
1621 while (*bp && *bp != ' ' && *bp != '\t')
1626 while (*bp == ' ' || *bp == '\t')
1628 while (*bp && *bp != ' ' && *bp != '\t')
1632 while (*bp == ' ' || *bp == '\t')
1635 if (strncmp(fn, comp, compl) != 0 || fn[compl] != '/')
1638 if (strncmp(bp, binarydir, lbinarydir))
1641 if (!strcmp(bp, "Packages") || !strcmp(bp, "Packages.gz"))
1643 unsigned char curchksum[32];
1645 if (filename && !strcmp(bp, "Packages"))
1647 curl = solv_chksum_len(curchksumtype);
1648 if (!curl || (chksumtype && solv_chksum_len(chksumtype) > curl))
1650 if (solv_hex2bin((const char **)&ch, curchksum, sizeof(curchksum)) != curl)
1652 solv_free(filename);
1653 filename = strdup(fn);
1654 chksumtype = curchksumtype;
1655 memcpy(chksum, curchksum, curl);
1661 fn = solv_dupjoin("/", filename, 0);
1662 solv_free(filename);
1663 filename = solv_dupjoin("dists/", cinfo->name, fn);
1667 chksum = solv_free(chksum);
1669 *chksumtypep = chksumtype;
1675 read_repos(Pool *pool, struct repoinfo *repoinfos, int nrepoinfos)
1678 struct repoinfo *cinfo;
1681 const char *filename;
1682 const unsigned char *filechksum;
1684 #ifdef ENABLE_SUSEREPO
1685 const char *descrdir;
1690 #if defined(ENABLE_SUSEREPO) || defined(ENABLE_RPMMD)
1694 #if defined(ENABLE_DEBIAN)
1699 repo = repo_create(pool, "@System");
1700 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
1701 printf("rpm database:");
1702 if (stat(pool_prepend_rootdir_tmp(pool, "/var/lib/rpm/Packages"), &stb))
1703 memset(&stb, 0, sizeof(&stb));
1705 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
1706 printf("dpgk database:");
1707 if (stat(pool_prepend_rootdir_tmp(pool, "/var/lib/dpkg/status"), &stb))
1708 memset(&stb, 0, sizeof(&stb));
1711 printf("no installed database:");
1712 memset(&stb, 0, sizeof(&stb));
1714 calc_checksum_stat(&stb, REPOKEY_TYPE_SHA256, 0, installedcookie);
1715 if (usecachedrepo(repo, 0, installedcookie, 0))
1716 printf(" cached\n");
1719 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
1723 printf(" reading\n");
1725 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
1726 # if defined(ENABLE_SUSEREPO) && defined(PRODUCTS_PATH)
1727 if (repo_add_products(repo, PRODUCTS_PATH, REPO_NO_INTERNALIZE | REPO_USE_ROOTDIR))
1729 fprintf(stderr, "product reading failed: %s\n", pool_errstr(pool));
1733 if ((ofp = fopen(calccachepath(repo, 0), "r")) != 0)
1735 ref = repo_create(pool, "@System.old");
1736 if (repo_add_solv(ref, ofp, 0))
1743 if (repo_add_rpmdb(repo, ref, REPO_REUSE_REPODATA | REPO_USE_ROOTDIR))
1745 fprintf(stderr, "installed db: %s\n", pool_errstr(pool));
1751 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
1752 if (repo_add_debdb(repo, REPO_REUSE_REPODATA | REPO_USE_ROOTDIR))
1754 fprintf(stderr, "installed db: %s\n", pool_errstr(pool));
1758 writecachedrepo(repo, 0, 0, installedcookie);
1760 pool_set_installed(pool, repo);
1762 for (i = 0; i < nrepoinfos; i++)
1764 cinfo = repoinfos + i;
1765 if (!cinfo->enabled)
1768 repo = repo_create(pool, cinfo->alias);
1770 repo->appdata = cinfo;
1771 repo->priority = 99 - cinfo->priority;
1773 dorefresh = cinfo->autorefresh;
1774 if (dorefresh && cinfo->metadata_expire && stat(calccachepath(repo, 0), &stb) == 0)
1776 if (cinfo->metadata_expire == -1 || time(0) - stb.st_mtime < cinfo->metadata_expire)
1779 if (!dorefresh && usecachedrepo(repo, 0, 0, 0))
1781 printf("repo '%s':", cinfo->alias);
1782 printf(" cached\n");
1785 switch (cinfo->type)
1789 printf("rpmmd repo '%s':", cinfo->alias);
1791 if ((fp = curlfopen(cinfo, "repodata/repomd.xml", 0, 0, 0, 0)) == 0)
1793 printf(" no repomd.xml file, skipped\n");
1798 calc_checksum_fp(fp, REPOKEY_TYPE_SHA256, cinfo->cookie);
1799 if (usecachedrepo(repo, 0, cinfo->cookie, 1))
1801 printf(" cached\n");
1805 if (cinfo->repo_gpgcheck && !downloadchecksig(cinfo, fp, "repodata/repomd.xml.asc", &sigpool))
1810 if (repo_add_repomdxml(repo, fp, 0))
1812 printf("repomd.xml: %s\n", pool_errstr(pool));
1814 break; /* hopeless */
1817 printf(" fetching\n");
1818 filename = repomd_find(repo, "primary", &filechksum, &filechksumtype);
1819 if (filename && (fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1821 if (repo_add_rpmmd(repo, fp, 0, 0))
1823 printf("primary: %s\n", pool_errstr(pool));
1824 cinfo->incomplete = 1;
1828 if (cinfo->incomplete)
1829 break; /* hopeless */
1831 filename = repomd_find(repo, "updateinfo", &filechksum, &filechksumtype);
1832 if (filename && (fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1834 if (repo_add_updateinfoxml(repo, fp, 0))
1836 printf("updateinfo: %s\n", pool_errstr(pool));
1837 cinfo->incomplete = 1;
1842 data = repo_add_repodata(repo, 0);
1843 if (!repomd_add_ext(repo, data, "deltainfo"))
1844 repomd_add_ext(repo, data, "prestodelta");
1845 repomd_add_ext(repo, data, "filelists");
1846 repodata_internalize(data);
1847 if (!cinfo->incomplete)
1848 writecachedrepo(repo, 0, 0, cinfo->cookie);
1849 repodata_create_stubs(repo_last_repodata(repo));
1853 #ifdef ENABLE_SUSEREPO
1855 printf("susetags repo '%s':", cinfo->alias);
1859 if ((fp = curlfopen(cinfo, "content", 0, 0, 0, 0)) == 0)
1861 printf(" no content file, skipped\n");
1866 calc_checksum_fp(fp, REPOKEY_TYPE_SHA256, cinfo->cookie);
1867 if (usecachedrepo(repo, 0, cinfo->cookie, 1))
1869 printf(" cached\n");
1873 if (cinfo->repo_gpgcheck && !downloadchecksig(cinfo, fp, "content.asc", &sigpool))
1878 if (repo_add_content(repo, fp, 0))
1880 printf("content: %s\n", pool_errstr(pool));
1882 break; /* hopeless */
1885 defvendor = repo_lookup_id(repo, SOLVID_META, SUSETAGS_DEFAULTVENDOR);
1886 descrdir = repo_lookup_str(repo, SOLVID_META, SUSETAGS_DESCRDIR);
1888 descrdir = "suse/setup/descr";
1889 filename = susetags_find(repo, "packages.gz", &filechksum, &filechksumtype);
1891 filename = susetags_find(repo, "packages", &filechksum, &filechksumtype);
1894 printf(" no packages file entry, skipped\n");
1897 printf(" fetching\n");
1898 if ((fp = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) == 0)
1899 break; /* hopeless */
1900 if (repo_add_susetags(repo, fp, defvendor, 0, REPO_NO_INTERNALIZE|SUSETAGS_RECORD_SHARES))
1902 printf("packages: %s\n", pool_errstr(pool));
1904 cinfo->incomplete = 1;
1905 break; /* hopeless */
1908 /* add default language */
1909 filename = susetags_find(repo, "packages.en.gz", &filechksum, &filechksumtype);
1911 filename = susetags_find(repo, "packages.en", &filechksum, &filechksumtype);
1914 if ((fp = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1916 if (repo_add_susetags(repo, fp, defvendor, 0, REPO_NO_INTERNALIZE|REPO_REUSE_REPODATA|REPO_EXTEND_SOLVABLES))
1918 printf("packages.en: %s\n", pool_errstr(pool));
1919 cinfo->incomplete = 1;
1924 filename = susetags_find(repo, "patterns", &filechksum, &filechksumtype);
1927 if ((fp = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1930 while (fgets(pbuf, sizeof(pbuf), fp))
1932 int l = strlen(pbuf);
1934 if (l && pbuf[l - 1] == '\n')
1936 if (!*pbuf || *pbuf == '.' || strchr(pbuf, '/') != 0)
1938 filename = susetags_find(repo, pbuf, &filechksum, &filechksumtype);
1939 if (filename && (fp2 = curlfopen(cinfo, pool_tmpjoin(pool, descrdir, "/", filename), iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
1941 if (repo_add_susetags(repo, fp2, defvendor, 0, REPO_NO_INTERNALIZE))
1943 printf("%s: %s\n", pbuf, pool_errstr(pool));
1944 cinfo->incomplete = 1;
1952 repo_internalize(repo);
1953 data = repo_add_repodata(repo, 0);
1954 susetags_add_ext(repo, data);
1955 repodata_internalize(data);
1956 if (!cinfo->incomplete)
1957 writecachedrepo(repo, 0, 0, cinfo->cookie);
1958 repodata_create_stubs(repo_last_repodata(repo));
1962 #if defined(ENABLE_DEBIAN)
1964 printf("debian repo '%s':", cinfo->alias);
1966 filename = solv_dupjoin("dists/", cinfo->name, "/Release");
1967 if ((fpr = curlfopen(cinfo, filename, 0, 0, 0, 0)) == 0)
1969 printf(" no Release file, skipped\n");
1972 free((char *)filename);
1975 solv_free((char *)filename);
1976 if (cinfo->repo_gpgcheck)
1978 filename = solv_dupjoin("dists/", cinfo->name, "/Release.gpg");
1979 if (!downloadchecksig(cinfo, fpr, filename, &sigpool))
1982 solv_free((char *)filename);
1985 solv_free((char *)filename);
1987 calc_checksum_fp(fpr, REPOKEY_TYPE_SHA256, cinfo->cookie);
1988 if (usecachedrepo(repo, 0, cinfo->cookie, 1))
1990 printf(" cached\n");
1994 printf(" fetching\n");
1995 for (j = 0; j < cinfo->ncomponents; j++)
1997 if (!(filename = debian_find_component(cinfo, fpr, cinfo->components[j], &filechksum, &filechksumtype)))
1999 printf("[component %s not found]\n", cinfo->components[j]);
2002 if ((fp = curlfopen(cinfo, filename, iscompressed(filename), filechksum, filechksumtype, 1)) != 0)
2004 if (repo_add_debpackages(repo, fp, 0))
2006 printf("component %s: %s\n", cinfo->components[j], pool_errstr(pool));
2007 cinfo->incomplete = 1;
2011 solv_free((char *)filechksum);
2012 solv_free((char *)filename);
2015 if (!cinfo->incomplete)
2016 writecachedrepo(repo, 0, 0, cinfo->cookie);
2021 printf("unsupported repo '%s': skipped\n", cinfo->alias);
2032 yesno(const char *str)
2034 char inbuf[128], *ip;
2041 if (!(ip = fgets(inbuf, sizeof(inbuf), stdin)))
2046 while (*ip == ' ' || *ip == '\t')
2053 if (*ip == 'y' || *ip == 'n')
2054 return *ip == 'y' ? 1 : 0;
2058 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2068 fileconflict_cb(Pool *pool, Id p, void *cbdata)
2070 struct fcstate *fcstate = cbdata;
2078 rpm_byrpmdbid(0, 0, &fcstate->rpmdbstate);
2081 s = pool_id2solvable(pool, p);
2082 if (pool->installed && s->repo == pool->installed)
2084 if (!s->repo->rpmdbid)
2086 rpmdbid = s->repo->rpmdbid[p - s->repo->start];
2089 return rpm_byrpmdbid(rpmdbid, 0, &fcstate->rpmdbstate);
2091 for (i = 0; i < fcstate->newpkgscnt; i++)
2092 if (fcstate->checkq->elements[i] == p)
2094 if (i == fcstate->newpkgscnt)
2096 fp = fcstate->newpkgsfps[i];
2100 return rpm_byfp(fp, pool_solvable2str(pool, s), &fcstate->rpmdbstate);
2105 runrpm(const char *arg, const char *name, int dupfd3, const char *rootdir)
2110 if ((pid = fork()) == (pid_t)-1)
2119 if (dupfd3 != -1 && dupfd3 != 3)
2125 fcntl(3, F_SETFD, 0); /* clear CLOEXEC */
2126 if (strcmp(arg, "-e") == 0)
2127 execlp("rpm", "rpm", arg, "--nodeps", "--nodigest", "--nosignature", "--root", rootdir, name, (char *)0);
2129 execlp("rpm", "rpm", arg, "--force", "--nodeps", "--nodigest", "--nosignature", "--root", rootdir, name, (char *)0);
2133 while (waitpid(pid, &status, 0) != pid)
2137 printf("rpm failed\n");
2144 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
2147 rundpkg(const char *arg, const char *name, int dupfd3, const char *rootdir)
2152 if ((pid = fork()) == (pid_t)-1)
2161 if (dupfd3 != -1 && dupfd3 != 3)
2167 fcntl(3, F_SETFD, 0); /* clear CLOEXEC */
2168 if (strcmp(arg, "--install") == 0)
2169 execlp("dpkg", "dpkg", "--install", "--root", rootdir, "--force", "all", name, (char *)0);
2171 execlp("dpkg", "dpkg", "--remove", "--root", rootdir, "--force", "all", name, (char *)0);
2175 while (waitpid(pid, &status, 0) != pid)
2179 printf("dpkg failed\n");
2187 nscallback(Pool *pool, void *data, Id name, Id evr)
2189 if (name == NAMESPACE_PRODUCTBUDDY)
2191 /* SUSE specific hack: each product has an associated rpm */
2192 Solvable *s = pool->solvables + evr;
2196 cap = pool_str2id(pool, pool_tmpjoin(pool, "product(", pool_id2str(pool, s->name) + 8, ")"), 0);
2199 cap = pool_rel2id(pool, cap, s->evr, REL_EQ, 0);
2202 FOR_PROVIDES(p, pp, cap)
2204 Solvable *ps = pool->solvables + p;
2205 if (ps->repo == s->repo && ps->arch == s->arch)
2206 if (!bestp || pool_evrcmp(pool, pool->solvables[bestp].evr, ps->evr, EVRCMP_COMPARE) < 0)
2214 #ifdef SOFTLOCKS_PATH
2217 addsoftlocks(Pool *pool, Queue *job)
2221 char *bp, *ep, buf[4096];
2223 if ((fp = fopen(SOFTLOCKS_PATH, "r")) == 0)
2225 while((bp = fgets(buf, sizeof(buf), fp)) != 0)
2227 while (*bp == ' ' || *bp == '\t')
2229 if (!*bp || *bp == '#')
2231 for (ep = bp; *ep; ep++)
2232 if (*ep == ' ' || *ep == '\t' || *ep == '\n')
2235 type = SOLVER_SOLVABLE_NAME;
2236 if (!strncmp(bp, "provides:", 9) && bp[9])
2238 type = SOLVER_SOLVABLE_PROVIDES;
2241 id = pool_str2id(pool, bp, 1);
2242 if (pool->installed)
2244 FOR_JOB_SELECT(p, pp, type, id)
2245 if (pool->solvables[p].repo == pool->installed)
2248 continue; /* ignore, as it is already installed */
2250 queue_push2(job, SOLVER_LOCK|SOLVER_WEAK|type, id);
2259 rewrite_repos(Pool *pool, Queue *addedfileprovides, Queue *addedfileprovides_inst)
2264 Queue fileprovidesq;
2266 struct repoinfo *cinfo;
2268 map_init(&providedids, pool->ss.nstrings);
2269 queue_init(&fileprovidesq);
2270 for (i = 0; i < addedfileprovides->count; i++)
2271 MAPSET(&providedids, addedfileprovides->elements[i]);
2274 /* make sure all repodatas but the first are extensions */
2275 if (repo->nrepodata < 2)
2277 cinfo = repo->appdata;
2278 if (cinfo && cinfo->incomplete)
2280 data = repo_id2repodata(repo, 1);
2281 if (data->loadcallback)
2283 for (j = 2; j < repo->nrepodata; j++)
2285 Repodata *edata = repo_id2repodata(repo, j);
2286 if (!edata->loadcallback)
2289 if (j < repo->nrepodata)
2290 continue; /* found a non-externsion repodata, can't rewrite */
2291 if (repodata_lookup_idarray(data, SOLVID_META, REPOSITORY_ADDEDFILEPROVIDES, &fileprovidesq))
2293 if (repo == pool->installed && addedfileprovides_inst)
2295 for (j = 0; j < addedfileprovides->count; j++)
2296 MAPCLR(&providedids, addedfileprovides->elements[j]);
2297 for (j = 0; j < addedfileprovides_inst->count; j++)
2298 MAPSET(&providedids, addedfileprovides_inst->elements[j]);
2301 for (j = 0; j < fileprovidesq.count; j++)
2302 if (MAPTST(&providedids, fileprovidesq.elements[j]))
2304 if (repo == pool->installed && addedfileprovides_inst)
2306 for (j = 0; j < addedfileprovides_inst->count; j++)
2307 MAPCLR(&providedids, addedfileprovides_inst->elements[j]);
2308 for (j = 0; j < addedfileprovides->count; j++)
2309 MAPSET(&providedids, addedfileprovides->elements[j]);
2310 if (n == addedfileprovides_inst->count)
2311 continue; /* nothing new added */
2313 else if (n == addedfileprovides->count)
2314 continue; /* nothing new added */
2316 repodata_set_idarray(data, SOLVID_META, REPOSITORY_ADDEDFILEPROVIDES, repo == pool->installed && addedfileprovides_inst ? addedfileprovides_inst : addedfileprovides);
2317 repodata_internalize(data);
2318 writecachedrepo(repo, data, 0, cinfo ? cinfo->cookie : installedcookie);
2320 queue_free(&fileprovidesq);
2321 map_free(&providedids);
2325 select_patches(Pool *pool, Queue *job)
2329 Map installedmap, noobsmap;
2332 map_init(&noobsmap, 0);
2333 map_init(&installedmap, pool->nsolvables);
2334 solver_calculate_noobsmap(pool, job, &noobsmap);
2335 if (pool->installed)
2336 FOR_REPO_SOLVABLES(pool->installed, p, s)
2337 MAPSET(&installedmap, p);
2339 /* install all patches */
2340 for (p = 1; p < pool->nsolvables; p++)
2346 s = pool->solvables + p;
2347 if (strncmp(pool_id2str(pool, s->name), "patch:", 6) != 0)
2349 FOR_PROVIDES(p2, pp, s->name)
2351 Solvable *s2 = pool->solvables + p2;
2352 if (s2->name != s->name)
2354 r = pool_evrcmp(pool, s->evr, s2->evr, EVRCMP_COMPARE);
2355 if (r < 0 || (r == 0 && p > p2))
2360 type = solvable_lookup_str(s, SOLVABLE_PATCHCATEGORY);
2361 if (type && !strcmp(type, "optional"))
2363 r = solvable_trivial_installable_map(s, &installedmap, 0, &noobsmap);
2366 if (solvable_lookup_bool(s, UPDATE_RESTART) && r == 0)
2373 queue_push2(job, SOLVER_SOLVABLE, p);
2375 map_free(&installedmap);
2376 map_free(&noobsmap);
2380 #define MODE_INSTALL 1
2381 #define MODE_ERASE 2
2382 #define MODE_UPDATE 3
2383 #define MODE_DISTUPGRADE 4
2384 #define MODE_VERIFY 5
2385 #define MODE_PATCH 6
2387 #define MODE_REPOLIST 8
2388 #define MODE_SEARCH 9
2393 fprintf(stderr, "Usage: solv COMMAND <select>\n");
2394 fprintf(stderr, "\n");
2395 fprintf(stderr, " dist-upgrade: replace installed packages with\n");
2396 fprintf(stderr, " versions from the repositories\n");
2397 fprintf(stderr, " erase: erase installed packages\n");
2398 fprintf(stderr, " info: display package information\n");
2399 fprintf(stderr, " install: install packages\n");
2400 fprintf(stderr, " list: list packages\n");
2401 fprintf(stderr, " repos: list enabled repositories\n");
2402 fprintf(stderr, " search: search name/summary/description\n");
2403 fprintf(stderr, " update: update installed packages\n");
2404 fprintf(stderr, " verify: check dependencies of installed packages\n");
2405 fprintf(stderr, "\n");
2410 main(int argc, char **argv)
2413 Repo *commandlinerepo = 0;
2414 Id *commandlinepkgs = 0;
2416 struct repoinfo *repoinfos;
2418 int mainmode = 0, mode = 0;
2423 char inbuf[128], *ip;
2425 Queue addedfileprovides;
2426 Queue addedfileprovides_inst;
2436 if (!strcmp(argv[0], "install") || !strcmp(argv[0], "in"))
2438 mainmode = MODE_INSTALL;
2439 mode = SOLVER_INSTALL;
2441 else if (!strcmp(argv[0], "patch"))
2443 mainmode = MODE_PATCH;
2444 mode = SOLVER_INSTALL;
2446 else if (!strcmp(argv[0], "erase") || !strcmp(argv[0], "rm"))
2448 mainmode = MODE_ERASE;
2449 mode = SOLVER_ERASE;
2451 else if (!strcmp(argv[0], "list"))
2453 mainmode = MODE_LIST;
2456 else if (!strcmp(argv[0], "info"))
2458 mainmode = MODE_INFO;
2461 else if (!strcmp(argv[0], "search"))
2463 mainmode = MODE_SEARCH;
2466 else if (!strcmp(argv[0], "verify"))
2468 mainmode = MODE_VERIFY;
2469 mode = SOLVER_VERIFY;
2471 else if (!strcmp(argv[0], "update") || !strcmp(argv[0], "up"))
2473 mainmode = MODE_UPDATE;
2474 mode = SOLVER_UPDATE;
2476 else if (!strcmp(argv[0], "dist-upgrade") || !strcmp(argv[0], "dup"))
2478 mainmode = MODE_DISTUPGRADE;
2479 mode = SOLVER_DISTUPGRADE;
2481 else if (!strcmp(argv[0], "repos") || !strcmp(argv[0], "repolist") || !strcmp(argv[0], "lr"))
2483 mainmode = MODE_REPOLIST;
2491 if (argc > 2 && !strcmp(argv[1], "--root"))
2498 else if (argc > 1 && !strcmp(argv[1], "--clean"))
2504 else if (argc > 1 && !strcmp(argv[1], "--best"))
2514 pool = pool_create();
2515 pool_set_rootdir(pool, rootdir);
2519 const char *langs[] = {"de_DE", "de", "en"};
2520 pool_set_languages(pool, langs, sizeof(langs)/sizeof(*langs));
2524 pool_setloadcallback(pool, load_stub, 0);
2525 pool->nscallback = nscallback;
2526 // pool_setdebuglevel(pool, 2);
2528 repoinfos = read_repoinfos(pool, &nrepoinfos);
2530 if (mainmode == MODE_REPOLIST)
2533 for (i = 0; i < nrepoinfos; i++)
2535 struct repoinfo *cinfo = repoinfos + i;
2536 if (!cinfo->enabled)
2538 printf("%d: %-20s %s (prio %d)\n", j++, cinfo->alias, cinfo->name, cinfo->priority);
2543 read_repos(pool, repoinfos, nrepoinfos);
2545 queue_init(&repofilter);
2546 while (argc > 2 && !strcmp(argv[1], "-r"))
2548 const char *rname = argv[2], *rp;
2550 for (rp = rname; *rp; rp++)
2551 if (*rp <= '0' || *rp >= '9')
2555 /* repo specified by number */
2556 int rnum = atoi(rname);
2557 for (i = 0; i < nrepoinfos; i++)
2559 struct repoinfo *cinfo = repoinfos + i;
2560 if (!cinfo->enabled)
2563 repoid = cinfo->repo->repoid;
2568 /* repo specified by alias */
2572 if (!strcasecmp(rname, repo->name))
2573 repoid = repo->repoid;
2578 fprintf(stderr, "%s: no such repo\n", rname);
2581 /* SETVENDOR is actually wrong but useful */
2582 queue_push2(&repofilter, SOLVER_SOLVABLE_REPO | SOLVER_SETREPO | SOLVER_SETVENDOR, repoid);
2586 if (mainmode == MODE_SEARCH)
2592 map_init(&m, pool->nsolvables);
2593 dataiterator_init(&di, pool, 0, 0, 0, argv[1], SEARCH_SUBSTRING|SEARCH_NOCASE);
2594 dataiterator_set_keyname(&di, SOLVABLE_NAME);
2595 dataiterator_set_search(&di, 0, 0);
2596 while (dataiterator_step(&di))
2597 MAPSET(&m, di.solvid);
2598 dataiterator_set_keyname(&di, SOLVABLE_SUMMARY);
2599 dataiterator_set_search(&di, 0, 0);
2600 while (dataiterator_step(&di))
2601 MAPSET(&m, di.solvid);
2602 dataiterator_set_keyname(&di, SOLVABLE_DESCRIPTION);
2603 dataiterator_set_search(&di, 0, 0);
2604 while (dataiterator_step(&di))
2605 MAPSET(&m, di.solvid);
2606 dataiterator_free(&di);
2608 for (p = 1; p < pool->nsolvables; p++)
2610 Solvable *s = pool_id2solvable(pool, p);
2613 printf(" - %s: %s\n", pool_solvable2str(pool, s), solvable_lookup_str(s, SOLVABLE_SUMMARY));
2620 if (mainmode == MODE_LIST || mainmode == MODE_INSTALL)
2622 for (i = 1; i < argc; i++)
2625 l = strlen(argv[i]);
2626 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2627 if (l <= 4 || strcmp(argv[i] + l - 4, ".rpm"))
2630 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
2631 if (l <= 4 || strcmp(argv[i] + l - 4, ".deb"))
2634 if (access(argv[i], R_OK))
2639 if (!commandlinepkgs)
2640 commandlinepkgs = solv_calloc(argc, sizeof(Id));
2641 if (!commandlinerepo)
2642 commandlinerepo = repo_create(pool, "@commandline");
2644 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2645 p = repo_add_rpm(commandlinerepo, (const char *)argv[i], REPO_REUSE_REPODATA|REPO_NO_INTERNALIZE);
2647 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
2648 p = repo_add_deb(commandlinerepo, (const char *)argv[i], REPO_REUSE_REPODATA|REPO_NO_INTERNALIZE);
2652 fprintf(stderr, "could not add '%s'\n", argv[i]);
2655 commandlinepkgs[i] = p;
2657 if (commandlinerepo)
2658 repo_internalize(commandlinerepo);
2661 // FOR_REPOS(i, repo)
2662 // printf("%s: %d solvables\n", repo->name, repo->nsolvables);
2663 queue_init(&addedfileprovides);
2664 queue_init(&addedfileprovides_inst);
2665 pool_addfileprovides_queue(pool, &addedfileprovides, &addedfileprovides_inst);
2666 if (addedfileprovides.count || addedfileprovides_inst.count)
2667 rewrite_repos(pool, &addedfileprovides, &addedfileprovides_inst);
2668 queue_free(&addedfileprovides);
2669 queue_free(&addedfileprovides_inst);
2670 pool_createwhatprovides(pool);
2673 for (i = 1; i < argc; i++)
2676 int j, flags, rflags;
2678 if (commandlinepkgs && commandlinepkgs[i])
2680 queue_push2(&job, SOLVER_SOLVABLE, commandlinepkgs[i]);
2684 flags = SELECTION_NAME|SELECTION_PROVIDES|SELECTION_GLOB;
2685 if (mode == MODE_LIST)
2686 flags |= SELECTION_WITH_SOURCE;
2687 if (argv[i][0] == '/')
2688 flags |= SELECTION_FILELIST | (mode == MODE_ERASE ? SELECTION_INSTALLED_ONLY : 0);
2689 rflags = selection_make(pool, &job2, argv[i], flags);
2690 if (repofilter.count)
2691 selection_limit(pool, &job2, &repofilter);
2694 flags |= SELECTION_NOCASE;
2695 rflags = selection_make(pool, &job2, argv[i], flags);
2696 if (repofilter.count)
2697 selection_limit(pool, &job2, &repofilter);
2699 printf("[ignoring case for '%s']\n", argv[i]);
2703 fprintf(stderr, "nothing matches '%s'\n", argv[i]);
2706 if (rflags & SELECTION_FILELIST)
2707 printf("[using file list match for '%s']\n", argv[i]);
2708 if (rflags & SELECTION_PROVIDES)
2709 printf("[using capability match for '%s']\n", argv[i]);
2710 for (j = 0; j < job2.count; j++)
2711 queue_push(&job, job2.elements[j]);
2715 if (!job.count && (mainmode == MODE_UPDATE || mainmode == MODE_DISTUPGRADE || mainmode == MODE_VERIFY || repofilter.count))
2717 queue_push2(&job, SOLVER_SOLVABLE_ALL, 0);
2718 if (repofilter.count)
2719 selection_limit(pool, &job, &repofilter);
2721 queue_free(&repofilter);
2723 if (!job.count && MODE_PATCH)
2725 printf("no package matched\n");
2729 if (mainmode == MODE_LIST || mainmode == MODE_INFO)
2731 /* list mode, no solver needed */
2734 for (i = 0; i < job.count; i += 2)
2738 pool_job2solvables(pool, &q, job.elements[i], job.elements[i + 1]);
2739 for (j = 0; j < q.count; j++)
2741 Solvable *s = pool_id2solvable(pool, q.elements[j]);
2742 if (mainmode == MODE_INFO)
2745 printf("Name: %s\n", pool_solvable2str(pool, s));
2746 printf("Repo: %s\n", s->repo->name);
2747 printf("Summary: %s\n", solvable_lookup_str(s, SOLVABLE_SUMMARY));
2748 str = solvable_lookup_str(s, SOLVABLE_URL);
2750 printf("Url: %s\n", str);
2751 str = solvable_lookup_str(s, SOLVABLE_LICENSE);
2753 printf("License: %s\n", str);
2754 printf("Description:\n%s\n", solvable_lookup_str(s, SOLVABLE_DESCRIPTION));
2760 const char *sum = solvable_lookup_str_lang(s, SOLVABLE_SUMMARY, "de", 1);
2762 const char *sum = solvable_lookup_str_poollang(s, SOLVABLE_SUMMARY);
2764 printf(" - %s [%s]\n", pool_solvable2str(pool, s), s->repo->name);
2766 printf(" %s\n", sum);
2773 free_repoinfos(repoinfos, nrepoinfos);
2774 solv_free(commandlinepkgs);
2776 yum_substitute(pool, 0);
2781 if (mainmode == MODE_PATCH)
2782 select_patches(pool, &job);
2785 for (i = 0; i < job.count; i += 2)
2787 job.elements[i] |= mode;
2788 if (mode == SOLVER_UPDATE && pool_isemptyupdatejob(pool, job.elements[i], job.elements[i + 1]))
2789 job.elements[i] ^= SOLVER_UPDATE ^ SOLVER_INSTALL;
2791 job.elements[i] |= SOLVER_CLEANDEPS;
2793 job.elements[i] |= SOLVER_FORCEBEST;
2796 // multiversion test
2797 // queue_push2(&job, SOLVER_NOOBSOLETES|SOLVER_SOLVABLE_NAME, pool_str2id(pool, "kernel-pae", 1));
2798 // queue_push2(&job, SOLVER_NOOBSOLETES|SOLVER_SOLVABLE_NAME, pool_str2id(pool, "kernel-pae-base", 1));
2799 // queue_push2(&job, SOLVER_NOOBSOLETES|SOLVER_SOLVABLE_NAME, pool_str2id(pool, "kernel-pae-extra", 1));
2801 #ifdef SOFTLOCKS_PATH
2802 addsoftlocks(pool, &job);
2805 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
2810 Id problem, solution;
2813 solv = solver_create(pool);
2814 solver_set_flag(solv, SOLVER_FLAG_SPLITPROVIDES, 1);
2815 if (mainmode == MODE_ERASE)
2816 solver_set_flag(solv, SOLVER_FLAG_ALLOW_UNINSTALL, 1); /* don't nag */
2817 solver_set_flag(solv, SOLVER_FLAG_BEST_OBEY_POLICY, 1);
2819 if (!solver_solve(solv, &job))
2821 pcnt = solver_problem_count(solv);
2822 printf("Found %d problems:\n", pcnt);
2823 for (problem = 1; problem <= pcnt; problem++)
2826 printf("Problem %d:\n", problem);
2827 solver_printprobleminfo(solv, problem);
2829 scnt = solver_solution_count(solv, problem);
2830 for (solution = 1; solution <= scnt; solution++)
2832 printf("Solution %d:\n", solution);
2833 solver_printsolution(solv, problem, solution);
2838 printf("Please choose a solution: ");
2841 if (!(ip = fgets(inbuf, sizeof(inbuf), stdin)))
2846 while (*ip == ' ' || *ip == '\t')
2848 if (*ip >= '0' && *ip <= '9')
2851 if (take >= 1 && take <= scnt)
2867 solver_take_solution(solv, problem, take, &job);
2873 trans = solver_create_transaction(solv);
2874 if (!trans->steps.count)
2876 printf("Nothing to do.\n");
2877 transaction_free(trans);
2881 free_repoinfos(repoinfos, nrepoinfos);
2882 solv_free(commandlinepkgs);
2884 yum_substitute(pool, 0);
2889 printf("Transaction summary:\n\n");
2890 transaction_print(trans);
2899 duc[1].path = "/usr/share/man";
2900 duc[2].path = "/sbin";
2901 duc[3].path = "/etc";
2902 transaction_calc_duchanges(trans, duc, 4);
2903 for (i = 0; i < 4; i++)
2904 printf("duchanges %s: %d K %d inodes\n", duc[i].path, duc[i].kbytes, duc[i].files);
2907 printf("install size change: %d K\n", transaction_calc_installsizechange(trans));
2910 if (!yesno("OK to continue (y/n)? "))
2913 transaction_free(trans);
2917 free_repoinfos(repoinfos, nrepoinfos);
2918 solv_free(commandlinepkgs);
2920 yum_substitute(pool, 0);
2925 queue_init(&checkq);
2926 newpkgs = transaction_installedresult(trans, &checkq);
2931 int downloadsize = 0;
2932 for (i = 0; i < newpkgs; i++)
2936 p = checkq.elements[i];
2937 s = pool_id2solvable(pool, p);
2938 downloadsize += solvable_lookup_sizek(s, SOLVABLE_DOWNLOADSIZE, 0);
2940 printf("Downloading %d packages, %d K\n", newpkgs, downloadsize);
2941 newpkgsfps = solv_calloc(newpkgs, sizeof(*newpkgsfps));
2942 for (i = 0; i < newpkgs; i++)
2944 unsigned int medianr;
2947 struct repoinfo *cinfo;
2948 const unsigned char *chksum;
2952 p = checkq.elements[i];
2953 s = pool_id2solvable(pool, p);
2954 if (s->repo == commandlinerepo)
2956 loc = solvable_lookup_location(s, &medianr);
2957 if (!(newpkgsfps[i] = fopen(loc, "r")))
2965 cinfo = s->repo->appdata;
2968 printf("%s: no repository information\n", s->repo->name);
2971 loc = solvable_lookup_location(s, &medianr);
2975 if (pool->installed && pool->installed->nsolvables)
2977 /* try a delta first */
2978 char *matchname = strdup(pool_id2str(pool, s->name));
2979 dataiterator_init(&di, pool, s->repo, SOLVID_META, DELTA_PACKAGE_NAME, matchname, SEARCH_STRING);
2980 dataiterator_prepend_keyname(&di, REPOSITORY_DELTAINFO);
2981 while (dataiterator_step(&di))
2985 dataiterator_setpos_parent(&di);
2986 if (pool_lookup_id(pool, SOLVID_POS, DELTA_PACKAGE_EVR) != s->evr ||
2987 pool_lookup_id(pool, SOLVID_POS, DELTA_PACKAGE_ARCH) != s->arch)
2989 baseevr = pool_lookup_id(pool, SOLVID_POS, DELTA_BASE_EVR);
2990 FOR_PROVIDES(op, pp, s->name)
2992 Solvable *os = pool->solvables + op;
2993 if (os->repo == pool->installed && os->name == s->name && os->arch == s->arch && os->evr == baseevr)
2996 if (op && access("/usr/bin/applydeltarpm", X_OK) == 0)
2998 /* base is installed, run sequence check */
2999 const char *seqname;
3004 const char *archstr;
3009 archstr = pool_id2str(pool, s->arch);
3010 if (strlen(archstr) > 10 || strchr(archstr, '\'') != 0)
3013 seqname = pool_lookup_str(pool, SOLVID_POS, DELTA_SEQ_NAME);
3014 seqevr = pool_lookup_str(pool, SOLVID_POS, DELTA_SEQ_EVR);
3015 seqnum = pool_lookup_str(pool, SOLVID_POS, DELTA_SEQ_NUM);
3016 seq = pool_tmpjoin(pool, seqname, "-", seqevr);
3017 seq = pool_tmpappend(pool, seq, "-", seqnum);
3018 if (strchr(seq, '\'') != 0)
3021 sprintf(cmd, "/usr/bin/applydeltarpm -a '%s' -c -s '", archstr);
3023 sprintf(cmd, "/usr/bin/applydeltarpm -c -s '");
3025 if (system(pool_tmpjoin(pool, cmd, seq, "'")) != 0)
3026 continue; /* didn't match */
3027 /* looks good, download delta */
3029 chksum = pool_lookup_bin_checksum(pool, SOLVID_POS, DELTA_CHECKSUM, &chksumtype);
3031 continue; /* no way! */
3032 dloc = pool_lookup_deltalocation(pool, SOLVID_POS, 0);
3035 if (cinfo->type == TYPE_SUSETAGS)
3037 const char *datadir = repo_lookup_str(cinfo->repo, SOLVID_META, SUSETAGS_DATADIR);
3038 dloc = pool_tmpjoin(pool, datadir ? datadir : "suse", "/", dloc);
3040 if ((fp = curlfopen(cinfo, dloc, 0, chksum, chksumtype, 0)) == 0)
3042 /* got it, now reconstruct */
3043 newfd = opentmpfile();
3045 sprintf(cmd, "applydeltarpm -a '%s' /dev/fd/%d /dev/fd/%d", archstr, fileno(fp), newfd);
3047 sprintf(cmd, "applydeltarpm /dev/fd/%d /dev/fd/%d", fileno(fp), newfd);
3049 fcntl(fileno(fp), F_SETFD, 0);
3056 lseek(newfd, 0, SEEK_SET);
3058 chksum = solvable_lookup_bin_checksum(s, SOLVABLE_CHECKSUM, &chksumtype);
3059 if (chksumtype && !verify_checksum(newfd, loc, chksum, chksumtype))
3065 newpkgsfps[i] = fdopen(newfd, "r");
3070 dataiterator_free(&di);
3071 solv_free(matchname);
3078 continue; /* delta worked! */
3080 if (cinfo->type == TYPE_SUSETAGS)
3082 const char *datadir = repo_lookup_str(cinfo->repo, SOLVID_META, SUSETAGS_DATADIR);
3083 loc = pool_tmpjoin(pool, datadir ? datadir : "suse", "/", loc);
3086 chksum = solvable_lookup_bin_checksum(s, SOLVABLE_CHECKSUM, &chksumtype);
3087 if ((newpkgsfps[i] = curlfopen(cinfo, loc, 0, chksum, chksumtype, 0)) == 0)
3089 printf("\n%s: %s not found in repository\n", s->repo->name, loc);
3098 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3102 struct fcstate fcstate;
3104 printf("Searching for file conflicts\n");
3105 queue_init(&conflicts);
3106 fcstate.rpmdbstate = 0;
3107 fcstate.newpkgscnt = newpkgs;
3108 fcstate.checkq = &checkq;
3109 fcstate.newpkgsfps = newpkgsfps;
3110 pool_findfileconflicts(pool, &checkq, newpkgs, &conflicts, &fileconflict_cb, &fcstate);
3111 if (conflicts.count)
3114 for (i = 0; i < conflicts.count; i += 5)
3115 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]));
3117 if (yesno("Re-run solver (y/n/q)? "))
3119 for (i = 0; i < newpkgs; i++)
3121 fclose(newpkgsfps[i]);
3122 newpkgsfps = solv_free(newpkgsfps);
3124 pool_add_fileconflicts_deps(pool, &conflicts);
3125 pool_createwhatprovides(pool); /* Hmm... */
3129 queue_free(&conflicts);
3133 printf("Committing transaction:\n\n");
3134 transaction_order(trans, 0);
3135 for (i = 0; i < trans->steps.count; i++)
3137 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3138 const char *evr, *evrp, *nvra;
3144 p = trans->steps.elements[i];
3145 s = pool_id2solvable(pool, p);
3146 Id type = transaction_type(trans, p, SOLVER_TRANSACTION_RPM_ONLY);
3149 case SOLVER_TRANSACTION_ERASE:
3150 printf("erase %s\n", pool_solvid2str(pool, p));
3151 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3152 if (!s->repo->rpmdbid || !s->repo->rpmdbid[p - s->repo->start])
3154 /* strip epoch from evr */
3155 evr = evrp = pool_id2str(pool, s->evr);
3156 while (*evrp >= '0' && *evrp <= '9')
3158 if (evrp > evr && evrp[0] == ':' && evrp[1])
3160 nvra = pool_tmpjoin(pool, pool_id2str(pool, s->name), "-", evr);
3161 nvra = pool_tmpappend(pool, nvra, ".", pool_id2str(pool, s->arch));
3162 runrpm("-e", nvra, -1, rootdir); /* too bad that --querybynumber doesn't work */
3164 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
3165 rundpkg("--remove", pool_id2str(pool, s->name), 0, rootdir);
3168 case SOLVER_TRANSACTION_INSTALL:
3169 case SOLVER_TRANSACTION_MULTIINSTALL:
3170 printf("install %s\n", pool_solvid2str(pool, p));
3171 for (j = 0; j < newpkgs; j++)
3172 if (checkq.elements[j] == p)
3174 fp = j < newpkgs ? newpkgsfps[j] : 0;
3178 lseek(fileno(fp), 0, SEEK_SET);
3179 #if defined(ENABLE_RPMDB) && (defined(SUSE) || defined(FEDORA))
3180 runrpm(type == SOLVER_TRANSACTION_MULTIINSTALL ? "-i" : "-U", "/dev/fd/3", fileno(fp), rootdir);
3182 #if defined(ENABLE_DEBIAN) && defined(DEBIAN)
3183 rundpkg("--install", "/dev/fd/3", fileno(fp), rootdir);
3193 for (i = 0; i < newpkgs; i++)
3195 fclose(newpkgsfps[i]);
3196 solv_free(newpkgsfps);
3197 queue_free(&checkq);
3198 transaction_free(trans);
3202 free_repoinfos(repoinfos, nrepoinfos);
3203 solv_free(commandlinepkgs);
3205 yum_substitute(pool, 0);