2 * Dolda Connect - Modular multiuser Direct Connect-style client
3 * Copyright (C) 2004 Fredrik Tolf (fredrik@dolda2000.com)
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
41 #include "sysevents.h"
45 struct scanstate *next;
46 struct sharecache *node;
52 struct scanqueue *next;
53 struct scanstate *state;
56 static int conf_share(int argc, wchar_t **argv);
57 static void freecache(struct sharecache *node);
58 static void checkhashes(void);
60 static struct configvar myvars[] =
62 {CONF_VAR_STRING, "defnick", {.str = L"DoldaConnect user"}},
63 {CONF_VAR_INT, "scanfilemask", {.num = 0004}},
64 {CONF_VAR_INT, "scandirmask", {.num = 0005}},
65 {CONF_VAR_STRING, "hashcache", {.str = L"dc-hashcache"}},
69 static struct configcmd mycmds[] =
71 {"share", conf_share},
75 static struct scanstate *scanjob = NULL;
76 static struct scanqueue *scanqueue = NULL;
77 static struct sharepoint *shares = NULL;
78 static struct hashcache *hashcache = NULL;
79 static pid_t hashjob = 0;
80 struct sharecache *shareroot = NULL;
81 unsigned long long sharesize = 0;
82 GCBCHAIN(sharechangecb, unsigned long long);
84 static int conf_share(int argc, wchar_t **argv)
86 struct sharepoint *share;
91 flog(LOG_WARNING, "not enough arguments given for share command");
94 if((b = icwcstombs(argv[2], NULL)) == NULL)
96 flog(LOG_WARNING, "could not convert wcs path (%ls) to current locale's charset: %s", argv[2], strerror(errno));
99 for(share = shares; share != NULL; share = share->next)
101 if(!strcmp(share->path, b) && !wcscmp(share->name, argv[1]))
108 share = smalloc(sizeof(*share));
111 share->name = swcsdup(argv[1]);
112 share->next = shares;
115 shares->prev = share;
120 static void dumpsharecache(struct sharecache *node, int l)
124 for(; node != NULL; node = node->next)
126 for(i = 0; i < l; i++)
128 printf("%ls\n", node->name);
129 if(node->f.b.type == FILE_DIR)
130 dumpsharecache(node->child, l + 1);
134 struct hash *newhash(wchar_t *algo, size_t len, char *buf)
138 ret = smalloc(sizeof(*ret));
139 memset(ret, 0, sizeof(*ret));
140 ret->algo = swcsdup(algo);
142 ret->buf = memcpy(smalloc(len), buf, len);
146 void freehash(struct hash *hash)
153 struct hash *duphash(struct hash *hash)
155 return(newhash(hash->algo, hash->len, hash->buf));
158 struct hash *parsehash(wchar_t *text)
161 char *mbsbuf, *decbuf;
165 if((p = wcschr(text, L':')) == NULL)
168 if((mbsbuf = icwcstombs(p, "US-ASCII")) == NULL)
170 decbuf = base64decode(mbsbuf, &buflen);
174 ret = newhash(text, buflen, decbuf);
179 wchar_t *unparsehash(struct hash *hash)
181 static wchar_t *buf = NULL;
184 size_t bufsize, bufdata;
189 bufsize = bufdata = 0;
190 hbuf = base64encode(hash->buf, hash->len);
191 if((whbuf = icmbstowcs(hbuf, "US-ASCII")) == NULL)
193 flog(LOG_CRIT, "bug! could not convert base64 from us-ascii: %s", strerror(errno));
197 bufcat(buf, hash->algo, wcslen(hash->algo));
199 bufcat(buf, whbuf, wcslen(whbuf));
204 int hashcmp(struct hash *h1, struct hash *h2)
206 if(wcscmp(h1->algo, h2->algo))
208 if(h1->len != h2->len)
210 if(memcmp(h1->buf, h2->buf, h1->len))
215 static struct hashcache *newhashcache(void)
217 struct hashcache *new;
219 new = smalloc(sizeof(*new));
220 memset(new, 0, sizeof(*new));
221 new->next = hashcache;
223 if(hashcache != NULL)
224 hashcache->prev = new;
229 static void freehashcache(struct hashcache *hc)
232 hc->next->prev = hc->prev;
234 hc->prev->next = hc->next;
236 hashcache = hc->next;
240 static char *findhashcachefile(int filldef)
242 static char ret[128];
245 if(getenv("HOME") != NULL)
247 snprintf(ret, sizeof(ret), "%s/.dc-hashcache", getenv("HOME"));
248 if(!access(ret, R_OK))
251 if((hcname = icswcstombs(confgetstr("cli", "hashcache"), NULL, NULL)) == NULL)
253 flog(LOG_WARNING, "could not convert hash cache name into local charset: %s", strerror(errno));
256 if(strchr(hcname, '/') != NULL)
258 if(!access(hcname, R_OK))
264 snprintf(ret, sizeof(ret), "/etc/%s", hcname);
265 if(!access(ret, R_OK))
267 snprintf(ret, sizeof(ret), "/usr/etc/%s", hcname);
268 if(!access(ret, R_OK))
270 snprintf(ret, sizeof(ret), "/usr/local/etc/%s", hcname);
271 if(!access(ret, R_OK))
276 if(getenv("HOME") != NULL)
277 snprintf(ret, sizeof(ret), "%s/.dc-hashcache", getenv("HOME"));
279 snprintf(ret, sizeof(ret), "/etc/%s", hcname);
286 static struct hashcache *findhashcache(dev_t dev, ino_t inode)
288 struct hashcache *hc;
290 for(hc = hashcache; hc != NULL; hc = hc->next)
292 if((hc->dev == dev) && (hc->inode == inode))
298 static void readhashcache(void)
304 char *p, *p2, *wv[32], *hash;
305 struct hashcache *hc;
308 if((hcname = findhashcachefile(0)) == NULL)
310 if((stream = fopen(hcname, "r")) == NULL)
312 flog(LOG_WARNING, "could not open hash cache %s: %s", hcname, strerror(errno));
315 while(hashcache != NULL)
316 freehashcache(hashcache);
320 fgets(linebuf, sizeof(linebuf), stream);
322 for(p = linebuf; *p; p++)
327 if(linebuf[0] == '#')
329 for(wc = 0, p = linebuf; (wc < 32) && ((p2 = strchr(p, ' ')) != NULL); p = p2 + 1)
339 hc->dev = strtoll(wv[0], NULL, 10);
340 hc->inode = strtoll(wv[1], NULL, 10);
341 hc->mtime = strtoll(wv[2], NULL, 10);
342 for(i = 3; i < wc; i++)
344 if(!strcmp(wv[i], "tth"))
348 hash = base64decode(wv[i], &len);
354 memcpy(hc->tth, hash, 24);
362 static void writehashcache(void)
367 struct hashcache *hc;
369 hcname = findhashcachefile(1);
370 if((stream = fopen(hcname, "w")) == NULL)
372 flog(LOG_WARNING, "could not write hash cache %s: %s", hcname, strerror(errno));
375 fprintf(stream, "# Dolda Connect hash cache file\n");
376 fprintf(stream, "# Generated automatically, do not edit\n");
377 fprintf(stream, "# Format: DEVICE INODE MTIME [HASH...]\n");
378 fprintf(stream, "# HASH := HASHTYPE HASHVAL\n");
379 fprintf(stream, "# HASHTYPE can currently only be `tth'\n");
380 for(hc = hashcache; hc != NULL; hc = hc->next)
382 buf = base64encode(hc->tth, 24);
383 fprintf(stream, "%lli %lli %li tth %s\n", hc->dev, (long long)hc->inode, hc->mtime, buf);
389 static void hashread(struct socket *sk, void *uudata)
391 static char *hashbuf;
392 static size_t hashbufsize = 0, hashbufdata = 0;
393 char *buf, *p, *p2, *lp;
400 struct hashcache *hc;
402 if((buf = sockgetinbuf(sk, &bufsize)) == NULL)
404 bufcat(hashbuf, buf, bufsize);
406 while((lp = memchr(hashbuf, '\n', hashbufdata)) != NULL)
413 while((p2 = strchr(p, ' ')) == p)
426 flog(LOG_ERR, "BUG: unexpected number of words (%i) arrived from hashing process", wc);
428 dev = strtoll(wv[0], NULL, 10);
429 inode = strtoll(wv[1], NULL, 10);
430 mtime = strtol(wv[2], NULL, 10);
431 if((hc = findhashcache(dev, inode)) == NULL)
438 buf = base64decode(wv[3], NULL);
439 memcpy(hc->tth, buf, 24);
443 memmove(hashbuf, lp, hashbufdata -= (lp - hashbuf));
447 static void hashexit(pid_t pid, int status, void *uudata)
450 flog(LOG_ERR, "BUG: hashing process changed PID?! old: %i new %i", hashjob, pid);
452 flog(LOG_WARNING, "hashing process exited with non-zero status: %i", status);
457 static int hashfile(char *path)
464 struct tigertreehash tth;
466 struct socket *outsock;
468 if((fd = open(path, O_RDONLY)) < 0)
470 flog(LOG_WARNING, "could not open %s for hashing: %s", path, strerror(errno));
473 if(fstat(fd, &sb) < 0)
475 flog(LOG_WARNING, "could not stat %s while hashing: %s", path, strerror(errno));
481 flog(LOG_WARNING, "could not create pipe(!): %s", strerror(errno));
488 flog(LOG_WARNING, "could not fork(!) hashing process: %s", strerror(errno));
497 signal(SIGHUP, SIG_DFL);
499 pfd[1] = dup2(pfd[1], 3);
502 for(i = 3; i < FD_SETSIZE; i++)
506 while((ret = read(0, buf, 4096)) > 0)
507 dotigertree(&tth, buf, ret);
510 flog(LOG_WARNING, "could not read from %s while hashing: %s", path, strerror(errno));
514 restigertree(&tth, digest);
515 ret = snprintf(buf, sizeof(buf), "%lli %lli %li %s\n", sb.st_dev, (long long)sb.st_ino, sb.st_mtime, base64encode(digest, 24));
521 outsock = wrapsock(pfd[0]);
522 outsock->readcb = hashread;
523 childcallback(hashjob, hashexit, NULL);
528 * Call only when hashjob == 0
530 static void checkhashes(void)
532 struct sharecache *node;
533 struct hashcache *hc;
536 node = shareroot->child;
539 if(node->child != NULL)
544 if(!node->f.b.hastth)
546 if((hc = findhashcache(node->dev, node->inode)) != NULL)
548 memcpy(node->hashtth, hc->tth, 24);
549 node->f.b.hastth = 1;
550 GCBCHAINDOCB(sharechangecb, sharesize);
552 path = getfspath(node);
555 flog(LOG_WARNING, "could not hash %s, unsharing it", path);
562 while(node->next == NULL)
564 if((node = node->parent) == shareroot)
567 if(node == shareroot)
573 struct sharecache *nextscnode(struct sharecache *node)
575 if(node->child != NULL)
577 while(node->next == NULL)
580 if(node == shareroot)
586 static void freescan(struct scanstate *job)
593 /* No need for optimization; lookup isn't really that common */
594 struct sharecache *findcache(struct sharecache *parent, wchar_t *name)
596 struct sharecache *node;
598 for(node = parent->child; node != NULL; node = node->next)
600 if(!wcscmp(node->name, name))
606 static void attachcache(struct sharecache *parent, struct sharecache *node)
608 node->parent = parent;
609 node->next = parent->child;
610 if(parent->child != NULL)
611 parent->child->prev = node;
612 parent->child = node;
615 static void detachcache(struct sharecache *node)
617 if(node->next != NULL)
618 node->next->prev = node->prev;
619 if(node->prev != NULL)
620 node->prev->next = node->next;
621 if((node->parent != NULL) && (node->parent->child == node))
622 node->parent->child = node->next;
628 static void freecache(struct sharecache *node)
630 struct sharecache *cur, *next;
631 struct scanqueue *q, *nq, **fq;
635 for(q = scanqueue; q != NULL; q = nq)
638 if(q->state->node == node)
640 flog(LOG_DEBUG, "freed node %ls cancelled queued scan", node->name);
648 if(node->child != NULL)
650 for(cur = node->child; cur != NULL; cur = next)
656 CBCHAINDOCB(node, share_delete, node);
657 CBCHAINFREE(node, share_delete);
658 sharesize -= node->size;
659 if(node->path != NULL)
661 if(node->name != NULL)
666 static void freesharepoint(struct sharepoint *share)
668 struct sharecache *node;
670 if(share->next != NULL)
671 share->next->prev = share->prev;
672 if(share->prev != NULL)
673 share->prev->next = share->next;
675 shares = share->next;
676 if((node = findcache(shareroot, share->name)) != NULL)
683 static struct sharecache *newcache(void)
685 struct sharecache *new;
687 new = smalloc(sizeof(*new));
688 memset(new, 0, sizeof(*new));
689 CBCHAININIT(new, share_delete);
693 char *getfspath(struct sharecache *node)
698 buf = smalloc(bufsize = 64);
702 if(node->path != NULL)
704 if(bufsize < strlen(node->path) + strlen(buf) + 1)
705 buf = srealloc(buf, strlen(node->path) + strlen(buf) + 1);
706 memmove(buf + strlen(node->path), buf, strlen(buf) + 1);
707 memcpy(buf, node->path, strlen(node->path));
710 if((mbsname = icwcstombs(node->name, NULL)) == NULL)
712 flog(LOG_WARNING, "could not map unicode share name (%ls) into filesystem charset: %s", node->name, strerror(errno));
716 while(bufsize < strlen(mbsname) + 1 + strlen(buf) + 1)
717 buf = srealloc(buf, bufsize *= 2);
718 memmove(buf + strlen(mbsname) + 1, buf, strlen(buf) + 1);
719 memcpy(buf + 1, mbsname, strlen(mbsname));
724 buf = srealloc(buf, strlen(buf) + 1);
728 static int checknode(struct sharecache *node)
733 if(node->parent == NULL)
737 if(!checknode(node->parent))
739 path = getfspath(node);
740 if(stat(path, &sb) < 0)
742 flog(LOG_INFO, "%s was found to be broken (%s); scheduling rescan of parent", path, strerror(errno));
743 queuescan(node->parent);
751 int opensharecache(struct sharecache *node)
756 path = getfspath(node);
757 fd = open(path, O_RDONLY);
761 flog(LOG_WARNING, "could not open %s: %s", path, strerror(errbak));
769 static struct scanstate *newscan(struct sharecache *node)
771 struct scanstate *new;
773 new = smalloc(sizeof(*new));
780 void queuescan(struct sharecache *node)
782 struct scanqueue *new;
784 new = smalloc(sizeof(*new));
785 new->state = newscan(node);
786 new->next = scanqueue;
790 /* For internal use in doscan() */
791 static void removestale(struct sharecache *node)
793 struct sharecache *cur, *next;
795 for(cur = node->child; cur != NULL; cur = next)
803 /* For internal use in doscan() */
804 static void jobdone(void)
806 struct scanstate *jbuf;
809 scanjob = jbuf->next;
812 fchdir(dirfd(scanjob->dd));
815 int doscan(int quantum)
820 struct sharecache *n;
821 struct scanstate *jbuf;
822 struct scanqueue *qbuf;
825 struct hashcache *hc;
827 static int busybefore = 0;
829 dmask = confgetint("cli", "scandirmask");
830 fmask = confgetint("cli", "scanfilemask");
831 if((scanjob != NULL) && (scanjob->dd != NULL))
833 while(fchdir(dirfd(scanjob->dd)) < 0)
835 flog(LOG_WARNING, "could not fchdir to fd %i: %s", dirfd(scanjob->dd), strerror(errno));
836 removestale(scanjob->node);
846 while(scanjob == NULL)
848 if(scanqueue == NULL)
852 flog(LOG_INFO, "sharing %lli bytes", sharesize);
854 GCBCHAINDOCB(sharechangecb, sharesize);
861 scanjob = scanqueue->state;
863 scanqueue = qbuf->next;
865 for(n = scanjob->node->child; n != NULL; n = n->next)
869 if(scanjob->dd == NULL)
871 path = getfspath(scanjob->node);
872 if((scanjob->dd = opendir(path)) == NULL)
874 flog(LOG_WARNING, "cannot open directory %s for scanning: %s, deleting from share", path, strerror(errno));
875 freecache(scanjob->node);
881 if(fchdir(dirfd(scanjob->dd)) < 0)
883 flog(LOG_WARNING, "could not fchdir to fd %i: %s", dirfd(scanjob->dd), strerror(errno));
888 if((de = readdir(scanjob->dd)) == NULL)
890 removestale(scanjob->node);
894 if(*de->d_name == '.')
896 if((wcs = icmbstowcs(de->d_name, NULL)) == NULL)
898 flog(LOG_WARNING, "file name %s has cannot be converted to wchar: %s", de->d_name, strerror(errno));
901 n = findcache(scanjob->node, wcs);
902 if(stat(de->d_name, &sb) < 0)
907 flog(LOG_WARNING, "could not stat %s: %s, deleting from share", de->d_name, strerror(errno));
910 flog(LOG_WARNING, "could not stat %s: %s", de->d_name, strerror(errno));
914 if(S_ISDIR(sb.st_mode))
916 if(~sb.st_mode & dmask)
922 } else if(S_ISREG(sb.st_mode)) {
923 if(~sb.st_mode & fmask)
930 flog(LOG_WARNING, "unhandled file type: %i", sb.st_mode);
936 if((n->f.b.type != type) || (n->mtime != sb.st_mtime) || ((type == FILE_REG) && (n->size != sb.st_size)))
946 if(S_ISREG(sb.st_mode))
948 sharesize += (n->size = sb.st_size);
952 n->mtime = sb.st_mtime;
954 n->inode = sb.st_ino;
956 attachcache(scanjob->node, n);
961 if(n->f.b.type == FILE_DIR)
964 jbuf->next = scanjob;
966 } else if(n->f.b.type == FILE_REG) {
967 if(n->f.b.hastth && (n->mtime != sb.st_mtime))
971 if((hc = findhashcache(sb.st_dev, sb.st_ino)) != NULL)
973 if(hc->mtime == n->mtime)
976 memcpy(n->hashtth, hc->tth, 24);
987 void scanshares(void)
989 struct sharepoint *cur;
990 struct sharecache *node;
993 for(cur = shares; cur != NULL; cur = cur->next)
995 if((node = findcache(shareroot, cur->name)) == NULL)
997 if(stat(cur->path, &sb))
999 flog(LOG_WARNING, "could not stat share \"%ls\": %s", cur->name, strerror(errno));
1002 if(!S_ISDIR(sb.st_mode))
1004 flog(LOG_WARNING, "%s is not a directory; won't share it", cur->path);
1008 node->name = swcsdup(cur->name);
1009 node->path = sstrdup(cur->path);
1010 if(node->path[strlen(node->path) - 1] == '/')
1011 node->path[strlen(node->path) - 1] = 0;
1012 node->f.b.type = FILE_DIR;
1013 attachcache(shareroot, node);
1019 static void preinit(int hup)
1021 struct sharepoint *cur;
1025 for(cur = shares; cur != NULL; cur = cur->next)
1028 shareroot = newcache();
1029 shareroot->name = swcsdup(L"");
1030 shareroot->f.b.type = FILE_DIR;
1034 static int init(int hup)
1036 struct sharepoint *cur, *next;
1039 for(cur = shares; cur != NULL; cur = next)
1043 freesharepoint(cur);
1051 static int run(void)
1056 static void terminate(void)
1059 kill(hashjob, SIGHUP);
1060 while(shares != NULL)
1061 freesharepoint(shares);
1062 freecache(shareroot);
1065 static struct module me =
1076 .terminate = terminate