]> pd.if.org Git - zpackage/blob - lib/zpm.c
separate zpm_hash function
[zpackage] / lib / zpm.c
1 #define _POSIX_C_SOURCE 200809L
2
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
6 #include <sys/types.h>
7 #include <sys/stat.h>
8 #include <sys/mman.h>
9 #include <unistd.h>
10 #include <fcntl.h>
11 #include <errno.h>
12
13 #include "zpm.h"
14 #include "elf.h"
15
16 #include "sha256.h"
17
18 #if 0
19 struct zpm {
20         sqlite3 *db;
21         char *path; /* path to package file */
22         char *version;
23         int release;
24         char *pkgname;
25         time_t installed; /* install time, 0 for not installed */
26 };
27
28 struct zpm_file {
29         char *path;
30         int mode;
31         uint32_t filetype;
32         char *tags;
33         char *owner;
34         char *group;
35         char *hash; /* could be fixed length */
36         time_t mtime;
37         struct zpm_file *next; /* so you can make a linked list */
38 };
39
40 /* NULL?  Create? */
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 */
44
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 */
48 #define ZPM_MODE 0x1
49 #define ZPM_OWNER 0x2
50 #define ZPM_MTIME 0x4
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
58
59 int zpm_import(struct zpm *zp, char *path, uint32_t flags, uint8_t *hash);
60
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);
64
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);
69
70 /* export hash to dest */
71 int zpm_extract(struct zpm *pkg, char *hash, char *path, int mode);
72
73 /* export path to dest */
74 int zpm_export(struct zpm *zp, char *path, uint32_t flags, char *dest);
75
76 int zpm_close(struct zpm *zp);
77
78 /* attach a signature to a package */
79 int zpm_sign(struct zpm *z, size_t s, void *signature);
80
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);
84
85 /* get file information */
86 int zpm_stat(struct zpm *z, struct zpm_file *f, int n);
87
88 /* will also set the package context to the new package */
89 int zpm_newpkg(struct zpm *z, char *base, char *version, int release);
90
91 /* transactions */
92 int zpm_begin(struct zpm *z);
93 int zpm_commit(struct zpm *z);
94 int zpm_rollback(struct zpm *z);
95
96 /* higher level operations */
97
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);
103
104 /* slurp up the actual blobs */
105 /* what about versioning them if they change */
106 int zpm_preserve(struct zpm *local);
107
108 /* check file integrity */
109 int zpm_checkinstall(struct zpm *local);
110
111 int zpm_merge(struct zpm *z, struct zpm *src, uint32_t flags);
112
113 void uncompresslzma(void *buf, size_t bufsize, FILE *out);
114 #define SQLERROR(x) fprintf(stderr, "%s %d: %s\n", __func__, __LINE__, (x))
115 #endif
116
117 static char *dupstr(char *s) {
118         size_t n;
119         char *d;
120
121         n = strlen(s);
122         d = malloc(n+1);
123         if (d) {
124                 d = strcpy(d, s);
125         }
126         return d;
127 }
128
129 #if 0
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 (?,?,?)";
132         int rc;
133         sqlite3_stmt *ifile;
134
135         rc = sqlite3_prepare(db, sql, -1, &ifile,0);
136         if (rc != SQLITE_OK) {
137                 SQLERROR(sqlite3_errmsg(db));
138                 return 0;
139         }
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");
144                 zpm_rollback(pkg);
145                 return 0;
146         }
147         sqlite3_bind_text(ifile, 2, version, strlen(version), SQLITE_STATIC);
148         sqlite3_bind_int(ifile, 3, release)
149
150         rc = sqlite3_step(ifile);
151
152         if (rc != SQLITE_DONE) {
153                 SQLERROR(sqlite3_errmsg(db));
154                 sqlite3_finalize(ifile);
155                 return 0;
156         }
157         sqlite3_finalize(ifile);
158         z->pkg = dupstr(base);
159         z->version = dupstr(version);
160         z->release = release;
161 }
162 #endif
163
164 int zpm_begin(struct zpm *z) {
165         char *errstr = 0;
166         sqlite3_exec(z->db, "begin;", NULL, NULL, &errstr);
167         if (errstr) {
168                 fprintf(stderr, "sqlite begin error: %s\n", errstr);
169                 sqlite3_free(errstr);
170                 return 0;
171         }
172         return 1;
173 }
174
175 int zpm_commit(struct zpm *z) {
176         char *errstr = 0;
177         sqlite3_exec(z->db, "commit;", NULL, NULL, &errstr);
178         if (errstr) {
179                 fprintf(stderr, "sqlite commit error: %s\n", errstr);
180                 sqlite3_free(errstr);
181                 return 0;
182         }
183         return 1;
184 }
185
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);
189 }
190
191 int zpm_rollback(struct zpm *z) {
192         char *errstr = 0;
193         sqlite3_exec(z->db, "rollback;", NULL, NULL, &errstr);
194         if (errstr) {
195                 fprintf(stderr, "sqlite rollback error: %s\n", errstr);
196                 sqlite3_free(errstr);
197                 return 0;
198         }
199         return 1;
200 }
201
202 int zpm_db_set_pragma(struct zpm *db, int pragma, int value) {
203         int rc;
204         char *sql;
205         sqlite3_stmt *s;
206
207         switch (pragma) {
208                 case 1: sql = "pragma application_id = ?;"; break;
209                 case 2: sql = "pragma user_version = ?;"; break;
210                 default: return -1; break;
211         }
212
213         rc = sqlite3_prepare_v2(db->db, sql, -1, &s, 0);
214
215         if (rc != SQLITE_OK) {
216                 SQLERROR(sqlite3_errmsg(db->db));
217                 return -1;
218         }
219
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");
224                 sqlite3_finalize(s);
225                 return -1;
226         }
227         rc = sqlite3_step(s);
228         if (rc != SQLITE_DONE) {
229                 SQLERROR(sqlite3_errmsg(db->db));
230                 fprintf(stderr, "cant set pragma\n");
231                 sqlite3_finalize(s);
232                 return -1;
233         }
234
235         sqlite3_finalize(s);
236         return value;
237 }
238
239 int zpm_db_pragma(struct zpm *db, int pragma) {
240         int rc;
241         int value = -1;
242         char *sql = 0;
243         sqlite3_stmt *s;
244
245         switch (pragma) {
246                 case 1: sql = "pragma application_id;"; break;
247                 case 2: sql = "pragma user_version;"; break;
248                 default: return -1; break;
249         }
250
251         rc = sqlite3_prepare_v2(db->db, sql, -1, &s, 0);
252
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? */
257                 return -1;
258         }
259
260         rc = sqlite3_step(s);
261         if (rc == SQLITE_ROW) {
262                 value = sqlite3_column_int(s, 0);
263         }
264
265         sqlite3_finalize(s);
266         return value;
267 }
268
269 static
270 #include "newdb.c"
271
272 int zpm_db_initialize(struct zpm *pkg) {
273         //fprintf(stderr, "initializing zpm database\n");
274         char *error;
275         switch (sqlite3_exec(pkg->db, createdb, (int (*)(void *,int,char **,char **))0, NULL, &error)) {
276                 case SQLITE_OK: break;
277                 default:
278                         SQLERROR(sqlite3_errmsg(pkg->db));
279                         fprintf(stderr, "error: %s\n", error);
280                         sqlite3_free(error);
281                         return 0;
282                         break;
283         }
284         return 1;
285 }
286
287 /* NULL?  Create? */
288 int zpm_open(struct zpm *pkg, char *path) {
289         int rc;
290         char *errstr = 0;
291         sqlite3 *db = 0;
292         int appid, dbver;
293
294         pkg->db = 0;
295         pkg->path = 0;
296         pkg->version = 0;
297         pkg->release = 0;
298         pkg->pkgname = 0;
299         pkg->installed = 0;
300
301         rc = sqlite3_open(path, &db);
302         if (rc) {
303                 SQLERROR(sqlite3_errmsg(db));
304                 sqlite3_close(db);
305                 return 0;
306         }
307         pkg->db   = db;
308         pkg->path = dupstr(path);
309
310         appid = zpm_db_pragma(pkg, 1);
311         dbver = zpm_db_pragma(pkg, 2);
312
313         //fprintf(stderr, "db appid = %x, dbver = %d\n", appid, dbver);
314         switch (appid) {
315                 case 0: if (!zpm_db_initialize(pkg)) {
316                                 sqlite3_close(db);
317                                 return 1;
318                         };
319                         break;
320                 case 0x5a504442: break;
321                 default:
322                         fprintf(stderr, "unknown database type\n");
323                         sqlite3_close(db);
324                         return 0;
325                         break;
326         }
327         if (dbver > 1) {
328                 fprintf(stderr, "version %d zpm db detected, this program only works with version 1 databases\n", dbver);
329                         sqlite3_close(db);
330                         return 0;
331         }
332
333         sqlite3_exec(pkg->db, "pragma foreign_keys = ON;", NULL, NULL, &errstr);
334         if (errstr) {
335                 fprintf(stderr, "sqlite foreign key error: %s\n", errstr);
336                 sqlite3_free(errstr);
337                 sqlite3_close(db);
338                 return 0;
339         }
340
341
342         /* TODO if this is a new database, create structures */
343
344         /* get a package. what if more than one? what if none? */
345         return 1;
346 }
347
348 int zpm_close(struct zpm *pkg) {
349         if (pkg) {
350                 sqlite3_close(pkg->db);
351                 free(pkg->path);
352         }
353         /* TODO free any malloced names and such */
354         return 1;
355 }
356
357 static int zpm_sqlite_vercmp(void *not_used, int lena, const void *a,
358                 int lenb, const void *b) {
359         /* not sure what the ints are, possibly string lengths */
360         if (not_used != 0) fprintf(stderr, "sqlite vercmp not_used = %p\n",
361                         not_used);
362         if (lena == 0 && lenb > 0) return 1;
363         return zpm_vercmp(a, b);
364 }
365
366 int zpm_addvercmp(struct zpm *pkg) {
367         return sqlite3_create_collation(
368                         pkg->db, "vercmp", SQLITE_UTF8, NULL,
369                         zpm_sqlite_vercmp
370                         );
371 }
372
373 /* set package struct variables, database, environment, then command line */
374 int zpm_readopts(struct zpm *pkg, int ac, char **av) {
375         char *ev;
376
377         if (!pkg) {
378                 return -1;
379         }
380
381         ev = getenv("ZPMPACKAGE");
382         if (ev) {
383                 pkg->pkgname = dupstr(ev);
384         }
385         ev = getenv("ZPMPKGREL");
386         if (ev) {
387                 pkg->release = strtol(ev, 0, 0);
388         }
389         ev = getenv("ZPMPKGVER");
390         if (ev) {
391                 pkg->version = dupstr(ev);
392         }
393
394         /* now, parse the options, return optind so the caller can adjust if needed */
395
396         return av ? ac : 1;
397 }
398
399 int zpm_extract(struct zpm *pkg, char *hash, char *path, int mode) {
400         int rc;
401
402         int blobsize;
403         //int64_t size;
404         void *xzdata;
405         int type;
406         FILE *out;
407         sqlite3_stmt *ifile;
408
409         /* TODO check null */
410         sqlite3 *db = pkg->db;
411
412         rc = sqlite3_prepare(db, "select size, content from files where hash = ?", -1, &ifile,0);
413         if (rc != SQLITE_OK) {
414                 SQLERROR(sqlite3_errmsg(db));
415                 return 0;
416         }
417
418         /* hash, filename */
419
420         sqlite3_bind_text(ifile, 1, hash, 64, SQLITE_STATIC);
421
422         rc = sqlite3_step(ifile);
423
424         if (rc == SQLITE_DONE) {
425                 /* didn't find a row */
426                 sqlite3_finalize(ifile);
427                 sqlite3_close(db);
428                 fprintf(stderr, "no such hash: %s\n", hash);
429                 return 0;
430         }
431         /* either way we're done with this now */
432
433         if (rc != SQLITE_ROW) {
434                 SQLERROR(sqlite3_errmsg(db));
435                 sqlite3_finalize(ifile);
436                 sqlite3_close(db);
437                 return 0;
438         }
439
440         type = sqlite3_column_type(ifile, 0);
441         if (type == SQLITE_NULL) {
442                 fprintf(stderr, "no file size\n");
443                 sqlite3_finalize(ifile);
444                 sqlite3_close(db);
445                 return 0;
446         }
447         type = sqlite3_column_type(ifile, 1);
448         if (type == SQLITE_NULL) {
449                 fprintf(stderr, "no file data\n");
450                 sqlite3_finalize(ifile);
451                 sqlite3_close(db);
452                 return 0;
453         }
454         //size = sqlite3_column_int64(ifile, 0);
455         xzdata = (void *)sqlite3_column_blob(ifile, 1);
456         blobsize = sqlite3_column_bytes(ifile, 1);
457
458         if (strcmp(path, "-")) {
459                 out = fopen(path, "w");
460         } else {
461                 out = stdout;
462         }
463         if (!out) {
464                 fprintf(stderr, "can't open output file %s\n", path);
465                 sqlite3_finalize(ifile);
466                 sqlite3_close(db);
467                 return 0;
468         }
469         //fwrite(xzdata, blobsize, 1, stdout);
470
471         //fprintf(stderr, "uncompressing %d bytes at %p, expect %lld\n", blobsize, xzdata, (long long int)size);
472         uncompresslzma(xzdata, blobsize, out);
473         fclose(out);
474         chmod(path, mode);
475
476         sqlite3_finalize(ifile);
477
478         return 1;
479 }
480
481 static sqlite3_stmt *run_for_hash(sqlite3 *db, char *sql, char *hash) {
482         int rc;
483         sqlite3_stmt *ifile;
484
485         rc = sqlite3_prepare_v2(db, sql, -1, &ifile, 0);
486         if (rc != SQLITE_OK) {
487                 SQLERROR(sqlite3_errmsg(db));
488                 return 0;
489         }
490
491         /* hash, filename */
492
493         sqlite3_bind_text(ifile, 1, hash, 64, SQLITE_STATIC);
494
495         return ifile;
496 }
497
498 static int set_elf_info(sqlite3 *db, char *hash, char *content, size_t length) {
499         if (length >= sizeof (Elf64_Ehdr) && libelf_iself(content)) {
500                 char *strtab;
501                 Elf64_Dyn *dyn;
502                 int i;
503                 Elf64_Phdr *phdr;
504                 Elf64_Ehdr *hdr;
505                 sqlite3_stmt *ifile;
506                 int rc;
507
508                 /* go ahead and set up elf information now */
509                 /* clear existing for this hash */
510                 ifile = run_for_hash(db, "delete from elfinfo where file = ?", hash);
511                 do {
512                         rc = sqlite3_step(ifile);
513 #if 0
514                         if (rc == SQLITE_ROW) {
515                                 int nc;
516                                 fprintf(stderr, "delete row has %d columns: ", sqlite3_column_count(ifile));
517                                 nc = sqlite3_column_count(ifile);
518                                 for (i = 0; i < nc; i++) {
519                                         char *r;
520                                         r = sqlite3_column_text(ifile, i);
521                                         fprintf(stderr, ", %s", r);
522                                 }
523                                 fprintf(stderr, "\n");
524                         }
525 #endif
526                 } while (rc == SQLITE_ROW);
527                 if (rc != SQLITE_DONE) {
528                         SQLERROR(sqlite3_errmsg(db));
529                         sqlite3_finalize(ifile);
530                         fprintf(stderr, "error clearing elf info: %d\n", rc);
531                         return 0;
532                 }
533                 sqlite3_finalize(ifile);
534                 ifile = run_for_hash(db, "delete from elflibraries where file = ?", hash);
535                 do {
536                         rc = sqlite3_step(ifile);
537                 } while (rc == SQLITE_ROW);
538                 if (rc != SQLITE_DONE) {
539                         SQLERROR(sqlite3_errmsg(db));
540                         sqlite3_finalize(ifile);
541                         fprintf(stderr, "error clearing elf library: %d\n", rc);
542                         return 0;
543                 }
544                 sqlite3_finalize(ifile);
545                 ifile = run_for_hash(db, "delete from elfneeded where file = ?", hash);
546                 do {
547                         rc = sqlite3_step(ifile);
548                 } while (rc == SQLITE_ROW);
549                 if (rc != SQLITE_DONE) {
550                         SQLERROR(sqlite3_errmsg(db));
551                         sqlite3_finalize(ifile);
552                         fprintf(stderr, "error clearing elf needed\n");
553                         return 0;
554                 }
555                 sqlite3_finalize(ifile);
556
557                 hdr = libelf_header(content);
558                 /* if lib, set soname */
559                 if (libelf_type(content) == ET_DYN) {
560                         char *soname = libelf_soname(content);
561                         if (soname) {
562
563                                 sqlite3_prepare_v2(db, "insert into elflibraries (file,soname) values (?,?)",-1, &ifile, 0);
564                                 sqlite3_bind_text(ifile,1,hash,64,SQLITE_STATIC);
565                                 sqlite3_bind_text(ifile,2,soname,-1,SQLITE_STATIC);
566                                 rc = sqlite3_step(ifile);
567                                 if (rc != SQLITE_DONE) {
568                                         SQLERROR(sqlite3_errmsg(db));
569                                         sqlite3_finalize(ifile);
570                                         fprintf(stderr, "error setting library soname\n");
571                                         return 0;
572                                 }
573                                 sqlite3_finalize(ifile);
574                         } else {
575                                 fprintf(stderr, "can't find soname\n");
576                         }
577                 }
578
579                 /* if exe, set neededs */
580                 if (libelf_type(content) == ET_EXEC) {
581                         Elf64_Shdr *dsect;
582                         char *elf;
583
584                         elf = (char *)content;
585                         /* find program header table */
586                         for (i = 0; i < hdr->e_phnum; i++) {
587                                 phdr = (Elf64_Phdr *)(elf + hdr->e_phoff + i * hdr->e_phentsize);
588                                 if (phdr->p_type == PT_DYNAMIC) {
589                                         dsect = (Elf64_Shdr *)(elf + phdr->p_offset);
590                                 }
591                         }
592                         dyn = (Elf64_Dyn *)(elf + dsect->sh_offset);
593                         if (!dyn) {
594                                 exit(9);
595                         }
596                         dyn = (Elf64_Dyn *)dsect;
597
598                         dsect = libelf_section(elf, SHT_DYNAMIC);
599                         Elf64_Shdr *strsect;
600
601                         strsect = libelf_section_n(elf, dsect->sh_link);
602                         strtab = elf + strsect->sh_offset;
603
604                         sqlite3_prepare_v2(db, "insert into elfneeded (file,needed) values (?,?)",-1, &ifile, 0);
605                         sqlite3_bind_text(ifile,1,hash,64,SQLITE_STATIC);
606                         while (dyn->d_tag != DT_NULL) {
607                                 if (dyn->d_tag == DT_NEEDED) {
608                                         char *need;
609                                         int rc;
610
611                                         need = strtab + dyn->d_un.d_val;
612                                         if (strlen(need) == 0) continue;
613                                         sqlite3_bind_text(ifile,2,need,strlen(need),SQLITE_STATIC);
614                                         fprintf(stderr, "%s needs %s\n", hash, need);
615                                         rc = sqlite3_step(ifile);
616                                         if (rc != SQLITE_DONE) {
617                                                 SQLERROR(sqlite3_errmsg(db));
618                                                 sqlite3_finalize(ifile);
619                                                 fprintf(stderr, "error setting needed library\n");
620                                                 return 0;
621                                         }
622                                         sqlite3_reset(ifile);
623                                 }
624                                 dyn++;
625                         }
626                         sqlite3_finalize(ifile);
627                 }
628         }
629         return 1;
630 }
631
632 #if 1
633 int zpm_import(struct zpm *pkg, char *path, uint32_t flags, char *hash) {
634         int fd;
635         void *content;
636         struct stat sbuf;
637         unsigned char tmp[32];
638         struct sha256_state md;
639         sqlite3_stmt *ifile;
640         int haverow = 0,havedata = 0;
641         int j,rc,type;
642         char hashbuf[65];
643
644         /* xz compress it */
645         size_t outlen = 0;
646         void *outbuf;
647
648         if (!pkg || !pkg->db || !path) {
649                 return 0;
650         }
651
652         /* use local if caller didn't pass in room */
653         if (!hash) {
654                 hash = hashbuf;
655         }
656
657         if (flags) {
658                 fprintf(stderr, "zpm_import unused flags = %d\n", flags);
659         }
660         /* mmap the file */
661         fd = open(path, O_RDONLY);
662         if (fd == -1) {
663                 pkg->error = errno;
664                 fprintf(stderr, "%s can't open %s: %s\n", __FUNCTION__, path,strerror(errno));
665                 return 0;
666         }
667         if (fstat(fd, &sbuf) == -1) {
668                 pkg->error = errno;
669                 fprintf(stderr, "%s can't fstat %s: %s\n", __FUNCTION__, path,strerror(errno));
670                 return 0;
671         }
672         /* not a regular file? */
673         if (!S_ISREG(sbuf.st_mode)) {
674                 char *ftype;
675                 switch (sbuf.st_mode & S_IFMT) {
676                         case S_IFSOCK: ftype = "socket"; break;
677                         case S_IFLNK : ftype = "symlink"; break;
678                         case S_IFBLK : ftype = "block device"; break;
679                         case S_IFDIR : ftype = "directory"; break;
680                         case S_IFCHR : ftype = "character device"; break;
681                         case S_IFIFO : ftype = "fifo"; break;
682                         default: ftype = "unknown file type"; break;
683                 }
684                 /* TODO this is ok, just stored differently */
685                 fprintf(stderr, "%s can't import %s file: %s\n", __FUNCTION__, ftype, path);
686                 pkg->error = EINVAL;
687                 return 0;
688         }
689
690         content = mmap(0, sbuf.st_size, PROT_READ,MAP_PRIVATE, fd, 0);
691         close(fd);
692         if (!content) {
693                 pkg->error = errno;
694                 fprintf(stderr, "%s can't mmap %s: %s\n", __FUNCTION__, path,strerror(errno));
695                 return 0;
696         }
697
698         /* get hash */
699         sha256_init(&md);
700         sha256_process(&md, content, sbuf.st_size);
701         sha256_done(&md, tmp);
702         for (j=0;j<32;j++) {
703                 sprintf(hash+j*2, "%02x", (unsigned)tmp[j]);
704         }
705         hash[64] = 0;
706         //fprintf(stderr, "file %s: %s\n", path, hash);
707
708         /* TODO check null */
709         sqlite3 *db = pkg->db;
710
711         /* prepare and bind */
712
713         rc = sqlite3_prepare_v2(db, "select size, content is not null from files where hash = ?", -1, &ifile,0);
714         if (rc != SQLITE_OK) {
715                 SQLERROR(sqlite3_errmsg(db));
716                 munmap(content, sbuf.st_size);
717                 return 0;
718         }
719
720         /* hash, filename */
721
722         sqlite3_bind_text(ifile, 1, hash, 64, SQLITE_STATIC);
723
724         rc = sqlite3_step(ifile);
725
726         if (rc != SQLITE_DONE) {
727                 if (rc != SQLITE_ROW) {
728                         /* didn't find a row */
729                         SQLERROR(sqlite3_errmsg(db));
730                         zpm_rollback(pkg);
731                 munmap(content, sbuf.st_size);
732                         return 0;
733                 }
734                 haverow = 1;
735 //              fprintf(stderr, "have row for hash\n");
736                 type = sqlite3_column_type(ifile, 0);
737                 if (type == SQLITE_NULL) {
738                         /* TODO assert, this shouldn't be possible? */
739                         fprintf(stderr, "no file size\n");
740                         sqlite3_finalize(ifile);
741                 munmap(content, sbuf.st_size);
742                         return 0;
743                 }
744                 type = sqlite3_column_type(ifile, 1);
745                 if (type == SQLITE_NULL) {
746                         /* TODO assert, this shouldn't be possible? */
747                         fprintf(stderr, "no file data\n");
748                         sqlite3_finalize(ifile);
749                 munmap(content, sbuf.st_size);
750                         return 0;
751                         /* which is fine, just need to update the row then */
752                 }
753                 havedata = sqlite3_column_int(ifile, 1);
754         }
755
756         sqlite3_finalize(ifile);
757
758         if (!havedata) {
759                 /* compress */
760                 outbuf = compresslzma(content, sbuf.st_size, &outlen);
761                 if (!outbuf) {
762                         fprintf(stderr, "compresslzma failed\n");
763                 munmap(content, sbuf.st_size);
764                         return 0;
765                 }
766                 //fprintf(stderr, "compressed to %zu\n", outlen);
767
768                 /* start a transaction */
769                 // do that outside of here 
770                 //zpm_begin(pkg);
771
772                 /* insert */
773                 if (haverow) {
774                         //fprintf(stderr, "adding file data\n");
775                         rc = sqlite3_prepare(db, "update files set size = ?, content = ? where hash = ?", -1, &ifile,0);
776                 } else {
777                         //fprintf(stderr, "creating new data row\n");
778                         rc = sqlite3_prepare(db, "insert into files (size, content, hash) values (?,?,?)", -1, &ifile,0);
779                 }
780                 if (rc != SQLITE_OK) {
781                         SQLERROR(sqlite3_errmsg(db));
782                         fprintf(stderr, "cant prepare data\n");
783                         zpm_rollback(pkg);
784                 munmap(content, sbuf.st_size);
785                         return 0;
786                 }
787
788                 sqlite3_bind_int64(ifile, 1, (sqlite3_int64)sbuf.st_size);
789                 if (rc != SQLITE_OK) {
790                         SQLERROR(sqlite3_errmsg(db));
791                         fprintf(stderr, "cant bind size\n");
792                         zpm_rollback(pkg);
793                 munmap(content, sbuf.st_size);
794                         return 0;
795                 }
796                 sqlite3_bind_blob64(ifile, 2, outbuf, (sqlite3_int64)outlen, SQLITE_STATIC);
797                 if (rc != SQLITE_OK) {
798                         SQLERROR(sqlite3_errmsg(db));
799                         fprintf(stderr, "cant bind content\n");
800                         zpm_rollback(pkg);
801                 munmap(content, sbuf.st_size);
802                         return 0;
803                 }
804                 sqlite3_bind_text(ifile, 3, hash, 64, SQLITE_STATIC);
805                 if (rc != SQLITE_OK) {
806                         SQLERROR(sqlite3_errmsg(db));
807                         fprintf(stderr, "cant bind hash\n");
808                         zpm_rollback(pkg);
809                 munmap(content, sbuf.st_size);
810                         return 0;
811                 }
812                 rc = sqlite3_step(ifile);
813                 if (rc != SQLITE_DONE) {
814                         SQLERROR(sqlite3_errmsg(db));
815                         sqlite3_finalize(ifile);
816                         zpm_rollback(pkg);
817                 munmap(content, sbuf.st_size);
818                         return 0;
819                 }
820                 sqlite3_finalize(ifile);
821
822                 /* commit */
823                 //zpm_commit(pkg);
824
825                 /* don't need the original file now */
826
827         }
828
829         if (!set_elf_info(pkg->db, hash, content, sbuf.st_size)) {
830                 fprintf(stderr, "setting elf info failed\n");
831                 munmap(content, sbuf.st_size);
832                 return 0;
833         }
834
835         munmap(content, sbuf.st_size);
836
837         /* if package and not nopackage flag, add to package */
838         if (pkg->pkgname && (!ZPM_NOPACKAGE)) {
839                 /* TODO */
840         }
841
842         /* return */
843         return 1;
844 }
845 #endif
846
847 #if 0
848 int main(int ac, char **av){
849         sqlite3 *db = 0;
850         int rc;
851
852         int blobsize;
853         int64_t size;
854         void *xzdata;
855         int type;
856         FILE *out;
857         sqlite3_stmt *ifile;
858
859         char *hash;
860         char *filename;
861
862         if (ac < 3) {
863                 fprintf(stderr, "usage: db hash file\n");
864                 return 1;
865         }
866
867         rc = sqlite3_open(av[1], &db);
868         if (rc) {
869                 SQLERROR(sqlite3_errmsg(db));
870                 sqlite3_close(db);
871                 return 1;
872         }
873
874 }
875 #endif
876
877 #if 0
878 Packages are sqlite databases
879
880 get application id and userver
881
882 Primitive operations:
883
884 add path to repo
885 associate path with package
886 associate blob with path?
887 add blob to repo
888 * extract blob to a path
889 compare blob to filesystem path
890 create package with info
891
892 Extra primitives:
893
894 record elf information about blob
895 compress blob
896 uncompress blob
897 sign a package?  What are we verifying?
898 #endif