1 #define _POSIX_C_SOURCE 200809L
17 /* needed for S_IFMT and AT_FDCWD */
26 struct zpm *log; /* logging db will be attached as "log" */
30 int errabort, errors, verbose, dryrun, conflicts;
31 int setuser, setgroup;
32 int reverse, exitonerror;
33 int overwrite, accept, acceptdir, ignoredirmd;
34 int ops_total, ops_completed;
35 int ops_remove, ops_remove_completed;
36 int ops_update, ops_update_completed;
37 int ops_install, ops_install_completed;
38 int progress; /* type of progress meter */
51 char *pkglist; /* space separated */
55 int configuration, oldwasconf;
56 struct timespec times[2];
60 printf("usage: zpm $scriptname [-fncC] args ...\n");
63 static void pdots(int len, int ch, int was, int now, int total) {
64 was = len * was / total;
68 now = len * now / total;
75 static int seterror(struct config *conf, char *msgfmt, ...) {
82 vsnprintf(msg, sizeof msg, msgfmt, ap);
86 if (conf->log->errmsg) {
87 free(conf->log->errmsg);
90 conf->log->errmsg = strdup(msg);
93 fprintf(stderr, "%s\n", msg);
96 return conf->errabort;
99 static int setsyserr(struct config *conf, char *msgfmt, ...) {
106 va_start(ap, msgfmt);
107 printed = vsnprintf(msg, sizeof msg, msgfmt, ap);
111 /* nothing we can really do */
112 return conf->errabort;
115 if ((size_t)printed < sizeof msg) {
116 snprintf(msg+printed, sizeof msg - printed, ": %s",
121 if (conf->log->errmsg) {
122 free(conf->log->errmsg);
125 conf->log->errmsg = strdup(msg);
128 fprintf(stderr, "%s\n", msg);
131 return conf->errabort;
134 static int exists(char *path, mode_t *mode) {
137 if (lstat(path, &st) == -1) {
140 if (mode) *mode = st.st_mode;
144 /* TODO maintain a list of already created directories */
145 static int create_leading_dirs(char *path) {
148 char pcopy[ZPM_PATH_MAX];
153 delim = strrchr(pcopy, '/');
154 if (!delim) return 1; /* not an error, but no leading dirs */
156 /* cut off last component */
165 delim = strchr(s, '/');
171 /* try to create the directory, if it exists
172 * and is a directory or a symlink, that's ok
173 * should be (eventually) a symlink to a directory
174 * so we want stat here, not lstat
176 if (mkdir(pcopy, 0755) == -1) {
179 if (stat(pcopy, &st) == -1) {
183 switch (st.st_mode & S_IFMT) {
203 static char *column(char *col, int ncols, char **vals, char **cols) {
207 for (i=0; i < ncols; i++) {
208 // fprintf(stderr, "checking '%s' = '%s'\n", cols[i], vals[i]);
210 if (!strcmp(col, cols[i])) {
218 #define COL(x) column(x, ncols, vals, cols)
219 #define SYSERR(x) do { conf->log->error = 2; return conf->errabort; } while (0)
222 static char *ops[] = { "new", "remove", "update", 0 };
230 static int getop(char *opstr) {
233 if (!opstr) return 0;
234 for (i=0;ops[i];i++) {
235 if (!strcmp(opstr, ops[i])) {
242 static int report_conflicts(void *f, int ncols, char **vals, char **cols) {
243 struct config *conf = f;
244 char *path, *hash, *pkg, *conflict_type, *mds;
248 conflict_type = COL("conflict");
249 if (!strcmp(conflict_type, "hash")) {
251 fprintf(stderr, "hash conflict: package %s path %s hash %.8s\n",
254 if (!strcmp(conflict_type, "md")) {
256 fprintf(stderr, "md conflict: package %s path %s md %s\n",
259 fprintf(stderr, "%s conflict: package %s path %s\n",
260 conflict_type, pkg, path);
267 static int read_item(struct config *conf, int ncols, char **vals, char **cols,
273 struct nitem zero = { 0 };
279 seterror(conf, "can't determine op");
285 seterror(conf, "can't determine op");
289 n->path = COL("path");
291 seterror(conf, "no file path");
294 if (strlen(n->path) == 0) {
295 seterror(conf, "zero length path not allowed");
299 /* TODO config to dishonor setuid/setgid */
300 n->dest = COL("dest");
302 seterror(conf, "no file dest");
306 if (strlen(n->dest) == 0) {
307 seterror(conf, "zero length dest not allowed");
314 seterror(conf, "can't determine mode");
318 n->mode = strtoul(val, NULL, 8);
320 val = COL("configuration");
322 seterror(conf, "can't determine config status");
325 lval = strtol(val, NULL, 10);
327 n->configuration = ((lval & 1) != 0);
328 n->oldwasconf = ((lval & 2) != 0);
330 val = COL("filetype");
331 if (!val || strlen(val) == 0) {
332 seterror(conf, "can't determine file type");
337 /* these can be null */
338 n->ohash = COL("ohash");
340 n->omds = COL("omds");
341 n->pkglist = COL("pkglist");
343 if (n->ftype == 'r') {
344 n->hash = COL("hash");
346 seterror(conf, "can't get hash");
349 } else if (n->ftype == 'l') {
350 n->target = COL("target");
352 seterror(conf, "can't get target");
355 if (strlen(n->target) == 0) {
356 seterror(conf, "zero length target not allowed");
363 val = COL("username");
365 seterror(conf, "no username");
370 seterror(conf, "no passwd entry");
378 if (conf->setgroup) {
379 val = COL("groupname");
381 seterror(conf, "no groupname");
386 seterror(conf, "no group entry for %s", val);
395 double mtime = strtod(COL("mtime"),NULL);
397 mtime = (double)time(NULL);
400 n->mtime = (time_t)mtime;
402 n->times[0].tv_sec = 0;
403 n->times[0].tv_nsec = UTIME_OMIT;
404 n->times[1].tv_sec = (time_t)llrint(floor(mtime));
405 n->times[1].tv_nsec = lrint(floor(fmod(mtime,1.0)*1000000000));
410 /* file does not exist */
411 #define D_NOEXIST 0x1
412 /* files are different types */
414 /* metadata is different */
416 /* content or link target is different */
418 /* file to be installed is a directory */
420 /* path on disk is a directory */
421 #define D_EISDIR 0x20
422 /* usernames different */
424 /* group names different */
426 /* file mode is different */
428 /* mtimes are different */
429 #define D_MTIME 0x200
430 /* the hash of the file we are supposedly replacing is different than
431 * the the hash of the file on disk
433 #define D_OHASH 0x400
434 /* an error occurred trying to compare the file (other than it doesn't exist */
435 #define D_ERROR 0x1000
436 /* there was a stat error */
437 #define D_STATERROR 0x2000
438 /* there was an error calling readlink */
439 #define D_RLERROR 0x4000
441 /* 1 = file doesn't exist, 2 = file is a directory, target isn't */
442 /* 4 == ftype different */
443 /* 8 = hash different when both are regular files */
444 static unsigned int file_compare(struct nitem *n, struct stat *st) {
445 int etype = 0, stat_type;
446 char ehash[ZPM_HASH_STRLEN+1];
447 unsigned int diff = 0;
452 case 'd': etype = S_IFDIR; diff |= D_ISDIR ; break;
453 case 'r': etype = S_IFREG; break;
454 case 'l': etype = S_IFLNK; break;
455 default: etype = 0; break;
459 /* new file, so check type, hash, etc */
460 if (lstat(n->dest, st) == 0) {
461 stat_type = st->st_mode & S_IFMT;
462 if (stat_type != etype) {
465 if (stat_type == S_IFDIR) {
469 if (n->hash && etype == S_IFREG && stat_type == S_IFREG) {
470 zpm_hash(n->dest, ehash, 0);
471 if (strcmp(n->hash, ehash) != 0) {
474 if (n->ohash && strcmp(n->ohash, ehash) != 0) {
478 if (n->hash && etype == S_IFLNK && stat_type == S_IFLNK) {
479 lsize = readlink(n->dest, link, sizeof link);
481 if (lsize == -1 || lsize == sizeof link) {
486 if (strcmp(n->target, link) != 0) {
491 if (n->uid != st->st_uid) {
495 if (n->gid != st->st_gid) {
499 if (n->mode != (st->st_mode & 07777)) {
505 case ENOENT: diff |= D_NOEXIST; break;
506 default: diff |= (D_STATERROR|D_ERROR); break;
514 /* 0 = not acceptable
515 * 1 = accept and create/update/remove
517 * 3 = remove and overwrite
518 * 4 = update metadata
520 static int acceptable(struct config *conf, unsigned int diffs, int op) {
521 int exist = (!(diffs & D_NOEXIST));
522 int sametype = (!(diffs & D_TYPE));
523 int mdsame = (!(diffs & D_MD));
524 int hashsame = (!(diffs & D_HASH));
525 int isdir = (diffs & D_ISDIR);
528 return op == OP_REMOVE ? 2 : 1;
531 if (op == OP_UPDATE) {
532 return sametype ? 4 : 3;
535 if (op == OP_REMOVE) {
539 /* the hard cases, should be installing new, but already exists */
542 return conf->overwrite ? 3 : 0;
545 if (mdsame && (conf->accept || conf->overwrite)) {
550 if (mdsame || conf->ignoredirmd) {
551 return conf->acceptdir ? 2 : 0;
553 if (conf->overwrite) {
558 if (hashsame && (conf->accept || conf->overwrite)) {
562 return conf->overwrite ? 3 : 0;
565 static int check_existing(void *f, int ncols, char **vals, char **cols) {
566 struct config *conf = f;
570 if (!read_item(conf, ncols, vals, cols, &nitem)) {
571 fprintf(stderr, "can't read item\n");
572 return conf->errabort;
575 if (conf->verbose > 1) {
576 fprintf(stderr, "check for existing %s\n", nitem.path);
579 if (lstat(nitem.path, &st) == -1) {
581 /* not an error, file shouldn't exist*/
584 fprintf(stderr, "unable to check %s: %s\n",
585 nitem.path, strerror(errno));
592 unsigned int diffs = file_compare(&nitem, &st);
593 if (diffs >= D_ERROR) {
594 return seterror(conf, "can't check %s", nitem.dest);
597 int action = acceptable(conf, diffs, nitem.op);
600 fprintf(stderr, "%s exists and is not acceptable\n", nitem.path);
602 fprintf(stderr, "%s exists\n", nitem.path);
610 static int remove_files(void *f, int ncols, char **vals, char **cols) {
611 struct config *conf = f;
617 if (!dest) return seterror(conf,"no file dest");
620 char *ftype = COL("filetype");
624 case 'd': printf("rmdir %s\n", dest); break;
625 default: printf("unlink %s\n", dest); break;
633 if (lstat(dest, &st) == -1) {
636 /* TODO chatter if verbose */
639 return seterror(conf, "can't stat %s: %s", dest, strerror(errno));
644 if (S_ISDIR(st.st_mode)) {
645 flags = AT_REMOVEDIR;
647 /* TODO check that expected filetype matches actual filetype */
650 if (conf->progress == 2) {
651 fprintf(stderr, "%s(%s)\n", flags ? "rmdir" : "unlink", dest);
652 } else if (conf->progress == 1) {
654 pdots(50, '.', conf->ops_completed, conf->ops_completed + 1, conf->ops_total);
655 conf->ops_completed++;
656 conf->ops_completed++;
658 pdots(50, '.', conf->ops_completed, conf->ops_completed + 1, conf->ops_total);
659 conf->ops_completed++;
665 if (unlinkat(AT_FDCWD, dest, flags) == -1) {
670 return seterror(conf, "can't unlink %s: %s", dest, strerror(errno));
677 #define MARK fprintf(stderr, "%s %d: mark\n", __func__, __LINE__)
680 static int remove_dir(struct config *conf, char *path) {
685 setsyserr(conf, "can't rmdir %s", path);
691 static int remove_existing(struct config *conf, char *path) {
696 setsyserr(conf, "can't unlink %s", path);
702 static int set_md(struct config *conf, struct nitem *item) {
707 if (item->ftype != 'l') {
708 printf("chmod %o %s\n", item->mode, item->dest);
710 if (conf->setuser && conf->setgroup) {
711 printf("lchown %d:%d %s\n", item->uid, item->gid,
714 printf("mtime %.0f %s\n", (double)item->mtime, item->dest);
719 /* can't chmod a symlink */
720 if (item->ftype != 'l') {
721 rv = chmod(item->dest, item->mode);
724 setsyserr(conf, "can't chmod %o %s", item->mode, item->dest);
725 return conf->errabort;
729 if (conf->setuser && conf->setgroup) {
730 rv = lchown(item->dest, item->uid, item->gid);
732 setsyserr(conf, "can't lchown %s", item->dest);
733 return conf->errabort;
737 rv = utimensat(AT_FDCWD, item->dest, item->times, AT_SYMLINK_NOFOLLOW);
739 setsyserr(conf, "can't set mtime %.0f %s", (double)item->mtime,
741 return conf->errabort;
746 /* install a file or create a directory or symlink. path should not exist
749 /* flags: 1 = set md, 2 = create leading dirs, 4 = unlink existing file,
750 * 8 = rmdir existing dir, 16 = return true/false
754 #define INS_UNLINK 0x4
755 #define INS_RMDIR 0x8
757 #define INS_ZPMNEW 0x20
758 static int install(struct config *conf, struct nitem *item, unsigned int flags) {
762 int mkleading = (flags & 2);
763 int setmd = (flags & 1);
764 int unlink_file = (flags & 4);
765 int rm_dir = (flags & 8);
766 int failure = conf->errabort;
776 printf("unlink %s\n", item->dest);
778 printf("rmdir %s\n", item->dest);
781 printf("install %c%o %d:%d %s", item->ftype,
782 item->mode, item->uid, item->gid,
784 if (item->ftype == 'l') {
785 printf(" -> %s", item->target);
792 source = conf->src ? conf->src : conf->log;
795 rv = remove_existing(conf, item->dest);
797 rv = remove_dir(conf, item->dest);
805 rv = create_leading_dirs(item->dest);
807 setsyserr(conf, "can't create leading dirs for %s", item->dest);
812 if (item->ftype == 'r') {
813 rv = zpm_extract(source, item->hash, item->dest, item->mode);
815 seterror(conf, "can't extract %s", item->dest);
821 switch (item->ftype) {
822 case 'd': rv = mkdir(item->dest, item->mode);
824 case 'l': rv = symlink(item->target, item->dest);
831 setsyserr(conf, "installing %s failed", item->dest);
836 return set_md(conf, item) == 0 ? success : failure;
843 * figure out what the difference is for a config file, only called
844 * for an update of a configuration file
845 * return -1 on an error
846 * return 1 if the new file should not be installed
847 * return 0 if the new file should be installed
849 static int adjust_for_config(struct config *conf, struct nitem *n, unsigned int
852 if (!n->oldwasconf) {
856 /* TODO what if old was a directory? */
857 if (!n->configuration) {
858 /* replacing conf with non-conf */
859 /* absorb file, mark todo */
860 char hash[ZPM_HASH_STRLEN+1];
863 fprintf(stderr, "importing old conf file\n");
865 if (zpm_import(conf->log, n->dest, 0, hash)) {
866 zpm_note_add(conf->log, n->pkglist, n->dest, hash,
867 "replaced config file with non-config. zpm-cat %.8s", hash);
869 fprintf(stderr, "unable to import existing config file %s\n", n->dest);
873 fprintf(stderr, "dry-run: would replace config file %s with non-config file\n", n->dest);
878 int sametype = (!(diffs & D_TYPE));
879 int isdir = (diffs & D_ISDIR);
880 int eisdir = (diffs & D_EISDIR);
882 /* both old and new are config files */
883 if (isdir && sametype) {
884 /* both config directories, can only be changing
885 * metadata, so no adjustment needed
888 fprintf(stderr, "both config dirs, ok to update\n");
894 char hash[ZPM_HASH_STRLEN+1];
896 /* replacing old file with new directory */
897 /* absorb, make note */
899 if (zpm_import(conf->log, n->dest, 0, hash)) {
900 zpm_note_add(conf->log, n->pkglist, n->dest, hash,
901 "replaced config file with config directory. zpm-cat %.8s", hash);
903 fprintf(stderr, "unable to import existing config file %s\n", n->dest);
907 fprintf(stderr, "dry-run: would replace config file %s with config directory\n", n->dest);
913 /* replacing old conf directory with a conf file.
914 * nothing needs to be done, if the directory
915 * is empty, it's ok to remove. if it's not empty,
916 * the install will fail
921 /* replacing old file with new file */
922 /* new is same as on disk */
923 if (!(diffs & D_HASH)) {
925 fprintf(stderr, "new config file is already on disk, probably shouldn't happen\n");
930 /* new is different than on disk, but on disk is same as old */
931 if (!(diffs & D_OHASH)) {
933 fprintf(stderr, "old config file not changed from default, replacing with new default\n");
935 /* ok to do the update, since same as default */
936 fprintf(stderr, "updating default config %s\n", n->dest);
940 /* new is different than on disk, and disk different than old */
943 fprintf(stderr, "new default config file is different than on disk, and old default was changed, should keep on-disk config\n");
946 zpm_note_add(conf->log, n->pkglist, n->dest, n->hash,
947 "default config file update. zpm-cat %.8s", n->hash);
948 /* TODO check for note error */
950 fprintf(stderr, "dry-run: default config file %s update\n",
957 static int install_files(void *f, int ncols, char **vals, char **cols) {
958 struct config *conf = f;
960 struct stat existing;
963 /* TODO put the result row in a hash table. May not actually
966 if (!read_item(conf, ncols, vals, cols, &nitem)) {
967 fprintf(stderr, "can't read item\n");
968 return conf->errabort;
973 used = sqlite3_memory_used()/1024/1024;
974 high = sqlite3_memory_highwater(0)/1024/1024;
975 fprintf(stderr, "memory = %ld MB / %ld MB\n", used, high);
977 if (conf->verbose && !conf->dryrun) {
978 if (conf->progress == 2) {
979 fprintf(stderr, "%s '%c' %s\n", nitem.opstr, nitem.ftype,
981 } else if (conf->progress == 1) {
983 pdots(50, '.', conf->ops_completed, conf->ops_completed + 1, conf->ops_total);
984 conf->ops_completed++;
985 conf->ops_completed++;
987 pdots(50, '.', conf->ops_completed, conf->ops_completed + 1, conf->ops_total);
988 conf->ops_completed++;
992 unsigned int diffs = file_compare(&nitem, &existing);
993 if (diffs >= D_ERROR) {
994 return seterror(conf, "can't check %s", nitem.dest);
998 * exist & same type & md same & hash same: do nothing, but warn bug
999 * exist & same type & md diff & hash same: fix md
1000 * exist & same type & md same & hash diff: replace
1001 * exist & same type & md diff & hash diff: replace & fix
1002 * no exist: install and warn
1003 * dir & not dir : remove, mkdir
1004 * not dir & not dir & diff type: remove, install
1005 * not dir & dir : remove dir if empty, error if not empty, install
1008 * no exist: create leading dirs, install
1010 * exist & same type & md same & hash same & accept or over: do nothing
1011 * exist & same & md diff or hash diff & overwrite : update
1012 * exist & same & md diff or hash diff & accept : error, can't accept
1013 * exist & same & md diff or hash diff & not accept : error
1015 * exist & different type & not overwrite : error
1016 * not dir & not dir & overwrite : remove and install
1017 * not dir & dir & overwrite: remove empty or error, install
1018 * dir & dir & overwrite: fix md
1019 * dir & not dir & overwrite: remove and mkdir
1021 int exist = (!(diffs & D_NOEXIST));
1022 int sametype = (!(diffs & D_TYPE));
1023 int mdsame = (!(diffs & D_MD));
1024 int hashsame = (!(diffs & D_HASH));
1025 int isdir = (diffs & D_ISDIR);
1026 int eisdir = (diffs & D_EISDIR);
1027 int accept = conf->accept;
1028 int overwrite = conf->overwrite;
1029 int installing = (nitem.op == OP_NEW);
1030 update = (nitem.op == OP_UPDATE);
1034 /* warn, it should exist */
1035 fprintf(stderr, "%s missing, installing", nitem.dest);
1036 return install(conf, &nitem, 3);
1039 switch (adjust_for_config(conf, &nitem, diffs)) {
1040 case -1: return conf->errabort; break;
1042 fprintf(stderr, "skipping changed default config file: %s\n", nitem.dest);
1047 /* file exists in filesystem */
1049 if (mdsame && hashsame) {
1050 /* warn, bug in logic. This shouldn't occur,
1051 * because if there is nothing to do, it
1052 * shouldn't be listed as an update
1054 /* could be an update. We're checking against
1055 * what's actually on disk, not what was
1056 * expected to have been on disk. So, if
1057 * the admin has modified the file, or if
1058 * it had been installed ignoring the user
1059 * and group, it might be correct on disk
1060 * but not as in the local database
1062 /* TODO detect whether this a logic bug or
1063 * an on-disk difference
1066 fprintf(stderr, "%s should not be an update\n", nitem.dest);
1067 fprintf(stderr, "old hash: %s\n", nitem.ohash);
1068 fprintf(stderr, "new hash: %s\n", nitem.hash);
1069 fprintf(stderr, "old mds: %s\n", nitem.omds);
1070 fprintf(stderr, "new mds: %s\n", nitem.mds);
1075 if (!mdsame && hashsame) {
1077 return set_md(conf, &nitem);
1079 if (mdsame && !hashsame) {
1081 return install(conf, &nitem, 3);
1083 if (!mdsame && !hashsame) {
1085 return install(conf, &nitem, 3);
1089 /* file exists, and is not the same type */
1091 if (isdir && !eisdir) {
1092 /* remove existing */
1094 return install(conf, &nitem, 7);
1096 if (!isdir && eisdir) {
1097 /* remove dir, or error */
1099 return install(conf, &nitem, 11);
1101 if (!isdir && !isdir) {
1102 /* necessarily !sametype, sametype handled above */
1103 /* remove existing */
1105 return install(conf, &nitem, 7);
1107 /* error, should not be possible, assert(0)? */
1108 fprintf(stderr,"impossible state: %s:%d\n", __func__, __LINE__);
1113 return install(conf, &nitem, 3);
1116 /* file exists in filesystem */
1118 if (mdsame && hashsame && (accept || overwrite)) {
1120 if (conf->dryrun || conf->verbose) {
1121 fprintf(stderr, "accept %s: %s\n",
1122 eisdir ? "directory" : "file", nitem.dest);
1127 if (mdsame && isdir && conf->acceptdir) {
1131 if (!mdsame && isdir && conf->ignoredirmd) {
1132 /* TODO warn ignoring dir md */
1136 if (mdsame && hashsame && !(accept || overwrite)) {
1138 return seterror(conf, "file exists: %s", nitem.dest);
1141 if (mdsame && !hashsame && overwrite) {
1143 return install(conf, &nitem, eisdir ? 11 : 7);
1146 if (nitem.configuration && accept) {
1147 /* accept a changed config file */
1148 if (conf->dryrun || conf->verbose) {
1149 fprintf(stderr, "accept %smodified config %s: %s\n", (!mdsame || !hashsame) ? "" : "un",
1150 eisdir ? "directory" : "file", nitem.dest);
1155 if (mdsame && !hashsame && !overwrite) {
1156 /* accept doesn't matter, since it's
1157 * not an acceptable file */
1159 if (nitem.ftype == 'l') {
1162 lsize = readlink(nitem.dest, link, sizeof link);
1163 if (lsize == -1 || (size_t)lsize >= sizeof link) {
1164 return seterror(conf, "%s (linkdiff): expecting %s -> %s, unable to read link", accept ? "existing file not acceptable" : "file exists", nitem.dest, nitem.target, link);
1167 /* links must be different */
1168 return seterror(conf, "%s (linkdiff): expecting %s -> %s, have -> %s", accept ? "existing file not acceptable" : "file exists", nitem.dest, nitem.target, link);
1171 return seterror(conf, "%s (hashdiff): %s", accept ? "existing file not acceptable" : "file exists", nitem.dest);
1174 if (!mdsame && hashsame && overwrite) {
1176 return set_md(conf, &nitem);
1178 if (!mdsame && hashsame && !overwrite) {
1179 /* accept doesn't matter, since it's
1180 * not an acceptable file */
1182 return seterror(conf, "%s (mddiff): %s", accept ? "existing file not acceptable" : "file exists", nitem.dest);
1184 if (!mdsame && !hashsame && overwrite) {
1186 return install(conf, &nitem, eisdir ? 11 : 7);
1188 if (!mdsame && !hashsame && !overwrite) {
1189 /* accept doesn't matter, since it's
1190 * not an acceptable file */
1192 return seterror(conf, "%s (md+hash): %s", accept ? "existing file not acceptable" : "file exists", nitem.dest);
1194 /* TODO error, should be impossible */
1195 return seterror(conf, "impossible state reached");
1198 /* file exists, and is not the same type */
1201 return seterror(conf, "%s (difftype): %s", accept ? "existing file not acceptable" : "file exists", nitem.dest);
1204 /* not the same type, but ok to overwrite */
1206 /* remove existing */
1207 return install(conf, &nitem, 7);
1210 /* existing path is a directory */
1213 /* impossible, if isdir and eisdir, would
1217 return set_md(conf, &nitem);
1219 /* remove empty dir or error */
1221 return install(conf, &nitem, 11);
1223 /* if we get here, we missed a case */
1225 return seterror(conf, "impossible state 2 reached");
1228 /* TODO extra verbose print perms, mtime, etc, probably ls -l
1231 if (conf->verbose) {
1232 printf("%s\n", nitem.path);
1238 static void check_conflicts(struct config *conf, char *conflict_type,
1239 int (callback)(void *, int, char **, char **)) {
1245 s = sqlite3_str_new(conf->log->db);
1246 sqlite3_str_appendall(s, "select *, ");
1247 if (conf->rootdir) {
1248 sqlite3_str_appendf(s, "printf('%%s/%%s',rtrim(%Q,'/'),ltrim(path,'/'))", conf->rootdir);
1250 sqlite3_str_appendf(s, "printf('/%%s', trim(path, '/'))");
1252 sqlite3_str_appendall(s, " as dest from syncconflicts");
1254 if (conflict_type) {
1255 sqlite3_str_appendf(s," where conflict = %Q", conflict_type);
1257 if (conf->reverse) {
1258 sqlite3_str_appendall(s," order by length(path) desc, path desc,pkgid collate vercmp desc, conflict desc");
1260 sqlite3_str_appendall(s," order by length(path), path, pkgid collate vercmp, conflict");
1264 sql = sqlite3_str_value(s);
1266 rv = zpm_exec(conf->log, sql, callback, conf, &errmsg);
1268 sqlite3_str_finish(s);
1271 fprintf(stderr, "exec fail: %s\n", sqlite3_errstr(rv));
1273 fprintf(stderr, "database error: %s\n", errmsg);
1276 if (conf->log->error == 1) {
1277 fprintf(stderr, "unable to allocate memory\n");
1279 fprintf(stderr, "zpm_exec failure: %s\n",
1280 conf->log->errmsg ? conf->log->errmsg : "unknown");
1283 if (conf->log->errmsg) {
1284 fprintf(stderr, "error: %s\n", conf->log->errmsg);
1286 if (conf->errors && conf->exitonerror) {
1287 zpm_close(conf->log);
1288 zpm_close(conf->src);
1291 /* TODO final report function in conf var */
1294 static void runstage(struct config *conf, char *stage,
1295 int (callback)(void *, int, char **, char **)) {
1301 s = sqlite3_str_new(conf->log->db);
1302 sqlite3_str_appendall(s, "select *, ");
1303 if (conf->rootdir) {
1304 sqlite3_str_appendf(s, "printf('%%s/%%s',rtrim(%Q,'/'),ltrim(path,'/'))", conf->rootdir);
1306 sqlite3_str_appendf(s, "printf('/%%s', trim(path, '/'))");
1308 sqlite3_str_appendall(s, " as dest from syncinfo");
1311 sqlite3_str_appendf(s," where op = %Q", stage);
1313 if (conf->reverse) {
1314 sqlite3_str_appendall(s," order by length(path) desc, path desc");
1317 sql = sqlite3_str_value(s);
1319 rv = zpm_exec(conf->log, sql, callback, conf, &errmsg);
1321 sqlite3_str_finish(s);
1324 fprintf(stderr, "exec fail: %s\n", sqlite3_errstr(rv));
1326 fprintf(stderr, "database error: %s\n", errmsg);
1329 if (conf->log->error == 1) {
1330 fprintf(stderr, "unable to allocate memory\n");
1332 fprintf(stderr, "zpm_exec failure: %s\n",
1333 conf->log->errmsg ? conf->log->errmsg : "unknown");
1337 if (conf->log->errmsg) {
1338 fprintf(stderr, "error: %s\n", conf->log->errmsg);
1341 if (conf->errors && conf->exitonerror) {
1342 zpm_close(conf->log);
1343 zpm_close(conf->src);
1346 /* TODO final report function in conf var */
1349 static void count_ops(struct config *conf) {
1350 conf->ops_remove = zpm_db_int(conf->log, "select count(*) from syncinfo where op = 'remove'");
1351 conf->ops_update = zpm_db_int(conf->log, "select count(*) from syncinfo where op = 'update'");
1352 conf->ops_install = zpm_db_int(conf->log, "select count(*) from syncinfo where op = 'new'");
1353 conf->ops_total = conf->ops_remove + conf->ops_update + conf->ops_install;
1356 int main(int ac, char **av) {
1360 char *pkgdbfile = 0, *localdbfile = 0;
1363 struct config conf = { 0 };
1380 if (geteuid() != 0) {
1385 localdbfile = ZPM_LOCAL_DB;
1386 if ((s = getenv("ZPMDB"))) {
1387 /* TODO does this need to be copied ? */
1391 if ((s = getenv("ZPM_ROOT_DIR"))) {
1392 /* TODO does this need to be copied ? */
1397 * -d localdb or ZPMDB * or /var/lib/zpm/zpm.db, or die
1398 * -f 'package database', otherwise regular default of env
1399 * ZPM_PACKAGE_FILE, or use pkgdb if otherwise not found
1400 * -R root of pkg, will just chdir there
1402 * args are pkgid triple, but will do a pkg find on the pkgdb
1405 while ((opt = getopt(ac, av, "f:d:c:nCR:vOAMDp")) != -1) {
1407 case 'd': localdbfile = optarg; break;
1408 case 'f': pkgdbfile = optarg; break;
1409 case 'n': conf.dryrun = 1; break;
1410 case 'v': conf.verbose++; break;
1411 case 'C': conf.errabort = 0; break;
1412 case 'R': conf.rootdir = optarg; break;
1413 case 'N': conf.setuser = 0; conf.setgroup = 0; break;
1414 case 'O': conf.overwrite = 1; break;
1415 case 'A': conf.accept = 1; break;
1416 case 'M': conf.ignoredirmd = 1;
1417 case 'D': conf.acceptdir = 0;
1418 case 'p': conf.progress++;
1426 /* verify root dir exists */
1427 if (conf.rootdir && !exists(conf.rootdir, NULL)) {
1428 fprintf(stderr, "rootdir %s does not exist\n", conf.rootdir);
1431 if (!zpm_open(&localdb, localdbfile)) {
1432 fprintf(stderr, "can't open zpm db %s\n", localdbfile);
1435 conf.log = &localdb;
1438 /* TODO open read-only */
1439 if (!zpm_open(&pkgdb, pkgdbfile)) {
1440 fprintf(stderr, "can't open src db %s\n", localdbfile);
1447 /* TODO find pkgid from arg */
1449 /* TODO set conf var to finalize error reporting */
1451 fprintf(stderr, "syncing filesystem %s (ldb %s) from %s\n",
1452 conf.rootdir ? conf.rootdir : "/",
1453 localdbfile, pkgdbfile);
1457 conf.exitonerror = 0;
1458 check_conflicts(&conf, NULL, report_conflicts);
1460 if (conf.conflicts) {
1461 fprintf(stderr, "%d conflicts reported, aborting sync\n",
1465 /* no point in running it if we're just going to
1466 * overwrite everything
1468 if (!conf.overwrite && !conf.accept && !conf.dryrun) {
1469 runstage(&conf, "new", check_existing);
1473 fprintf(stderr, "beginning %ssync\n", conf.dryrun ?
1476 /* have to do the removes first otherwise
1477 * old files may conflict with update file
1481 conf.exitonerror = conf.dryrun ? 0 : 1;
1482 conf.errabort = conf.dryrun ? 0 : 1;
1484 fprintf(stderr, "file ops: %d\n", conf.ops_total);
1485 if (conf.ops_remove > 0) {
1487 fprintf(stderr, "removing %d file%s\n", conf.ops_remove, conf.ops_remove > 0 ? "s" : "");
1490 conf.ops_completed = 0;
1491 conf.ops_total = conf.ops_remove;
1492 runstage(&conf, "remove", remove_files);
1493 if (conf.verbose && conf.progress < 2) {
1494 fprintf(stderr, " done\n");
1499 if (conf.ops_update > 0) {
1501 fprintf(stderr, "updating %d file%s\n", conf.ops_update, conf.ops_update > 0 ? "s" : "");
1504 conf.ops_completed = 0;
1505 conf.ops_total = conf.ops_update;
1506 runstage(&conf, "update", install_files);
1507 if (conf.verbose && conf.progress < 2) {
1508 fprintf(stderr, " done\n");
1513 if (conf.ops_install > 0) {
1515 fprintf(stderr, "installing %d file%s\n", conf.ops_install, conf.ops_install > 0 ? "s" : "");
1518 conf.ops_completed = 0;
1519 conf.ops_total = conf.ops_install;
1520 runstage(&conf, "new", install_files);
1521 if (conf.verbose && conf.progress < 2) {
1522 fprintf(stderr, " done\n");
1529 zpm_close(&localdb);
1530 zpm_close(conf.src);
1531 return conf.errors ? 1 : 0;