1 #define _POSIX_C_SOURCE 200809L
21 char *path; /* path to package file */
25 time_t installed; /* install time, 0 for not installed */
35 char *hash; /* could be fixed length */
37 struct zpm_file *next; /* so you can make a linked list */
41 /* associate with a package ? if only one? first? */
42 int zpm_open(struct zpm *pkg, char *path);
43 int zpm_pkgname(char *base, char *version, int release); /* construct a package file name */
45 /* flags for preserving mode, owner, etc */
46 /* puts hash of import in hash */
47 /* path can be a hash, with an "INTERNAL" flag, i.e. internally import */
51 #define ZPM_INTERNAL 0x8
52 #define ZPM_NOBLOB 0x10
53 /* don't run scripts on install */
54 #define ZPM_NOSCRIPTS 0x10
55 /* don't associate the file with a package, just do a raw insert */
56 /* otherwise, associate it with the current package */
57 #define ZPM_NOPACKAGE 0x20
59 int zpm_import(struct zpm *zp, char *path, uint32_t flags, uint8_t *hash);
61 /* link and unlink hashes to packages */
62 int zpm_link(struct zpm *pkg, char *path, char *hash, struct zpm_file *fileinfo);
63 int zpm_unlink(struct zpm *pkg, char *path);
65 /* tag a file. relative to "current package" */
66 int zpm_tag(struct zpm *zp, char *path, char *tags);
67 /* should this be broken up into separage functions ? */
68 int zpm_md(struct zpm *zp, char *path, int mode, char *owner, char *group, time_t mtime);
70 /* export hash to dest */
71 int zpm_extract(struct zpm *pkg, char *hash, char *path, int mode);
73 /* export path to dest */
74 int zpm_export(struct zpm *zp, char *path, uint32_t flags, char *dest);
76 int zpm_close(struct zpm *zp);
78 /* attach a signature to a package */
79 int zpm_sign(struct zpm *z, size_t s, void *signature);
81 /* set the package info to the nth package, -1 to return count? */
82 /* further import/exports and such will be relative to this package */
83 int zpm_package(struct zpm *zp, int n);
85 /* get file information */
86 int zpm_stat(struct zpm *z, struct zpm_file *f, int n);
88 /* will also set the package context to the new package */
89 int zpm_newpkg(struct zpm *z, char *base, char *version, int release);
92 int zpm_begin(struct zpm *z);
93 int zpm_commit(struct zpm *z);
94 int zpm_rollback(struct zpm *z);
96 /* higher level operations */
98 /* install or uninstall the package */
99 /* flag for keeping the blobs in local */
100 /* what about tag filtering */
101 int zpm_install(struct zpm *z, struct zpm *local, uint32_t flags);
102 int zpm_uninstall(struct zpm *local);
104 /* slurp up the actual blobs */
105 /* what about versioning them if they change */
106 int zpm_preserve(struct zpm *local);
108 /* check file integrity */
109 int zpm_checkinstall(struct zpm *local);
111 int zpm_merge(struct zpm *z, struct zpm *src, uint32_t flags);
113 void uncompresslzma(void *buf, size_t bufsize, FILE *out);
114 #define SQLERROR(x) fprintf(stderr, "%s %d: %s\n", __func__, __LINE__, (x))
118 int zpm_newpkg(struct zpm *z, char *base, char *version, int release) {
119 char *sql = "insert or ignore into packages (package,version,release) values (?,?,?)";
123 rc = sqlite3_prepare(db, sql, -1, &ifile,0);
124 if (rc != SQLITE_OK) {
125 SQLERROR(sqlite3_errmsg(db));
128 rc = sqlite3_bind_text(ifile, 1, base, strlen(base), SQLITE_STATIC);
129 if (rc != SQLITE_OK) {
130 SQLERROR(sqlite3_errmsg(db));
131 fprintf(stderr, "cant bind package name\n");
135 sqlite3_bind_text(ifile, 2, version, strlen(version), SQLITE_STATIC);
136 sqlite3_bind_int(ifile, 3, release)
138 rc = sqlite3_step(ifile);
140 if (rc != SQLITE_DONE) {
141 SQLERROR(sqlite3_errmsg(db));
142 sqlite3_finalize(ifile);
145 sqlite3_finalize(ifile);
146 z->pkg = dupstr(base);
147 z->version = dupstr(version);
148 z->release = release;
152 int zpm_begin(struct zpm *z) {
154 sqlite3_exec(z->db, "begin;", NULL, NULL, &errstr);
156 fprintf(stderr, "sqlite begin error: %s\n", errstr);
157 sqlite3_free(errstr);
163 int zpm_commit(struct zpm *z) {
165 sqlite3_exec(z->db, "commit;", NULL, NULL, &errstr);
167 fprintf(stderr, "sqlite commit error: %s\n", errstr);
168 sqlite3_free(errstr);
174 /* wrapper for sqlite3_exec */
175 int zpm_exec(struct zpm *z, const char *sql, int(*callback)(void *, int, char **, char**), void *arg, char **errmsg) {
176 return sqlite3_exec(z->db, sql, callback, arg, errmsg);
179 int zpm_rollback(struct zpm *z) {
181 sqlite3_exec(z->db, "rollback;", NULL, NULL, &errstr);
183 fprintf(stderr, "sqlite rollback error: %s\n", errstr);
184 sqlite3_free(errstr);
190 int zpm_db_set_pragma(struct zpm *db, int pragma, int value) {
196 case 1: sql = "pragma application_id = ?;"; break;
197 case 2: sql = "pragma user_version = ?;"; break;
198 default: return -1; break;
201 rc = sqlite3_prepare_v2(db->db, sql, -1, &s, 0);
203 if (rc != SQLITE_OK) {
204 SQLERROR(sqlite3_errmsg(db->db));
208 sqlite3_bind_int(s, 1, value);
209 if (rc != SQLITE_OK) {
210 SQLERROR(sqlite3_errmsg(db->db));
211 fprintf(stderr, "cant bind pragma value\n");
215 rc = sqlite3_step(s);
216 if (rc != SQLITE_DONE) {
217 SQLERROR(sqlite3_errmsg(db->db));
218 fprintf(stderr, "cant set pragma\n");
227 int zpm_db_pragma(struct zpm *db, int pragma) {
234 case 1: sql = "pragma application_id;"; break;
235 case 2: sql = "pragma user_version;"; break;
236 default: return -1; break;
239 rc = sqlite3_prepare_v2(db->db, sql, -1, &s, 0);
241 if (rc != SQLITE_OK) {
242 SQLERROR(sqlite3_errmsg(db->db));
243 fprintf(stderr, "%s, errnum = %d\n", sqlite3_errmsg(db->db), rc);
244 /* TODO just abort? */
248 rc = sqlite3_step(s);
249 if (rc == SQLITE_ROW) {
250 value = sqlite3_column_int(s, 0);
260 int zpm_db_initialize(struct zpm *pkg) {
262 switch (sqlite3_exec(pkg->db, createdb, (int (*)(void *,int,char **,char **))0, NULL, &error)) {
263 case SQLITE_OK: break;
265 SQLERROR(sqlite3_errmsg(pkg->db));
266 fprintf(stderr, "error: %s\n", error);
276 /* assumes pkg->db is set */
277 static int setupdb(struct zpm *zpm) {
283 appid = zpm_db_pragma(zpm, 1);
284 dbver = zpm_db_pragma(zpm, 2);
286 if (appid != 0x5a504442) {
287 fprintf(stderr, "unknown database type\n");
293 fprintf(stderr, "version %d zpm db detected, this program only works with version 1 databases\n", dbver);
298 sqlite3_exec(zpm->db, "pragma foreign_keys = ON;", NULL, NULL, &errstr);
302 zpm->errmsg = strdup(errstr);
303 fprintf(stderr, "sqlite foreign key error: %s\n", errstr);
304 sqlite3_free(errstr);
309 /* TODO add vercmp */
314 struct zpm *zpm_clearmem(struct zpm *zpm) {
316 zpm = malloc(sizeof *zpm);
320 *zpm = (struct zpm){0};
326 static void zpm_set_db_errmsg(struct zpm *zpm, const char *msg) {
332 zpm->dberrmsg = strdup(msg);
333 if (!zpm->dberrmsg) {
342 int zpm_init(struct zpm *pkg, char *path) {
353 rc = sqlite3_open_v2(path, &db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
357 zpm_set_db_errmsg(pkg, sqlite3_errstr(rc));
361 fprintf(stderr, "error (%d): %s: %s\n", rc,
362 pkg->dberrmsg ? pkg->dberrmsg : "null", path);
367 pkg->path = strdup(path);
369 appid = zpm_db_pragma(pkg, 1);
372 case 0: if (!zpm_db_initialize(pkg)) {
378 /* already initialized */
381 fprintf(stderr, "unknown database type\n");
397 int zpm_open(struct zpm *zpm, char *path) {
403 rc = sqlite3_open_v2(path, &db, SQLITE_OPEN_READWRITE, NULL);
405 SQLERROR(sqlite3_errmsg(db));
408 fprintf(stderr, "path = %s\n", path);
412 zpm->path = strdup(path);
425 int zpm_close(struct zpm *pkg) {
427 sqlite3_close(pkg->db);
430 /* TODO free any malloced names and such */
434 static int zpm_sqlite_vercmp(void *not_used, int lena, const void *a,
435 int lenb, const void *b) {
436 /* not sure what the ints are, possibly string lengths */
437 if (not_used != 0) fprintf(stderr, "sqlite vercmp not_used = %p\n",
439 if (lena == 0 && lenb > 0) return 1;
440 return zpm_vercmp(a, b);
443 int zpm_addvercmp(struct zpm *pkg) {
444 return sqlite3_create_collation(
445 pkg->db, "vercmp", SQLITE_UTF8, NULL,
450 int zpm_extract(struct zpm *pkg, char *hash, char *path, int mode) {
460 /* TODO check null */
461 sqlite3 *db = pkg->db;
463 rc = sqlite3_prepare(db, "select size, content from files where hash = ?", -1, &ifile,0);
464 if (rc != SQLITE_OK) {
465 SQLERROR(sqlite3_errmsg(db));
471 sqlite3_bind_text(ifile, 1, hash, 64, SQLITE_STATIC);
473 rc = sqlite3_step(ifile);
475 if (rc == SQLITE_DONE) {
476 /* didn't find a row */
477 sqlite3_finalize(ifile);
479 fprintf(stderr, "no such hash: %s\n", hash);
482 /* either way we're done with this now */
484 if (rc != SQLITE_ROW) {
485 SQLERROR(sqlite3_errmsg(db));
486 sqlite3_finalize(ifile);
491 type = sqlite3_column_type(ifile, 0);
492 if (type == SQLITE_NULL) {
493 fprintf(stderr, "no file size\n");
494 sqlite3_finalize(ifile);
498 type = sqlite3_column_type(ifile, 1);
499 if (type == SQLITE_NULL) {
500 fprintf(stderr, "no file data\n");
501 sqlite3_finalize(ifile);
505 //size = sqlite3_column_int64(ifile, 0);
506 xzdata = (void *)sqlite3_column_blob(ifile, 1);
507 blobsize = sqlite3_column_bytes(ifile, 1);
509 if (strcmp(path, "-")) {
510 out = fopen(path, "w");
515 fprintf(stderr, "can't open output file %s\n", path);
516 sqlite3_finalize(ifile);
520 //fwrite(xzdata, blobsize, 1, stdout);
522 //fprintf(stderr, "uncompressing %d bytes at %p, expect %lld\n", blobsize, xzdata, (long long int)size);
523 uncompresslzma(xzdata, blobsize, out);
527 sqlite3_finalize(ifile);
532 static int run_for_hash(sqlite3 *db, char *sql, char *hash) {
536 rc = sqlite3_prepare_v2(db, sql, -1, &ifile, 0);
537 if (rc != SQLITE_OK) {
538 SQLERROR(sqlite3_errmsg(db));
544 sqlite3_bind_text(ifile, 1, hash, 64, SQLITE_STATIC);
546 rc = sqlite3_step(ifile);
547 } while (rc == SQLITE_ROW);
549 sqlite3_finalize(ifile);
551 return rc == SQLITE_DONE;
554 #define SQLERP(db, msg) fprintf(stderr, "%s: %s\n", msg, sqlite3_errmsg(db))
556 static int set_elf_info(sqlite3 *db, char *hash, char *content, size_t length) {
557 if (length >= sizeof (Elf64_Ehdr) && libelf_iself(content)) {
566 /* clear existing for this hash */
568 if (!run_for_hash(db, "delete from elflibraries where file = ?", hash)) {
569 SQLERP(db, "error clearing elf library");
573 if (!run_for_hash(db, "delete from elfneeded where file = ?", hash)) {
574 SQLERP(db, "error clearing elf needed");
578 hdr = libelf_header(content);
579 /* if lib, set soname */
580 if (libelf_type(content) == ET_DYN) {
581 char *soname = libelf_soname(content);
584 sqlite3_prepare_v2(db, "insert into elflibraries (file,soname) values (?,?)",-1, &ifile, 0);
585 sqlite3_bind_text(ifile,1,hash,64,SQLITE_STATIC);
586 sqlite3_bind_text(ifile,2,soname,-1,SQLITE_STATIC);
587 rc = sqlite3_step(ifile);
588 if (rc != SQLITE_DONE) {
589 SQLERROR(sqlite3_errmsg(db));
590 sqlite3_finalize(ifile);
591 fprintf(stderr, "error setting library soname\n");
594 sqlite3_finalize(ifile);
596 fprintf(stderr, "can't find soname\n");
600 /* if exe, set neededs */
601 if (libelf_type(content) == ET_EXEC) {
602 Elf64_Shdr *dsect = 0;
605 elf = (char *)content;
606 /* find program header table */
607 for (i = 0; i < hdr->e_phnum; i++) {
608 phdr = (Elf64_Phdr *)(elf + hdr->e_phoff + i * hdr->e_phentsize);
609 if (phdr->p_type == PT_DYNAMIC) {
610 dsect = (Elf64_Shdr *)(elf + phdr->p_offset);
614 /* no dynamic section found */
619 dyn = (Elf64_Dyn *)(elf + dsect->sh_offset);
624 dyn = (Elf64_Dyn *)dsect;
626 dsect = libelf_section(elf, SHT_DYNAMIC);
629 strsect = libelf_section_n(elf, dsect->sh_link);
630 strtab = elf + strsect->sh_offset;
632 sqlite3_prepare_v2(db, "insert into elfneeded (file,needed) values (?,?)",-1, &ifile, 0);
633 sqlite3_bind_text(ifile,1,hash,64,SQLITE_STATIC);
634 while (dyn->d_tag != DT_NULL) {
635 if (dyn->d_tag == DT_NEEDED) {
639 need = strtab + dyn->d_un.d_val;
640 if (strlen(need) == 0) continue;
641 sqlite3_bind_text(ifile,2,need,strlen(need),SQLITE_STATIC);
643 fprintf(stderr, "%s needs %s\n", hash, need);
645 rc = sqlite3_step(ifile);
646 if (rc != SQLITE_DONE) {
647 SQLERP(db, "error setting needed library");
648 sqlite3_finalize(ifile);
651 sqlite3_reset(ifile);
655 sqlite3_finalize(ifile);
661 int zpm_import(struct zpm *zpm, char *path, uint32_t flags, char *hash) {
665 unsigned char tmp[32];
666 struct sha256_state md;
667 sqlite3_stmt *ifile = 0;
668 int haverow = 0,havedata = 0;
676 if (!zpm || !zpm->db || !path) {
680 /* use local if caller didn't pass in room */
686 fprintf(stderr, "zpm_import unused flags = %d\n", flags);
689 fd = open(path, O_RDONLY);
692 fprintf(stderr, "%s can't open %s: %s\n", __FUNCTION__, path,strerror(errno));
695 if (fstat(fd, &sbuf) == -1) {
697 fprintf(stderr, "%s can't fstat %s: %s\n", __FUNCTION__, path,strerror(errno));
700 /* not a regular file? */
701 if (!S_ISREG(sbuf.st_mode)) {
703 switch (sbuf.st_mode & S_IFMT) {
704 case S_IFSOCK: ftype = "socket"; break;
705 case S_IFLNK : ftype = "symlink"; break;
706 case S_IFBLK : ftype = "block device"; break;
707 case S_IFDIR : ftype = "directory"; break;
708 case S_IFCHR : ftype = "character device"; break;
709 case S_IFIFO : ftype = "fifo"; break;
710 default: ftype = "unknown file type"; break;
712 /* TODO this is ok, just stored differently */
713 fprintf(stderr, "%s can't import %s file: %s\n", __FUNCTION__, ftype, path);
718 content = mmap(0, sbuf.st_size, PROT_READ,MAP_PRIVATE, fd, 0);
722 fprintf(stderr, "%s can't mmap %s: %s\n", __FUNCTION__, path,strerror(errno));
728 sha256_process(&md, content, sbuf.st_size);
729 sha256_done(&md, tmp);
731 sprintf(hash+j*2, "%02x", (unsigned)tmp[j]);
735 /* TODO check null */
736 sqlite3 *db = zpm->db;
738 /* prepare and bind */
740 rc = sqlite3_prepare_v2(db, "select size, content is not null from files where hash = ?", -1, &ifile,0);
741 if (rc != SQLITE_OK) {
742 SQLERROR(sqlite3_errmsg(db));
743 munmap(content, sbuf.st_size);
749 sqlite3_bind_text(ifile, 1, hash, 64, SQLITE_STATIC);
751 rc = sqlite3_step(ifile);
753 if (rc != SQLITE_DONE) {
754 if (rc != SQLITE_ROW) {
755 /* didn't find a row */
756 SQLERROR(sqlite3_errmsg(db));
757 munmap(content, sbuf.st_size);
761 type = sqlite3_column_type(ifile, 0);
762 if (type == SQLITE_NULL) {
763 /* TODO assert, this shouldn't be possible? */
764 fprintf(stderr, "no file size\n");
765 sqlite3_finalize(ifile);
766 munmap(content, sbuf.st_size);
769 type = sqlite3_column_type(ifile, 1);
770 if (type == SQLITE_NULL) {
771 /* TODO assert, this shouldn't be possible? */
772 fprintf(stderr, "no file data\n");
773 sqlite3_finalize(ifile);
774 munmap(content, sbuf.st_size);
776 /* which is fine, just need to update the row then */
778 havedata = sqlite3_column_int(ifile, 1);
781 sqlite3_finalize(ifile);
785 outbuf = compresslzma(content, sbuf.st_size, &outlen);
787 fprintf(stderr, "compresslzma failed\n");
788 munmap(content, sbuf.st_size);
794 rc = sqlite3_prepare_v2(db, "update files set size = ?, content = ? where hash = ?", -1, &ifile,0);
796 rc = sqlite3_prepare_v2(db, "insert into files (size, content, hash) values (?,?,?)", -1, &ifile,0);
799 if (rc != SQLITE_OK) {
800 SQLERROR(sqlite3_errmsg(db));
801 fprintf(stderr, "cant prepare data\n");
802 munmap(content, sbuf.st_size);
806 rc = sqlite3_bind_int64(ifile, 1, (sqlite3_int64)sbuf.st_size);
807 if (rc != SQLITE_OK) {
808 SQLERROR(sqlite3_errmsg(db));
809 sqlite3_finalize(ifile);
810 fprintf(stderr, "cant bind size\n");
811 munmap(content, sbuf.st_size);
815 rc = sqlite3_bind_blob64(ifile, 2, outbuf,
816 (sqlite3_int64)outlen, SQLITE_STATIC);
817 if (rc != SQLITE_OK) {
818 SQLERROR(sqlite3_errmsg(db));
819 sqlite3_finalize(ifile);
820 fprintf(stderr, "cant bind content\n");
821 munmap(content, sbuf.st_size);
825 rc = sqlite3_bind_text(ifile, 3, hash, 64, SQLITE_STATIC);
826 if (rc != SQLITE_OK) {
827 SQLERROR(sqlite3_errmsg(db));
828 fprintf(stderr, "cant bind hash\n");
829 sqlite3_finalize(ifile);
830 munmap(content, sbuf.st_size);
834 rc = sqlite3_step(ifile);
835 if (rc != SQLITE_DONE) {
836 SQLERROR(sqlite3_errmsg(db));
837 sqlite3_finalize(ifile);
838 munmap(content, sbuf.st_size);
841 sqlite3_finalize(ifile);
843 /* don't need the original file now */
846 if (!set_elf_info(zpm->db, hash, content, sbuf.st_size)) {
847 fprintf(stderr, "setting elf info failed\n");
848 munmap(content, sbuf.st_size);
852 munmap(content, sbuf.st_size);