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))
117 static char *dupstr(char *s) {
130 int zpm_newpkg(struct zpm *z, char *base, char *version, int release) {
131 char *sql = "insert or ignore into packages (package,version,release) values (?,?,?)";
135 rc = sqlite3_prepare(db, sql, -1, &ifile,0);
136 if (rc != SQLITE_OK) {
137 SQLERROR(sqlite3_errmsg(db));
140 rc = sqlite3_bind_text(ifile, 1, base, strlen(base), SQLITE_STATIC);
141 if (rc != SQLITE_OK) {
142 SQLERROR(sqlite3_errmsg(db));
143 fprintf(stderr, "cant bind package name\n");
147 sqlite3_bind_text(ifile, 2, version, strlen(version), SQLITE_STATIC);
148 sqlite3_bind_int(ifile, 3, release)
150 rc = sqlite3_step(ifile);
152 if (rc != SQLITE_DONE) {
153 SQLERROR(sqlite3_errmsg(db));
154 sqlite3_finalize(ifile);
157 sqlite3_finalize(ifile);
158 z->pkg = dupstr(base);
159 z->version = dupstr(version);
160 z->release = release;
164 int zpm_begin(struct zpm *z) {
166 sqlite3_exec(z->db, "begin;", NULL, NULL, &errstr);
168 fprintf(stderr, "sqlite begin error: %s\n", errstr);
169 sqlite3_free(errstr);
175 int zpm_commit(struct zpm *z) {
177 sqlite3_exec(z->db, "commit;", NULL, NULL, &errstr);
179 fprintf(stderr, "sqlite commit error: %s\n", errstr);
180 sqlite3_free(errstr);
186 /* wrapper for sqlite3_exec */
187 int zpm_exec(struct zpm *z, const char *sql, int(*callback)(void *, int, char **, char**), void *arg, char **errmsg) {
188 return sqlite3_exec(z->db, sql, callback, arg, errmsg);
191 int zpm_rollback(struct zpm *z) {
193 sqlite3_exec(z->db, "rollback;", NULL, NULL, &errstr);
195 fprintf(stderr, "sqlite rollback error: %s\n", errstr);
196 sqlite3_free(errstr);
202 int zpm_db_set_pragma(struct zpm *db, int pragma, int value) {
208 case 1: sql = "pragma application_id = ?;"; break;
209 case 2: sql = "pragma user_version = ?;"; break;
210 default: return -1; break;
213 rc = sqlite3_prepare_v2(db->db, sql, -1, &s, 0);
215 if (rc != SQLITE_OK) {
216 SQLERROR(sqlite3_errmsg(db->db));
220 sqlite3_bind_int(s, 1, value);
221 if (rc != SQLITE_OK) {
222 SQLERROR(sqlite3_errmsg(db->db));
223 fprintf(stderr, "cant bind pragma value\n");
227 rc = sqlite3_step(s);
228 if (rc != SQLITE_DONE) {
229 SQLERROR(sqlite3_errmsg(db->db));
230 fprintf(stderr, "cant set pragma\n");
239 int zpm_db_pragma(struct zpm *db, int pragma) {
246 case 1: sql = "pragma application_id;"; break;
247 case 2: sql = "pragma user_version;"; break;
248 default: return -1; break;
251 rc = sqlite3_prepare_v2(db->db, sql, -1, &s, 0);
253 if (rc != SQLITE_OK) {
254 SQLERROR(sqlite3_errmsg(db->db));
255 fprintf(stderr, "%s, errnum = %d\n", sqlite3_errmsg(db->db), rc);
256 /* TODO just abort? */
260 rc = sqlite3_step(s);
261 if (rc == SQLITE_ROW) {
262 value = sqlite3_column_int(s, 0);
272 int zpm_db_initialize(struct zpm *pkg) {
273 //fprintf(stderr, "initializing zpm database\n");
275 switch (sqlite3_exec(pkg->db, createdb, (int (*)(void *,int,char **,char **))0, NULL, &error)) {
276 case SQLITE_OK: break;
278 SQLERROR(sqlite3_errmsg(pkg->db));
279 fprintf(stderr, "error: %s\n", error);
288 int zpm_open(struct zpm *pkg, char *path) {
296 pkg->current_package = 0;
298 rc = sqlite3_open_v2(path, &db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
300 SQLERROR(sqlite3_errmsg(db));
305 pkg->path = dupstr(path);
307 appid = zpm_db_pragma(pkg, 1);
308 dbver = zpm_db_pragma(pkg, 2);
310 //fprintf(stderr, "db appid = %x, dbver = %d\n", appid, dbver);
312 case 0: if (!zpm_db_initialize(pkg)) {
317 case 0x5a504442: break;
319 fprintf(stderr, "unknown database type\n");
325 fprintf(stderr, "version %d zpm db detected, this program only works with version 1 databases\n", dbver);
330 sqlite3_exec(pkg->db, "pragma foreign_keys = ON;", NULL, NULL, &errstr);
332 fprintf(stderr, "sqlite foreign key error: %s\n", errstr);
333 sqlite3_free(errstr);
339 /* TODO if this is a new database, create structures */
341 /* get a package. what if more than one? what if none? */
345 int zpm_close(struct zpm *pkg) {
347 sqlite3_close(pkg->db);
350 /* TODO free any malloced names and such */
354 static int zpm_sqlite_vercmp(void *not_used, int lena, const void *a,
355 int lenb, const void *b) {
356 /* not sure what the ints are, possibly string lengths */
357 if (not_used != 0) fprintf(stderr, "sqlite vercmp not_used = %p\n",
359 if (lena == 0 && lenb > 0) return 1;
360 return zpm_vercmp(a, b);
363 int zpm_addvercmp(struct zpm *pkg) {
364 return sqlite3_create_collation(
365 pkg->db, "vercmp", SQLITE_UTF8, NULL,
370 /* set package struct variables, database, environment, then command line */
371 int zpm_readopts(struct zpm *zpm, int ac, char **av) {
373 struct zpm_package *pkg;
379 pkg = zpm->current_package;
382 ev = getenv("ZPMPACKAGE");
384 pkg->name = dupstr(ev);
386 ev = getenv("ZPMPKGREL");
388 pkg->release = strtol(ev, 0, 0);
390 ev = getenv("ZPMPKGVER");
392 pkg->version = dupstr(ev);
396 /* now, parse the options, return optind so the caller can adjust if needed */
401 int zpm_extract(struct zpm *pkg, char *hash, char *path, int mode) {
411 /* TODO check null */
412 sqlite3 *db = pkg->db;
414 rc = sqlite3_prepare(db, "select size, content from files where hash = ?", -1, &ifile,0);
415 if (rc != SQLITE_OK) {
416 SQLERROR(sqlite3_errmsg(db));
422 sqlite3_bind_text(ifile, 1, hash, 64, SQLITE_STATIC);
424 rc = sqlite3_step(ifile);
426 if (rc == SQLITE_DONE) {
427 /* didn't find a row */
428 sqlite3_finalize(ifile);
430 fprintf(stderr, "no such hash: %s\n", hash);
433 /* either way we're done with this now */
435 if (rc != SQLITE_ROW) {
436 SQLERROR(sqlite3_errmsg(db));
437 sqlite3_finalize(ifile);
442 type = sqlite3_column_type(ifile, 0);
443 if (type == SQLITE_NULL) {
444 fprintf(stderr, "no file size\n");
445 sqlite3_finalize(ifile);
449 type = sqlite3_column_type(ifile, 1);
450 if (type == SQLITE_NULL) {
451 fprintf(stderr, "no file data\n");
452 sqlite3_finalize(ifile);
456 //size = sqlite3_column_int64(ifile, 0);
457 xzdata = (void *)sqlite3_column_blob(ifile, 1);
458 blobsize = sqlite3_column_bytes(ifile, 1);
460 if (strcmp(path, "-")) {
461 out = fopen(path, "w");
466 fprintf(stderr, "can't open output file %s\n", path);
467 sqlite3_finalize(ifile);
471 //fwrite(xzdata, blobsize, 1, stdout);
473 //fprintf(stderr, "uncompressing %d bytes at %p, expect %lld\n", blobsize, xzdata, (long long int)size);
474 uncompresslzma(xzdata, blobsize, out);
478 sqlite3_finalize(ifile);
483 static sqlite3_stmt *run_for_hash(sqlite3 *db, char *sql, char *hash) {
487 rc = sqlite3_prepare_v2(db, sql, -1, &ifile, 0);
488 if (rc != SQLITE_OK) {
489 SQLERROR(sqlite3_errmsg(db));
495 sqlite3_bind_text(ifile, 1, hash, 64, SQLITE_STATIC);
500 static int set_elf_info(sqlite3 *db, char *hash, char *content, size_t length) {
501 if (length >= sizeof (Elf64_Ehdr) && libelf_iself(content)) {
510 /* go ahead and set up elf information now */
511 /* clear existing for this hash */
512 ifile = run_for_hash(db, "delete from elfinfo where file = ?", hash);
514 rc = sqlite3_step(ifile);
516 if (rc == SQLITE_ROW) {
518 fprintf(stderr, "delete row has %d columns: ", sqlite3_column_count(ifile));
519 nc = sqlite3_column_count(ifile);
520 for (i = 0; i < nc; i++) {
522 r = sqlite3_column_text(ifile, i);
523 fprintf(stderr, ", %s", r);
525 fprintf(stderr, "\n");
528 } while (rc == SQLITE_ROW);
529 if (rc != SQLITE_DONE) {
530 SQLERROR(sqlite3_errmsg(db));
531 sqlite3_finalize(ifile);
532 fprintf(stderr, "error clearing elf info: %d\n", rc);
535 sqlite3_finalize(ifile);
536 ifile = run_for_hash(db, "delete from elflibraries where file = ?", hash);
538 rc = sqlite3_step(ifile);
539 } while (rc == SQLITE_ROW);
540 if (rc != SQLITE_DONE) {
541 SQLERROR(sqlite3_errmsg(db));
542 sqlite3_finalize(ifile);
543 fprintf(stderr, "error clearing elf library: %d\n", rc);
546 sqlite3_finalize(ifile);
547 ifile = run_for_hash(db, "delete from elfneeded where file = ?", hash);
549 rc = sqlite3_step(ifile);
550 } while (rc == SQLITE_ROW);
551 if (rc != SQLITE_DONE) {
552 SQLERROR(sqlite3_errmsg(db));
553 sqlite3_finalize(ifile);
554 fprintf(stderr, "error clearing elf needed\n");
557 sqlite3_finalize(ifile);
559 hdr = libelf_header(content);
560 /* if lib, set soname */
561 if (libelf_type(content) == ET_DYN) {
562 char *soname = libelf_soname(content);
565 sqlite3_prepare_v2(db, "insert into elflibraries (file,soname) values (?,?)",-1, &ifile, 0);
566 sqlite3_bind_text(ifile,1,hash,64,SQLITE_STATIC);
567 sqlite3_bind_text(ifile,2,soname,-1,SQLITE_STATIC);
568 rc = sqlite3_step(ifile);
569 if (rc != SQLITE_DONE) {
570 SQLERROR(sqlite3_errmsg(db));
571 sqlite3_finalize(ifile);
572 fprintf(stderr, "error setting library soname\n");
575 sqlite3_finalize(ifile);
577 fprintf(stderr, "can't find soname\n");
581 /* if exe, set neededs */
582 if (libelf_type(content) == ET_EXEC) {
586 elf = (char *)content;
587 /* find program header table */
588 for (i = 0; i < hdr->e_phnum; i++) {
589 phdr = (Elf64_Phdr *)(elf + hdr->e_phoff + i * hdr->e_phentsize);
590 if (phdr->p_type == PT_DYNAMIC) {
591 dsect = (Elf64_Shdr *)(elf + phdr->p_offset);
594 dyn = (Elf64_Dyn *)(elf + dsect->sh_offset);
598 dyn = (Elf64_Dyn *)dsect;
600 dsect = libelf_section(elf, SHT_DYNAMIC);
603 strsect = libelf_section_n(elf, dsect->sh_link);
604 strtab = elf + strsect->sh_offset;
606 sqlite3_prepare_v2(db, "insert into elfneeded (file,needed) values (?,?)",-1, &ifile, 0);
607 sqlite3_bind_text(ifile,1,hash,64,SQLITE_STATIC);
608 while (dyn->d_tag != DT_NULL) {
609 if (dyn->d_tag == DT_NEEDED) {
613 need = strtab + dyn->d_un.d_val;
614 if (strlen(need) == 0) continue;
615 sqlite3_bind_text(ifile,2,need,strlen(need),SQLITE_STATIC);
617 fprintf(stderr, "%s needs %s\n", hash, need);
619 rc = sqlite3_step(ifile);
620 if (rc != SQLITE_DONE) {
621 SQLERROR(sqlite3_errmsg(db));
622 sqlite3_finalize(ifile);
623 fprintf(stderr, "error setting needed library\n");
626 sqlite3_reset(ifile);
630 sqlite3_finalize(ifile);
637 int zpm_import(struct zpm *zpm, char *path, uint32_t flags, char *hash) {
641 unsigned char tmp[32];
642 struct sha256_state md;
644 int haverow = 0,havedata = 0;
652 if (!zpm || !zpm->db || !path) {
656 /* use local if caller didn't pass in room */
662 fprintf(stderr, "zpm_import unused flags = %d\n", flags);
665 fd = open(path, O_RDONLY);
668 fprintf(stderr, "%s can't open %s: %s\n", __FUNCTION__, path,strerror(errno));
671 if (fstat(fd, &sbuf) == -1) {
673 fprintf(stderr, "%s can't fstat %s: %s\n", __FUNCTION__, path,strerror(errno));
676 /* not a regular file? */
677 if (!S_ISREG(sbuf.st_mode)) {
679 switch (sbuf.st_mode & S_IFMT) {
680 case S_IFSOCK: ftype = "socket"; break;
681 case S_IFLNK : ftype = "symlink"; break;
682 case S_IFBLK : ftype = "block device"; break;
683 case S_IFDIR : ftype = "directory"; break;
684 case S_IFCHR : ftype = "character device"; break;
685 case S_IFIFO : ftype = "fifo"; break;
686 default: ftype = "unknown file type"; break;
688 /* TODO this is ok, just stored differently */
689 fprintf(stderr, "%s can't import %s file: %s\n", __FUNCTION__, ftype, path);
694 content = mmap(0, sbuf.st_size, PROT_READ,MAP_PRIVATE, fd, 0);
698 fprintf(stderr, "%s can't mmap %s: %s\n", __FUNCTION__, path,strerror(errno));
704 sha256_process(&md, content, sbuf.st_size);
705 sha256_done(&md, tmp);
707 sprintf(hash+j*2, "%02x", (unsigned)tmp[j]);
710 //fprintf(stderr, "file %s: %s\n", path, hash);
712 /* TODO check null */
713 sqlite3 *db = zpm->db;
715 /* prepare and bind */
717 rc = sqlite3_prepare_v2(db, "select size, content is not null from files where hash = ?", -1, &ifile,0);
718 if (rc != SQLITE_OK) {
719 SQLERROR(sqlite3_errmsg(db));
720 munmap(content, sbuf.st_size);
726 sqlite3_bind_text(ifile, 1, hash, 64, SQLITE_STATIC);
728 rc = sqlite3_step(ifile);
730 if (rc != SQLITE_DONE) {
731 if (rc != SQLITE_ROW) {
732 /* didn't find a row */
733 SQLERROR(sqlite3_errmsg(db));
735 munmap(content, sbuf.st_size);
739 // fprintf(stderr, "have row for hash\n");
740 type = sqlite3_column_type(ifile, 0);
741 if (type == SQLITE_NULL) {
742 /* TODO assert, this shouldn't be possible? */
743 fprintf(stderr, "no file size\n");
744 sqlite3_finalize(ifile);
745 munmap(content, sbuf.st_size);
748 type = sqlite3_column_type(ifile, 1);
749 if (type == SQLITE_NULL) {
750 /* TODO assert, this shouldn't be possible? */
751 fprintf(stderr, "no file data\n");
752 sqlite3_finalize(ifile);
753 munmap(content, sbuf.st_size);
755 /* which is fine, just need to update the row then */
757 havedata = sqlite3_column_int(ifile, 1);
760 sqlite3_finalize(ifile);
764 outbuf = compresslzma(content, sbuf.st_size, &outlen);
766 fprintf(stderr, "compresslzma failed\n");
767 munmap(content, sbuf.st_size);
770 //fprintf(stderr, "compressed to %zu\n", outlen);
772 /* start a transaction */
773 // do that outside of here
778 //fprintf(stderr, "adding file data\n");
779 rc = sqlite3_prepare(db, "update files set size = ?, content = ? where hash = ?", -1, &ifile,0);
781 //fprintf(stderr, "creating new data row\n");
782 rc = sqlite3_prepare(db, "insert into files (size, content, hash) values (?,?,?)", -1, &ifile,0);
784 if (rc != SQLITE_OK) {
785 SQLERROR(sqlite3_errmsg(db));
786 fprintf(stderr, "cant prepare data\n");
788 munmap(content, sbuf.st_size);
792 sqlite3_bind_int64(ifile, 1, (sqlite3_int64)sbuf.st_size);
793 if (rc != SQLITE_OK) {
794 SQLERROR(sqlite3_errmsg(db));
795 fprintf(stderr, "cant bind size\n");
797 munmap(content, sbuf.st_size);
800 sqlite3_bind_blob64(ifile, 2, outbuf, (sqlite3_int64)outlen, SQLITE_STATIC);
801 if (rc != SQLITE_OK) {
802 SQLERROR(sqlite3_errmsg(db));
803 fprintf(stderr, "cant bind content\n");
805 munmap(content, sbuf.st_size);
808 sqlite3_bind_text(ifile, 3, hash, 64, SQLITE_STATIC);
809 if (rc != SQLITE_OK) {
810 SQLERROR(sqlite3_errmsg(db));
811 fprintf(stderr, "cant bind hash\n");
813 munmap(content, sbuf.st_size);
816 rc = sqlite3_step(ifile);
817 if (rc != SQLITE_DONE) {
818 SQLERROR(sqlite3_errmsg(db));
819 sqlite3_finalize(ifile);
821 munmap(content, sbuf.st_size);
824 sqlite3_finalize(ifile);
829 /* don't need the original file now */
833 if (!set_elf_info(zpm->db, hash, content, sbuf.st_size)) {
834 fprintf(stderr, "setting elf info failed\n");
835 munmap(content, sbuf.st_size);
839 munmap(content, sbuf.st_size);
841 /* if package and not nopackage flag, add to package */
842 if (zpm->current_package->name && (!ZPM_NOPACKAGE)) {
852 int main(int ac, char **av){
867 fprintf(stderr, "usage: db hash file\n");
871 rc = sqlite3_open(av[1], &db);
873 SQLERROR(sqlite3_errmsg(db));
882 Packages are sqlite databases
884 get application id and userver
886 Primitive operations:
889 associate path with package
890 associate blob with path?
892 * extract blob to a path
893 compare blob to filesystem path
894 create package with info
898 record elf information about blob
901 sign a package? What are we verifying?