]> git.wh0rd.org - fontconfig.git/blob - src/fccache.c
2006-08-04 Keith Packard (keithp@keithp.com) reviewed by: plam
[fontconfig.git] / src / fccache.c
1 /*
2 * $RCSId: xc/lib/fontconfig/src/fccache.c,v 1.12 2002/08/22 07:36:44 keithp Exp $
3 *
4 * Copyright © 2000 Keith Packard
5 * Copyright © 2005 Patrick Lam
6 *
7 * Permission to use, copy, modify, distribute, and sell this software and its
8 * documentation for any purpose is hereby granted without fee, provided that
9 * the above copyright notice appear in all copies and that both that
10 * copyright notice and this permission notice appear in supporting
11 * documentation, and that the name of Keith Packard not be used in
12 * advertising or publicity pertaining to distribution of the software without
13 * specific, written prior permission. Keith Packard makes no
14 * representations about the suitability of this software for any purpose. It
15 * is provided "as is" without express or implied warranty.
16 *
17 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
18 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
19 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
20 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
22 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
23 * PERFORMANCE OF THIS SOFTWARE.
24 */
25
26 #include "fcint.h"
27 #include <fcntl.h>
28 #include <dirent.h>
29 #include <string.h>
30 #include <sys/types.h>
31 #if defined(HAVE_MMAP) || defined(__CYGWIN__)
32 # include <unistd.h>
33 # include <sys/mman.h>
34 #elif defined(_WIN32)
35 # include <windows.h>
36 #endif
37
38 #define ENDIAN_TEST 0x12345678
39 #define MACHINE_SIGNATURE_SIZE (9 + 5*20 + 1)
40 /* for when we don't have sysconf: */
41 #define FC_HARDCODED_PAGESIZE 8192
42
43 #ifndef O_BINARY
44 #define O_BINARY 0
45 #endif
46
47 static int
48 FcDirCacheOpen (FcConfig *config, const FcChar8 *dir, FcChar8 **cache_path);
49
50 static off_t
51 FcCacheSkipToArch (int fd, const char * arch);
52
53 static FcBool
54 FcCacheCopyOld (int fd, int fd_orig, off_t start);
55
56 static void *
57 FcDirCacheProduce (FcFontSet *set, FcCache * metadata);
58
59 static FcBool
60 FcDirCacheConsume (int fd, const char * dir, FcFontSet *set, FcConfig *config);
61
62 static int
63 FcCacheNextOffset(off_t w);
64
65 static char *
66 FcCacheMachineSignature (void);
67
68 static FcBool
69 FcCacheHaveBank (int bank);
70
71 static void
72 FcCacheAddBankDir (int bank, const char * dir);
73
74 struct MD5Context {
75 FcChar32 buf[4];
76 FcChar32 bits[2];
77 unsigned char in[64];
78 };
79
80 static void MD5Init(struct MD5Context *ctx);
81 static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len);
82 static void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
83 static void MD5Transform(FcChar32 buf[4], FcChar32 in[16]);
84
85 #define FC_DBG_CACHE_REF 1024
86
87 static char *
88 FcCacheReadString (int fd, char *dest, int len)
89 {
90 int size;
91 int slen;
92
93 if (len == 0)
94 return 0;
95
96 size = read (fd, dest, len-1);
97
98 if (size > 0)
99 {
100 dest[size] = '\0';
101 slen = strlen (dest);
102
103 lseek (fd, slen - size + 1, SEEK_CUR);
104 return slen < len ? dest : 0;
105 }
106
107 return 0;
108 }
109
110 static void
111 FcCacheSkipString (int fd)
112 {
113 char buf[256];
114 int size;
115 int slen;
116
117 while ( (size = read (fd, buf, sizeof (buf)-1)) > 0)
118 {
119 buf [size] = '\0';
120 slen = strlen (buf);
121 if (slen < size)
122 {
123 lseek (fd, slen - size + 1, SEEK_CUR);
124 return;
125 }
126 }
127 }
128
129 static FcBool
130 FcCacheWriteString (int fd, const char *chars)
131 {
132 if (write (fd, chars, strlen(chars)+1) != strlen(chars)+1)
133 return FcFalse;
134 return FcTrue;
135 }
136
137 static void
138 FcGlobalCacheDirDestroy (FcGlobalCacheDir *d)
139 {
140 FcStrSetDestroy (d->subdirs);
141 FcMemFree (FC_MEM_STRING, strlen (d->name)+1);
142 free (d->name);
143 FcMemFree (FC_MEM_CACHE, sizeof (FcGlobalCacheDir));
144 free (d);
145 }
146
147 FcGlobalCache *
148 FcGlobalCacheCreate (void)
149 {
150 FcGlobalCache *cache;
151
152 cache = malloc (sizeof (FcGlobalCache));
153 if (!cache)
154 return 0;
155 FcMemAlloc (FC_MEM_CACHE, sizeof (FcGlobalCache));
156 cache->dirs = 0;
157 cache->updated = FcFalse;
158 cache->fd = -1;
159 return cache;
160 }
161
162 void
163 FcGlobalCacheDestroy (FcGlobalCache *cache)
164 {
165 FcGlobalCacheDir *d, *next;
166
167 for (d = cache->dirs; d; d = next)
168 {
169 next = d->next;
170 FcGlobalCacheDirDestroy (d);
171 }
172 FcMemFree (FC_MEM_CACHE, sizeof (FcGlobalCache));
173 if (cache->fd != -1)
174 close (cache->fd);
175 free (cache);
176 }
177
178 void
179 FcGlobalCacheLoad (FcGlobalCache *cache,
180 FcStrSet *staleDirs,
181 const FcChar8 *cache_file,
182 FcConfig *config)
183 {
184 char name_buf[FC_MAX_FILE_LEN];
185 FcGlobalCacheDir *d, *next;
186 FcFileTime config_time = FcConfigModifiedTime (config);
187 char * current_arch_machine_name;
188 char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
189 off_t current_arch_start;
190
191 struct stat cache_stat, dir_stat;
192 char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
193
194 if (stat ((char *) cache_file, &cache_stat) < 0)
195 return;
196
197 cache->fd = open ((char *) cache_file, O_RDONLY | O_BINARY);
198 if (cache->fd == -1)
199 return;
200
201 cache->updated = FcFalse;
202
203 if (!FcCacheReadString (cache->fd, name_buf, sizeof (name_buf)))
204 goto bail_and_destroy;
205 if (strcmp (name_buf, FC_GLOBAL_MAGIC_COOKIE) != 0)
206 goto bail_and_destroy;
207
208 current_arch_machine_name = FcCacheMachineSignature ();
209 current_arch_start = FcCacheSkipToArch(cache->fd,
210 current_arch_machine_name);
211 if (current_arch_start < 0)
212 goto bail1;
213
214 lseek (cache->fd, current_arch_start, SEEK_SET);
215 if (!FcCacheReadString (cache->fd, candidate_arch_machine_name,
216 sizeof (candidate_arch_machine_name)))
217 goto bail_and_destroy;
218 if (strlen(candidate_arch_machine_name) == 0)
219 goto bail_and_destroy;
220
221 while (1)
222 {
223 off_t targ;
224
225 if (!FcCacheReadString (cache->fd, name_buf, sizeof (name_buf)) ||
226 !strlen(name_buf))
227 break;
228
229 /* Directory must be older than the global cache file; also
230 cache must be newer than the config file. */
231 if (stat ((char *) name_buf, &dir_stat) < 0 ||
232 dir_stat.st_mtime > cache_stat.st_mtime ||
233 (config_time.set && cache_stat.st_mtime < config_time.time))
234 {
235 FcCache md;
236 off_t off;
237
238 FcStrSetAdd (staleDirs, (FcChar8 *)name_buf);
239
240 /* skip subdirs */
241 while (FcCacheReadString (cache->fd, subdirName,
242 sizeof (subdirName)) &&
243 strlen (subdirName))
244 ;
245
246 if (read (cache->fd, &md, sizeof (FcCache)) != sizeof(FcCache))
247 {
248 perror ("read metadata");
249 goto bail1;
250 }
251 off = FcCacheNextOffset (lseek(cache->fd, 0, SEEK_CUR)) + md.count;
252 if (lseek (cache->fd, off, SEEK_SET) != off)
253 {
254 perror ("lseek");
255 goto bail1;
256 }
257 continue;
258 }
259
260 d = malloc (sizeof (FcGlobalCacheDir));
261 if (!d)
262 goto bail1;
263
264 d->next = cache->dirs;
265 cache->dirs = d;
266
267 d->name = (char *)FcStrCopy ((FcChar8 *)name_buf);
268 d->ent = 0;
269 d->state = FcGCDirFileRead;
270
271 d->subdirs = FcStrSetCreate();
272 do
273 {
274 if (!FcCacheReadString (cache->fd, subdirName,
275 sizeof (subdirName)) ||
276 !strlen (subdirName))
277 break;
278 FcStrSetAdd (d->subdirs, (FcChar8 *)subdirName);
279 } while (1);
280
281 d->offset = lseek (cache->fd, 0, SEEK_CUR);
282 if (read (cache->fd, &d->metadata, sizeof (FcCache)) != sizeof (FcCache))
283 goto bail1;
284 targ = FcCacheNextOffset (lseek(cache->fd, 0, SEEK_CUR)) + d->metadata.count;
285 if (lseek (cache->fd, targ, SEEK_SET) != targ)
286 goto bail1;
287 }
288 return;
289
290 bail1:
291 for (d = cache->dirs; d; d = next)
292 {
293 next = d->next;
294 free (d);
295 }
296 cache->dirs = 0;
297
298 close (cache->fd);
299 cache->fd = -1;
300 return;
301
302 bail_and_destroy:
303 close (cache->fd);
304 cache->fd = -1;
305
306 if (stat ((char *) cache_file, &cache_stat) == 0)
307 unlink ((char *)cache_file);
308
309 return;
310
311 }
312
313 FcBool
314 FcGlobalCacheReadDir (FcFontSet *set, FcStrSet *dirs, FcGlobalCache * cache, const char *dir, FcConfig *config)
315 {
316 FcGlobalCacheDir *d;
317 int i;
318
319 if (cache->fd == -1)
320 return FcFalse;
321
322 if (config)
323 if (!(dir = (char *)FcConfigNormalizeFontDir (config, (FcChar8 *)dir)))
324 return FcFalse; /* non-existing directory */
325
326 for (d = cache->dirs; d; d = d->next)
327 {
328 if (strcmp (d->name, dir) == 0)
329 {
330 if (d->state == FcGCDirDisabled)
331 return FcFalse;
332
333 if (d->state == FcGCDirFileRead)
334 {
335 lseek (cache->fd, d->offset, SEEK_SET);
336 if (!FcDirCacheConsume (cache->fd, d->name, set, config))
337 return FcFalse;
338
339 for (i = 0; i < d->subdirs->num; i++)
340 FcStrSetAdd (dirs, (FcChar8 *)d->subdirs->strs[i]);
341
342 d->state = FcGCDirConsumed;
343 }
344 return FcTrue;
345 }
346 }
347
348 return FcFalse;
349 }
350
351 static FcGlobalCacheDir *
352 FcGlobalCacheDirFind (FcGlobalCache *cache, const char *name)
353 {
354 FcGlobalCacheDir * d;
355
356 if (!cache || !name)
357 return NULL;
358
359 for (d = cache->dirs; d; d = d->next)
360 if (strcmp((const char *)d->name, (const char *)name) == 0)
361 return d;
362
363 return NULL;
364 }
365
366 FcBool
367 FcGlobalCacheUpdate (FcGlobalCache *cache,
368 FcStrSet *dirs,
369 const char *orig_name,
370 FcFontSet *set,
371 FcConfig *config)
372 {
373 FcGlobalCacheDir *d;
374 int i;
375 const char *name;
376
377 name = (char *)FcConfigNormalizeFontDir (config, (FcChar8 *)orig_name);
378 if (!name)
379 {
380 fprintf(stderr, "Invalid directory name %s\n", orig_name);
381 return FcFalse;
382 }
383
384 d = FcGlobalCacheDirFind (cache, name);
385
386 if (!d)
387 {
388 d = malloc (sizeof (FcGlobalCacheDir));
389 if (!d)
390 return FcFalse;
391 d->next = cache->dirs;
392 cache->dirs = d;
393 } else {
394 /* free old resources */
395 FcStrFree ((FcChar8 *)d->name);
396 free (d->ent);
397 FcStrSetDestroy (d->subdirs);
398 }
399
400 cache->updated = FcTrue;
401
402 d->name = (char *)FcStrCopy ((FcChar8 *)name);
403 d->ent = FcDirCacheProduce (set, &d->metadata);
404 d->offset = 0;
405 d->subdirs = FcStrSetCreate();
406 d->state = FcGCDirUpdated;
407 for (i = 0; i < dirs->num; i++)
408 FcStrSetAdd (d->subdirs, dirs->strs[i]);
409 return FcTrue;
410 }
411
412 FcBool
413 FcGlobalCacheSave (FcGlobalCache *cache,
414 const FcChar8 *cache_file,
415 FcConfig *config)
416 {
417 int fd, fd_orig;
418 FcGlobalCacheDir *dir;
419 FcAtomic *atomic;
420 off_t current_arch_start = 0, truncate_to;
421 char * current_arch_machine_name, * header;
422
423 if (!cache->updated)
424 return FcTrue;
425
426 #if defined (HAVE_GETUID) && defined (HAVE_GETEUID)
427 /* Set-UID programs can't safely update the cache */
428 if (getuid () != geteuid ())
429 return FcFalse;
430 #endif
431
432 atomic = FcAtomicCreate (cache_file);
433 if (!atomic)
434 return FcFalse;
435
436 if (!FcAtomicLock (atomic))
437 goto bail1;
438 fd = open ((char *) FcAtomicNewFile(atomic), O_RDWR | O_CREAT | O_BINARY,
439 S_IRUSR | S_IWUSR);
440 if (fd == -1)
441 goto bail2;
442 FcCacheWriteString (fd, FC_GLOBAL_MAGIC_COOKIE);
443
444 fd_orig = open ((char *) FcAtomicOrigFile(atomic), O_RDONLY | O_BINARY);
445
446 current_arch_machine_name = FcCacheMachineSignature ();
447 if (fd_orig == -1)
448 current_arch_start = 0;
449 else
450 current_arch_start = FcCacheSkipToArch (fd_orig,
451 current_arch_machine_name);
452
453 if (current_arch_start < 0)
454 {
455 off_t i = lseek(fd_orig, 0, SEEK_END);
456 if (i < strlen (FC_GLOBAL_MAGIC_COOKIE)+1)
457 i = strlen (FC_GLOBAL_MAGIC_COOKIE)+1;
458 current_arch_start = FcCacheNextOffset (i);
459 }
460
461 if (!FcCacheCopyOld(fd, fd_orig, current_arch_start))
462 goto bail3;
463
464 current_arch_start = lseek(fd, 0, SEEK_CUR);
465 #if defined (HAVE_FTRUNCATE)
466 if (ftruncate (fd, current_arch_start) == -1)
467 goto bail3;
468 #else
469 #if defined (HAVE_CHSIZE)
470 if (chsize (fd, current_arch_start) == -1)
471 goto bail3;
472 #else
473 goto bail3;
474 #endif
475 #endif
476
477 header = malloc (10 + strlen (current_arch_machine_name));
478 if (!header)
479 goto bail3;
480
481 truncate_to = current_arch_start + strlen(current_arch_machine_name) + 11;
482 for (dir = cache->dirs; dir; dir = dir->next)
483 {
484 int i;
485
486 if (dir->state == FcGCDirDisabled)
487 continue;
488 truncate_to += strlen(dir->name) + 1;
489 truncate_to += sizeof (FcCache);
490 truncate_to = FcCacheNextOffset (truncate_to);
491 truncate_to += dir->metadata.count;
492
493 for (i = 0; i < dir->subdirs->size; i++)
494 truncate_to += strlen((char *)dir->subdirs->strs[i]) + 1;
495 truncate_to ++;
496 }
497 truncate_to -= current_arch_start;
498
499 sprintf (header, "%8x ", (int)truncate_to);
500 strcat (header, current_arch_machine_name);
501 if (!FcCacheWriteString (fd, header))
502 goto bail4;
503
504 free (header);
505
506 for (dir = cache->dirs; dir; dir = dir->next)
507 {
508 int i;
509 const char * d;
510 off_t off;
511
512 if (!dir->name || dir->state == FcGCDirDisabled)
513 continue;
514 d = (const char *)FcConfigNormalizeFontDir (config, (const FcChar8 *)dir->name);
515 if (!d)
516 continue;
517
518 if (dir->metadata.count && !dir->ent)
519 {
520 if (dir->state == FcGCDirUpdated || fd_orig < 0)
521 {
522 fprintf(stderr, "Invalid metadata entry for %s, skipping...\n", d);
523 continue;
524 }
525 /* copy the old content */
526 dir->ent = malloc (dir->metadata.count);
527 if (!dir->ent)
528 {
529 perror("malloc error");
530 continue;
531 }
532 off = FcCacheNextOffset (dir->offset + sizeof(FcCache));
533 if (lseek (fd_orig, off, SEEK_SET) != off)
534 {
535 perror("lseek");
536 free(dir->ent);
537 continue;
538 }
539 if (read (fd_orig, dir->ent, dir->metadata.count)
540 != dir->metadata.count)
541 {
542 perror("read");
543 free(dir->ent);
544 continue;
545 }
546 }
547
548 FcCacheWriteString (fd, d);
549
550 for (i = 0; i < dir->subdirs->size; i++)
551 FcCacheWriteString (fd, (char *)dir->subdirs->strs[i]);
552 FcCacheWriteString (fd, "");
553
554 if (write (fd, &dir->metadata, sizeof(FcCache)) != sizeof(FcCache))
555 {
556 perror ("write metadata");
557 free (dir->ent);
558 continue;
559 }
560 off = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
561 if (lseek (fd, off, SEEK_SET) != off)
562 {
563 perror ("lseek");
564 free (dir->ent);
565 continue;
566 }
567 if (dir->metadata.count)
568 {
569 if (write (fd, dir->ent, dir->metadata.count) != dir->metadata.count)
570 {
571 perror ("write dirent");
572 free (dir->ent);
573 continue;
574 }
575 }
576 free (dir->ent);
577 }
578 FcCacheWriteString (fd, "");
579
580 if (close (fd) == -1)
581 goto bail25;
582
583 close (fd_orig);
584 fd_orig = -1;
585
586 if (!FcAtomicReplaceOrig (atomic))
587 goto bail25;
588
589 FcAtomicUnlock (atomic);
590 FcAtomicDestroy (atomic);
591
592 cache->updated = FcFalse;
593 return FcTrue;
594
595 bail4:
596 free (header);
597 bail3:
598 if (fd_orig != -1)
599 close (fd_orig);
600
601 close (fd);
602 bail25:
603 FcAtomicDeleteNew (atomic);
604 bail2:
605 FcAtomicUnlock (atomic);
606 bail1:
607 FcAtomicDestroy (atomic);
608 return FcFalse;
609 }
610
611 /*
612 * Find the next presumably-mmapable offset after the supplied file
613 * position.
614 */
615 static int
616 FcCacheNextOffset(off_t w)
617 {
618 static long pagesize = -1;
619
620 if (w == -1)
621 return w;
622
623 if (pagesize == -1)
624 #if defined (HAVE_SYSCONF)
625 pagesize = sysconf(_SC_PAGESIZE);
626 #else
627 pagesize = FC_HARDCODED_PAGESIZE;
628 #endif
629 if (w % pagesize == 0)
630 return w;
631 else
632 return ((w / pagesize)+1)*pagesize;
633 }
634
635 /* return the address of the segment for the provided arch,
636 * or -1 if arch not found */
637 static off_t
638 FcCacheSkipToArch (int fd, const char * arch)
639 {
640 char candidate_arch_machine_name_count[MACHINE_SIGNATURE_SIZE + 9];
641 char * candidate_arch;
642 off_t current_arch_start = 0;
643
644 lseek (fd, 0, SEEK_SET);
645 FcCacheSkipString (fd);
646 current_arch_start = lseek (fd, 0, SEEK_CUR);
647
648 /* skip arches that are not the current arch */
649 while (1)
650 {
651 long bs;
652
653 if (lseek (fd, current_arch_start, SEEK_SET) != current_arch_start)
654 return -1;
655
656 if (FcCacheReadString (fd, candidate_arch_machine_name_count,
657 sizeof (candidate_arch_machine_name_count)) == 0)
658 return -1;
659 if (!strlen(candidate_arch_machine_name_count))
660 return -1;
661 bs = strtol(candidate_arch_machine_name_count, &candidate_arch, 16);
662
663 /* count = 0 should probably be distinguished from the !bs condition */
664 if (!bs || bs < strlen (candidate_arch_machine_name_count))
665 return -1;
666
667 candidate_arch++; /* skip leading space */
668
669 if (strcmp (candidate_arch, arch)==0)
670 return current_arch_start;
671 current_arch_start += bs;
672 current_arch_start = FcCacheNextOffset (current_arch_start);
673 }
674 }
675
676 /* Cuts out the segment at the file pointer (moves everything else
677 * down to cover it), and leaves the file pointer at the end of the
678 * file. */
679 static FcBool
680 FcCacheCopyOld (int fd, int fd_orig, off_t start)
681 {
682 char * buf = malloc (8192);
683 char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
684 long bs;
685 int c, bytes_skipped;
686 off_t loc;
687
688 if (!buf)
689 return FcFalse;
690
691 loc = 0;
692 lseek (fd, 0, SEEK_SET); lseek (fd_orig, 0, SEEK_SET);
693 FcCacheSkipString (fd); FcCacheSkipString (fd_orig);
694 do
695 {
696 int b = 8192;
697 if (loc + b > start)
698 b = start - loc;
699
700 if ((c = read (fd_orig, buf, b)) <= 0)
701 break;
702 if (write (fd, buf, c) < 0)
703 goto bail;
704
705 loc += c;
706 }
707 while (c > 0);
708
709 lseek (fd, start, SEEK_SET);
710 if (FcCacheReadString (fd, candidate_arch_machine_name,
711 sizeof (candidate_arch_machine_name)) == 0)
712 goto done;
713 if (!strlen(candidate_arch_machine_name))
714 goto done;
715
716 bs = strtol(candidate_arch_machine_name, 0, 16);
717 if (bs == 0)
718 goto done;
719
720 bytes_skipped = 0;
721 do
722 {
723 lseek (fd, start+bs+bytes_skipped, SEEK_SET);
724 if ((c = read (fd, buf, 8192)) <= 0)
725 break;
726 lseek (fd, start+bytes_skipped, SEEK_SET);
727 if (write (fd, buf, c) < 0)
728 goto bail;
729 bytes_skipped += c;
730 }
731 while (c > 0);
732 lseek (fd, start+bytes_skipped, SEEK_SET);
733
734 done:
735 free (buf);
736 return FcTrue;
737
738 bail:
739 free (buf);
740 return FcFalse;
741 }
742
743 /* Does not check that the cache has the appropriate arch section. */
744 /* Also, this can be fooled if the original location has a stale
745 * cache, and the hashed location has an up-to-date cache. Oh well,
746 * sucks to be you in that case! */
747 FcBool
748 FcDirCacheValid (const FcChar8 *dir, FcConfig *config)
749 {
750 struct stat file_stat, dir_stat;
751 int fd;
752
753 if (stat ((char *) dir, &dir_stat) < 0)
754 return FcFalse;
755
756 fd = FcDirCacheOpen (config, dir, NULL);
757
758 if (fd < 0)
759 return FcFalse;
760 if (fstat (fd, &file_stat) < 0)
761 goto bail;
762
763 close (fd);
764
765 /*
766 * If the directory has been modified more recently than
767 * the cache file, the cache is not valid
768 */
769 if (dir_stat.st_mtime > file_stat.st_mtime)
770 return FcFalse;
771
772 return FcTrue;
773
774 bail:
775 close (fd);
776 return FcFalse;
777 }
778
779 /* Assumes that the cache file in 'dir' exists.
780 * Checks that the cache has the appropriate arch section. */
781 FcBool
782 FcDirCacheHasCurrentArch (const FcChar8 *dir, FcConfig *config)
783 {
784 int fd;
785 off_t current_arch_start;
786 char *current_arch_machine_name;
787 FcCache metadata;
788 char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
789
790 fd = FcDirCacheOpen (config, dir, NULL);
791 if (fd < 0)
792 goto bail;
793
794 current_arch_machine_name = FcCacheMachineSignature();
795 current_arch_start = FcCacheSkipToArch(fd, current_arch_machine_name);
796
797 if (current_arch_start >= 0)
798 {
799 if (lseek (fd, current_arch_start, SEEK_SET) != current_arch_start)
800 goto bail1;
801
802 FcCacheSkipString (fd);
803
804 while (FcCacheReadString (fd, subdirName, sizeof (subdirName)) && strlen (subdirName) > 0)
805 ;
806
807 if (read(fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
808 goto bail1;
809
810 if (metadata.magic != FC_CACHE_MAGIC)
811 goto bail1;
812 }
813
814 close (fd);
815
816 if (current_arch_start < 0)
817 return FcFalse;
818
819 return FcTrue;
820
821 bail1:
822 close (fd);
823 bail:
824 return FcFalse;
825 }
826
827 #define CACHEBASE_LEN (1 + 32 + sizeof (FC_CACHE_SUFFIX))
828
829 static const char bin2hex[] = { '0', '1', '2', '3',
830 '4', '5', '6', '7',
831 '8', '9', 'a', 'b',
832 'c', 'd', 'e', 'f' };
833
834 static FcChar8 *
835 FcDirCacheBasename (const FcChar8 * dir, FcChar8 cache_base[CACHEBASE_LEN])
836 {
837 unsigned char hash[16];
838 FcChar8 *hex_hash;
839 int cnt;
840 struct MD5Context ctx;
841
842 MD5Init (&ctx);
843 MD5Update (&ctx, (unsigned char *)dir, strlen ((char *) dir));
844
845 MD5Final (hash, &ctx);
846
847 cache_base[0] = '/';
848 hex_hash = cache_base + 1;
849 for (cnt = 0; cnt < 16; ++cnt)
850 {
851 hex_hash[2*cnt ] = bin2hex[hash[cnt] >> 4];
852 hex_hash[2*cnt+1] = bin2hex[hash[cnt] & 0xf];
853 }
854 hex_hash[2*cnt] = 0;
855 strcat ((char *) cache_base, FC_CACHE_SUFFIX);
856
857 return cache_base;
858 }
859
860 FcBool
861 FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config)
862 {
863 int fd = -1;
864 FcChar8 *cache_hashed = NULL;
865 FcChar8 cache_base[CACHEBASE_LEN];
866 FcStrList *list;
867 FcChar8 *cache_dir;
868 char dir_buf[FC_MAX_FILE_LEN];
869
870 dir = FcConfigNormalizeFontDir (config, dir);
871
872 FcDirCacheBasename (dir, cache_base);
873
874 list = FcStrListCreate (config->cacheDirs);
875 if (!list)
876 return FcFalse;
877
878 while ((cache_dir = FcStrListNext (list)))
879 {
880 cache_hashed = FcStrPlus (cache_dir, cache_base);
881 if (!cache_hashed)
882 break;
883 fd = open((char *) cache_hashed, O_RDONLY | O_BINARY);
884 FcStrFree (cache_hashed);
885 if (fd >= 0)
886 {
887 if (FcCacheReadString (fd, dir_buf, sizeof (dir_buf)) &&
888 strcmp (dir_buf, (char *) dir) == 0)
889 {
890 close (fd);
891 if (unlink ((char *) cache_hashed) < 0)
892 break;
893 } else
894 close (fd);
895 }
896 }
897 FcStrListDone (list);
898 /* return FcFalse if something went wrong */
899 if (cache_dir)
900 return FcFalse;
901 return FcTrue;
902 }
903
904 static int
905 FcCacheReadDirs (FcConfig * config, FcGlobalCache * cache,
906 FcStrList *list, FcFontSet * set, FcStrSet *processed_dirs)
907 {
908 int ret = 0;
909 FcChar8 *dir;
910 FcStrSet *subdirs;
911 FcStrList *sublist;
912 struct stat statb;
913 FcGlobalCacheDir *d;
914
915 /*
916 * Read in the results from 'list'.
917 */
918 while ((dir = FcStrListNext (list)))
919 {
920 if (!FcConfigAcceptFilename (config, dir))
921 continue;
922
923 /* Skip this directory if already updated
924 * to avoid the looped directories via symlinks
925 * Clearly a dir not in fonts.conf shouldn't be globally cached.
926 */
927 dir = (FcChar8 *)FcConfigNormalizeFontDir (config, dir);
928 if (!dir)
929 continue;
930
931 if (FcStrSetMember (processed_dirs, dir))
932 continue;
933 if (!FcStrSetAdd (processed_dirs, dir))
934 continue;
935
936 subdirs = FcStrSetCreate ();
937 if (!subdirs)
938 {
939 fprintf (stderr, "Can't create directory set\n");
940 ret++;
941 continue;
942 }
943
944 if (access ((char *) dir, X_OK) < 0)
945 {
946 switch (errno) {
947 case ENOENT:
948 case ENOTDIR:
949 case EACCES:
950 break;
951 default:
952 fprintf (stderr, "\"%s\": ", dir);
953 perror ("");
954 ret++;
955 }
956 FcStrSetDestroy (subdirs);
957 continue;
958 }
959 if (stat ((char *) dir, &statb) == -1)
960 {
961 fprintf (stderr, "\"%s\": ", dir);
962 perror ("");
963 FcStrSetDestroy (subdirs);
964 ret++;
965 continue;
966 }
967 if (!S_ISDIR (statb.st_mode))
968 {
969 fprintf (stderr, "\"%s\": not a directory, skipping\n", dir);
970 FcStrSetDestroy (subdirs);
971 continue;
972 }
973 if (FcDirCacheValid (dir, config) &&
974 FcDirCacheHasCurrentArch (dir, config) &&
975 FcDirCacheRead (set, subdirs, dir, config))
976 {
977 /* if an old entry is found in the global cache, disable it */
978 if ((d = FcGlobalCacheDirFind (cache, (const char *)dir)) != NULL)
979 {
980 d->state = FcGCDirDisabled;
981 /* save the updated config later without this entry */
982 cache->updated = FcTrue;
983 }
984 }
985 else
986 {
987 if (FcDebug () & FC_DBG_FONTSET)
988 printf ("cache scan dir %s\n", dir);
989
990 FcDirScanConfig (set, subdirs, cache,
991 config->blanks, dir, FcFalse, config);
992 }
993 sublist = FcStrListCreate (subdirs);
994 FcStrSetDestroy (subdirs);
995 if (!sublist)
996 {
997 fprintf (stderr, "Can't create subdir list in \"%s\"\n", dir);
998 ret++;
999 continue;
1000 }
1001 ret += FcCacheReadDirs (config, cache, sublist, set, processed_dirs);
1002 }
1003 FcStrListDone (list);
1004 return ret;
1005 }
1006
1007 FcFontSet *
1008 FcCacheRead (FcConfig *config, FcGlobalCache * cache)
1009 {
1010 FcFontSet *s = FcFontSetCreate();
1011 FcStrSet *processed_dirs;
1012
1013 if (!s)
1014 return 0;
1015
1016 processed_dirs = FcStrSetCreate();
1017 if (!processed_dirs)
1018 goto bail;
1019
1020 if (FcCacheReadDirs (config, cache, FcConfigGetConfigDirs (config), s, processed_dirs))
1021 goto bail1;
1022
1023 FcStrSetDestroy (processed_dirs);
1024 return s;
1025
1026 bail1:
1027 FcStrSetDestroy (processed_dirs);
1028 bail:
1029 FcFontSetDestroy (s);
1030 return 0;
1031 }
1032
1033 /* Opens the cache file for 'dir' for reading.
1034 * This searches the list of cache dirs for the relevant cache file,
1035 * returning the first one found.
1036 */
1037 static int
1038 FcDirCacheOpen (FcConfig *config, const FcChar8 *dir, FcChar8 **cache_path)
1039 {
1040 int fd = -1;
1041 FcChar8 *cache_hashed = NULL;
1042 FcChar8 cache_base[CACHEBASE_LEN];
1043 FcStrList *list;
1044 FcChar8 *cache_dir;
1045 char dir_buf[FC_MAX_FILE_LEN];
1046
1047 FcDirCacheBasename (dir, cache_base);
1048
1049 list = FcStrListCreate (config->cacheDirs);
1050 if (!list)
1051 return -1;
1052
1053 while ((cache_dir = FcStrListNext (list)))
1054 {
1055 cache_hashed = FcStrPlus (cache_dir, cache_base);
1056 if (!cache_hashed)
1057 break;
1058 fd = open((char *) cache_hashed, O_RDONLY | O_BINARY);
1059 if (fd >= 0)
1060 break;
1061 FcStrFree (cache_hashed);
1062 }
1063 FcStrListDone (list);
1064
1065 if (fd < 0)
1066 return -1;
1067
1068 if (!FcCacheReadString (fd, dir_buf, sizeof (dir_buf)) ||
1069 strcmp (dir_buf, (char *) dir) != 0)
1070 {
1071 close (fd);
1072 FcStrFree (cache_hashed);
1073 return -1;
1074 }
1075
1076 if (cache_path)
1077 *cache_path = cache_hashed;
1078 else
1079 FcStrFree (cache_hashed);
1080
1081 return fd;
1082 }
1083
1084 /* read serialized state from the cache file */
1085 FcBool
1086 FcDirCacheRead (FcFontSet * set, FcStrSet * dirs, const FcChar8 *dir, FcConfig *config)
1087 {
1088 int fd;
1089 char *current_arch_machine_name;
1090 char candidate_arch_machine_name[9+MACHINE_SIGNATURE_SIZE];
1091 off_t current_arch_start = 0;
1092 char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
1093
1094 fd = FcDirCacheOpen (config, dir, NULL);
1095 if (fd < 0)
1096 goto bail;
1097
1098 current_arch_machine_name = FcCacheMachineSignature();
1099 current_arch_start = FcCacheSkipToArch(fd,
1100 current_arch_machine_name);
1101 if (current_arch_start < 0)
1102 goto bail1;
1103
1104 lseek (fd, current_arch_start, SEEK_SET);
1105 if (FcCacheReadString (fd, candidate_arch_machine_name,
1106 sizeof (candidate_arch_machine_name)) == 0)
1107 goto bail1;
1108
1109 while (FcCacheReadString (fd, subdirName, sizeof (subdirName)) && strlen (subdirName) > 0)
1110 FcStrSetAdd (dirs, (FcChar8 *)subdirName);
1111
1112 if (!FcDirCacheConsume (fd, (const char *)dir, set, config))
1113 goto bail1;
1114
1115 close(fd);
1116 return FcTrue;
1117
1118 bail1:
1119 close (fd);
1120 bail:
1121 return FcFalse;
1122 }
1123
1124 static FcBool
1125 FcDirCacheConsume (int fd, const char * dir, FcFontSet *set, FcConfig *config)
1126 {
1127 FcCache metadata;
1128 void * current_dir_block;
1129 off_t pos, endpos;
1130
1131 if (read(fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
1132 return FcFalse;
1133 if (metadata.magic != FC_CACHE_MAGIC)
1134 return FcFalse;
1135
1136 if (!metadata.count)
1137 {
1138 pos = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
1139 lseek (fd, pos, SEEK_SET);
1140 if (config)
1141 FcConfigAddFontDir (config, (FcChar8 *)dir);
1142 return FcTrue;
1143 }
1144
1145 pos = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
1146
1147 /* This is not failsafe (multi-arches can break it),
1148 * but fd has got to have at least as many bytes as
1149 * metadata.count, or something's going to go horribly wrong. */
1150 if (pos == (off_t)-1)
1151 return FcFalse;
1152
1153 endpos = lseek (fd, 0, SEEK_END);
1154 if (endpos == (off_t)-1 || endpos - pos < metadata.count)
1155 return FcFalse;
1156 if (lseek (fd, pos, SEEK_SET) == -1)
1157 return FcFalse;
1158
1159 #if defined(HAVE_MMAP) || defined(__CYGWIN__)
1160 current_dir_block = mmap (0, metadata.count,
1161 PROT_READ, MAP_SHARED, fd, pos);
1162 if (current_dir_block == MAP_FAILED)
1163 return FcFalse;
1164 #elif defined(_WIN32)
1165 {
1166 HANDLE hFileMap;
1167
1168 hFileMap = CreateFileMapping((HANDLE) _get_osfhandle(fd), NULL, PAGE_READONLY, 0, 0, NULL);
1169 if (hFileMap == NULL)
1170 return FcFalse;
1171
1172 current_dir_block = MapViewOfFile (hFileMap, FILE_MAP_READ, 0, 0, metadata.count + pos);
1173 if (current_dir_block == NULL)
1174 {
1175 CloseHandle (hFileMap);
1176 return FcFalse;
1177 }
1178
1179 current_dir_block = (void *)((char *)current_dir_block + pos);
1180 }
1181 #else
1182 current_dir_block = malloc (metadata.count);
1183 if (!current_dir_block)
1184 return FcFalse;
1185
1186 /* could also use CreateMappedViewOfFile under MinGW... */
1187 if (read (fd, current_dir_block, metadata.count) != metadata.count)
1188 goto bail;
1189 #endif
1190 lseek (fd, pos+metadata.count, SEEK_SET);
1191
1192 FcCacheAddBankDir (metadata.bank, dir);
1193 if (config)
1194 FcConfigAddFontDir (config, (FcChar8 *)dir);
1195
1196 if (!FcFontSetUnserialize (&metadata, set, current_dir_block))
1197 goto bail;
1198
1199 return FcTrue;
1200 bail:
1201 #if !(defined(HAVE_MMAP) || defined(__CYGWIN__))
1202 free (current_dir_block);
1203 #endif
1204 return FcFalse;
1205 }
1206
1207 static void *
1208 FcDirCacheProduce (FcFontSet *set, FcCache *metadata)
1209 {
1210 void * current_dir_block, * final_dir_block;
1211 static unsigned int rand_state = 0;
1212 int bank, needed_bytes_no_align;
1213
1214 #if defined (HAVE_RAND_R)
1215 if (!rand_state)
1216 rand_state = time(0L);
1217 bank = rand_r(&rand_state);
1218
1219 while (FcCacheHaveBank(bank))
1220 bank = rand_r(&rand_state);
1221 #else
1222 if (!rand_state)
1223 {
1224 rand_state = 1;
1225 srand (time (0L));
1226 }
1227 bank = rand();
1228
1229 while (FcCacheHaveBank(bank))
1230 bank = rand();
1231 #endif
1232
1233 memset (metadata, 0, sizeof(FcCache));
1234 FcFontSetNewBank();
1235 needed_bytes_no_align = FcFontSetNeededBytes (set);
1236 metadata->count = needed_bytes_no_align +
1237 FcFontSetNeededBytesAlign ();
1238 metadata->magic = FC_CACHE_MAGIC;
1239 metadata->bank = bank;
1240
1241 if (!needed_bytes_no_align) /* not a failure, no fonts to write */
1242 {
1243 /* no, you don't really need to write any bytes at all. */
1244 metadata->count = 0;
1245 return 0;
1246 }
1247
1248 current_dir_block = malloc (metadata->count);
1249 if (!current_dir_block)
1250 goto bail;
1251 /* shut up valgrind */
1252 memset (current_dir_block, 0, metadata->count);
1253 final_dir_block = FcFontSetDistributeBytes (metadata, current_dir_block);
1254
1255 if ((void *)((char *)current_dir_block+metadata->count) < final_dir_block)
1256 goto bail;
1257
1258 if (!FcFontSetSerialize (bank, set))
1259 goto bail;
1260
1261 return current_dir_block;
1262
1263 bail:
1264 free (current_dir_block);
1265 return 0;
1266 }
1267
1268 static FcBool
1269 FcMakeDirectory (const FcChar8 *dir)
1270 {
1271 FcChar8 *parent;
1272 FcBool ret;
1273
1274 if (strlen ((char *) dir) == 0)
1275 return FcFalse;
1276
1277 parent = FcStrDirname (dir);
1278 if (!parent)
1279 return FcFalse;
1280 if (access ((char *) parent, W_OK|X_OK) == 0)
1281 ret = mkdir ((char *) dir, 0777) == 0;
1282 else if (access ((char *) parent, F_OK) == -1)
1283 ret = FcMakeDirectory (parent) && (mkdir ((char *) dir, 0777) == 0);
1284 else
1285 ret = FcFalse;
1286 FcStrFree (parent);
1287 return ret;
1288 }
1289
1290 /* write serialized state to the cache file */
1291 FcBool
1292 FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir, FcConfig *config)
1293 {
1294 FcChar8 cache_base[CACHEBASE_LEN];
1295 FcChar8 *cache_hashed;
1296 int fd, fd_orig, i, dirs_count;
1297 FcAtomic *atomic;
1298 FcCache metadata;
1299 off_t current_arch_start = 0, truncate_to;
1300 FcStrList *list;
1301 char *current_arch_machine_name, * header;
1302 void *current_dir_block = 0;
1303 FcChar8 *cache_dir;
1304
1305 dir = FcConfigNormalizeFontDir (FcConfigGetCurrent(), dir);
1306 if (!dir)
1307 return FcFalse;
1308
1309 /*
1310 * Check for an existing cache file and dump stuff in the same place
1311 */
1312 fd = FcDirCacheOpen (config, dir, &cache_hashed);
1313
1314 if (fd >= 0)
1315 close (fd);
1316 else {
1317 list = FcStrListCreate (config->cacheDirs);
1318 if (!list)
1319 return FcFalse;
1320 while ((cache_dir = FcStrListNext (list))) {
1321 if (access ((char *) cache_dir, W_OK|X_OK) == 0)
1322 break;
1323 /*
1324 * If the directory doesn't exist, try to create it
1325 */
1326 if (access ((char *) cache_dir, F_OK) == -1) {
1327 if (FcMakeDirectory (cache_dir))
1328 break;
1329 }
1330 }
1331 FcStrListDone (list);
1332 if (!cache_dir)
1333 return FcFalse;
1334 FcDirCacheBasename (dir, cache_base);
1335 cache_hashed = FcStrPlus (cache_dir, cache_base);
1336 if (!cache_hashed)
1337 return FcFalse;
1338 }
1339
1340 current_dir_block = FcDirCacheProduce (set, &metadata);
1341
1342 if (metadata.count && !current_dir_block)
1343 goto bail1;
1344
1345 if (FcDebug () & FC_DBG_CACHE)
1346 printf ("FcDirCacheWriteDir dir \"%s\" file \"%s\"\n",
1347 dir, cache_hashed);
1348
1349 atomic = FcAtomicCreate ((FcChar8 *)cache_hashed);
1350 if (!atomic)
1351 goto bail1;
1352
1353 if (!FcAtomicLock (atomic))
1354 goto bail2;
1355
1356 /* open the original file to save relevant portions */
1357 fd_orig = open((char *)FcAtomicOrigFile (atomic), O_RDONLY | O_BINARY);
1358
1359 fd = open((char *)FcAtomicNewFile (atomic), O_RDWR | O_CREAT | O_BINARY, 0666);
1360 if (fd == -1)
1361 goto bail3;
1362
1363 FcCacheWriteString (fd, (char *) dir);
1364
1365 current_arch_machine_name = FcCacheMachineSignature ();
1366 current_arch_start = 0;
1367
1368 if (fd_orig != -1)
1369 current_arch_start =
1370 FcCacheSkipToArch(fd_orig, current_arch_machine_name);
1371
1372 if (current_arch_start < 0)
1373 {
1374 off_t offset = lseek(fd_orig, 0, SEEK_END);
1375 current_arch_start = FcCacheNextOffset (offset);
1376 }
1377
1378 if (fd_orig != -1 && !FcCacheCopyOld(fd, fd_orig, current_arch_start))
1379 goto bail4;
1380
1381 if (fd_orig != -1)
1382 close (fd_orig);
1383
1384 current_arch_start = lseek(fd, 0, SEEK_CUR);
1385 #if defined (HAVE_FTRUNCATE)
1386 if (ftruncate (fd, current_arch_start) == -1)
1387 goto bail4;
1388 #else
1389 #if defined (HAVE_CHSIZE)
1390 if (chsize (fd, current_arch_start) == -1)
1391 goto bail4;
1392 #else
1393 goto bail4;
1394 #endif
1395 #endif
1396
1397 /* allocate space for subdir names in this block */
1398 dirs_count = 0;
1399 for (i = 0; i < dirs->size; i++)
1400 dirs_count += strlen((char *)dirs->strs[i]) + 1;
1401 dirs_count ++;
1402
1403 /* now write the address of the next offset */
1404 truncate_to = FcCacheNextOffset (FcCacheNextOffset (current_arch_start + sizeof (FcCache) + dirs_count) + metadata.count) - current_arch_start;
1405 header = malloc (10 + strlen (current_arch_machine_name));
1406 if (!header)
1407 goto bail4;
1408 sprintf (header, "%8x ", (int)truncate_to);
1409 strcat (header, current_arch_machine_name);
1410 if (!FcCacheWriteString (fd, header))
1411 goto bail5;
1412
1413 for (i = 0; i < dirs->size; i++)
1414 FcCacheWriteString (fd, (char *)dirs->strs[i]);
1415 FcCacheWriteString (fd, "");
1416
1417 if (write (fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
1418 {
1419 perror("write metadata");
1420 goto bail5;
1421 }
1422 if (metadata.count)
1423 {
1424 off_t off = FcCacheNextOffset (lseek(fd, 0, SEEK_END));
1425 if (lseek (fd, off, SEEK_SET) != off)
1426 perror("lseek");
1427 else if (write (fd, current_dir_block, metadata.count) !=
1428 metadata.count)
1429 perror("write current_dir_block");
1430 free (current_dir_block);
1431 current_dir_block = 0;
1432 }
1433
1434 /* this actually serves to pad out the cache file, if needed */
1435 #if defined (HAVE_FTRUNCATE)
1436 if (ftruncate (fd, current_arch_start + truncate_to) == -1)
1437 goto bail5;
1438 #else
1439 #if defined (HAVE_CHSIZE)
1440 if (chsize (fd, current_arch_start + truncate_to) == -1)
1441 goto bail5;
1442 #else
1443 goto bail5;
1444 #endif
1445 #endif
1446
1447 free (header);
1448 close(fd);
1449 if (!FcAtomicReplaceOrig(atomic))
1450 goto bail3;
1451 FcStrFree ((FcChar8 *)cache_hashed);
1452 FcAtomicUnlock (atomic);
1453 FcAtomicDestroy (atomic);
1454 return FcTrue;
1455
1456 bail5:
1457 free (header);
1458 bail4:
1459 close (fd);
1460 bail3:
1461 FcAtomicUnlock (atomic);
1462 bail2:
1463 FcAtomicDestroy (atomic);
1464 bail1:
1465 FcStrFree ((FcChar8 *)cache_hashed);
1466 if (current_dir_block)
1467 free (current_dir_block);
1468 return FcFalse;
1469 }
1470
1471 static char *
1472 FcCacheMachineSignature ()
1473 {
1474 static char buf[MACHINE_SIGNATURE_SIZE];
1475 int32_t magic = ENDIAN_TEST;
1476 char * m = (char *)&magic;
1477
1478 sprintf (buf, "%2x%2x%2x%2x "
1479 "%4x %4x %4x %4x %4x %4x %4x %4x %4x %4x %4x %4x "
1480 "%4x %4x %4x %4x %4x %4x %4x %4x\n",
1481 m[0], m[1], m[2], m[3],
1482 (unsigned int)sizeof (char),
1483 (unsigned int)sizeof (char *),
1484 (unsigned int)sizeof (int),
1485 (unsigned int)sizeof (FcPattern),
1486 (unsigned int)sizeof (FcPatternEltPtr),
1487 (unsigned int)sizeof (struct _FcPatternElt *),
1488 (unsigned int)sizeof (FcPatternElt),
1489 (unsigned int)sizeof (FcObjectPtr),
1490 (unsigned int)sizeof (FcValueListPtr),
1491 (unsigned int)sizeof (FcValue),
1492 (unsigned int)sizeof (FcValueBinding),
1493 (unsigned int)sizeof (struct _FcValueList *),
1494 (unsigned int)sizeof (FcCharSet),
1495 (unsigned int)sizeof (FcCharLeaf **),
1496 (unsigned int)sizeof (FcChar16 *),
1497 (unsigned int)sizeof (FcChar16),
1498 (unsigned int)sizeof (FcCharLeaf),
1499 (unsigned int)sizeof (FcChar32),
1500 (unsigned int)sizeof (FcCache),
1501 #if defined (HAVE_SYSCONF)
1502 (unsigned int)sysconf(_SC_PAGESIZE));
1503 #else
1504 (unsigned int)FC_HARDCODED_PAGESIZE);
1505 #endif
1506
1507 return buf;
1508 }
1509
1510 static int banks_ptr = 0, banks_alloc = 0;
1511 int * _fcBankId = 0, * _fcBankIdx = 0;
1512 static const char ** bankDirs = 0;
1513
1514 static FcBool
1515 FcCacheHaveBank (int bank)
1516 {
1517 int i;
1518
1519 if (bank < FC_BANK_FIRST)
1520 return FcTrue;
1521
1522 for (i = 0; i < banks_ptr; i++)
1523 if (_fcBankId[i] == bank)
1524 return FcTrue;
1525
1526 return FcFalse;
1527 }
1528
1529 int
1530 FcCacheBankToIndexMTF (int bank)
1531 {
1532 int i, j;
1533
1534 for (i = 0; i < banks_ptr; i++)
1535 if (_fcBankId[_fcBankIdx[i]] == bank)
1536 {
1537 int t = _fcBankIdx[i];
1538
1539 for (j = i; j > 0; j--)
1540 _fcBankIdx[j] = _fcBankIdx[j-1];
1541 _fcBankIdx[0] = t;
1542 return t;
1543 }
1544
1545 if (banks_ptr >= banks_alloc)
1546 {
1547 int * b, * bidx;
1548 const char ** bds;
1549
1550 b = realloc (_fcBankId, (banks_alloc + 4) * sizeof(int));
1551 if (!b)
1552 return -1;
1553 _fcBankId = b;
1554
1555 bidx = realloc (_fcBankIdx, (banks_alloc + 4) * sizeof(int));
1556 if (!bidx)
1557 return -1;
1558 _fcBankIdx = bidx;
1559
1560 bds = realloc (bankDirs, (banks_alloc + 4) * sizeof (char *));
1561 if (!bds)
1562 return -1;
1563 bankDirs = bds;
1564
1565 banks_alloc += 4;
1566 }
1567
1568 i = banks_ptr++;
1569 _fcBankId[i] = bank;
1570 _fcBankIdx[i] = i;
1571 return i;
1572 }
1573
1574 static void
1575 FcCacheAddBankDir (int bank, const char * dir)
1576 {
1577 int bi = FcCacheBankToIndexMTF (bank);
1578
1579 if (bi < 0)
1580 return;
1581
1582 bankDirs[bi] = (const char *)FcStrCopy ((FcChar8 *)dir);
1583 }
1584
1585 const char *
1586 FcCacheFindBankDir (int bank)
1587 {
1588 int bi = FcCacheBankToIndex (bank);
1589 return bankDirs[bi];
1590 }
1591
1592 /*
1593 * This code implements the MD5 message-digest algorithm.
1594 * The algorithm is due to Ron Rivest. This code was
1595 * written by Colin Plumb in 1993, no copyright is claimed.
1596 * This code is in the public domain; do with it what you wish.
1597 *
1598 * Equivalent code is available from RSA Data Security, Inc.
1599 * This code has been tested against that, and is equivalent,
1600 * except that you don't need to include two pages of legalese
1601 * with every copy.
1602 *
1603 * To compute the message digest of a chunk of bytes, declare an
1604 * MD5Context structure, pass it to MD5Init, call MD5Update as
1605 * needed on buffers full of bytes, and then call MD5Final, which
1606 * will fill a supplied 16-byte array with the digest.
1607 */
1608
1609 #ifndef HIGHFIRST
1610 #define byteReverse(buf, len) /* Nothing */
1611 #else
1612 /*
1613 * Note: this code is harmless on little-endian machines.
1614 */
1615 void byteReverse(unsigned char *buf, unsigned longs)
1616 {
1617 FcChar32 t;
1618 do {
1619 t = (FcChar32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
1620 ((unsigned) buf[1] << 8 | buf[0]);
1621 *(FcChar32 *) buf = t;
1622 buf += 4;
1623 } while (--longs);
1624 }
1625 #endif
1626
1627 /*
1628 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
1629 * initialization constants.
1630 */
1631 static void MD5Init(struct MD5Context *ctx)
1632 {
1633 ctx->buf[0] = 0x67452301;
1634 ctx->buf[1] = 0xefcdab89;
1635 ctx->buf[2] = 0x98badcfe;
1636 ctx->buf[3] = 0x10325476;
1637
1638 ctx->bits[0] = 0;
1639 ctx->bits[1] = 0;
1640 }
1641
1642 /*
1643 * Update context to reflect the concatenation of another buffer full
1644 * of bytes.
1645 */
1646 static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len)
1647 {
1648 FcChar32 t;
1649
1650 /* Update bitcount */
1651
1652 t = ctx->bits[0];
1653 if ((ctx->bits[0] = t + ((FcChar32) len << 3)) < t)
1654 ctx->bits[1]++; /* Carry from low to high */
1655 ctx->bits[1] += len >> 29;
1656
1657 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
1658
1659 /* Handle any leading odd-sized chunks */
1660
1661 if (t) {
1662 unsigned char *p = (unsigned char *) ctx->in + t;
1663
1664 t = 64 - t;
1665 if (len < t) {
1666 memcpy(p, buf, len);
1667 return;
1668 }
1669 memcpy(p, buf, t);
1670 byteReverse(ctx->in, 16);
1671 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1672 buf += t;
1673 len -= t;
1674 }
1675 /* Process data in 64-byte chunks */
1676
1677 while (len >= 64) {
1678 memcpy(ctx->in, buf, 64);
1679 byteReverse(ctx->in, 16);
1680 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1681 buf += 64;
1682 len -= 64;
1683 }
1684
1685 /* Handle any remaining bytes of data. */
1686
1687 memcpy(ctx->in, buf, len);
1688 }
1689
1690 /*
1691 * Final wrapup - pad to 64-byte boundary with the bit pattern
1692 * 1 0* (64-bit count of bits processed, MSB-first)
1693 */
1694 static void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
1695 {
1696 unsigned count;
1697 unsigned char *p;
1698
1699 /* Compute number of bytes mod 64 */
1700 count = (ctx->bits[0] >> 3) & 0x3F;
1701
1702 /* Set the first char of padding to 0x80. This is safe since there is
1703 always at least one byte free */
1704 p = ctx->in + count;
1705 *p++ = 0x80;
1706
1707 /* Bytes of padding needed to make 64 bytes */
1708 count = 64 - 1 - count;
1709
1710 /* Pad out to 56 mod 64 */
1711 if (count < 8) {
1712 /* Two lots of padding: Pad the first block to 64 bytes */
1713 memset(p, 0, count);
1714 byteReverse(ctx->in, 16);
1715 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1716
1717 /* Now fill the next block with 56 bytes */
1718 memset(ctx->in, 0, 56);
1719 } else {
1720 /* Pad block to 56 bytes */
1721 memset(p, 0, count - 8);
1722 }
1723 byteReverse(ctx->in, 14);
1724
1725 /* Append length in bits and transform */
1726 ((FcChar32 *) ctx->in)[14] = ctx->bits[0];
1727 ((FcChar32 *) ctx->in)[15] = ctx->bits[1];
1728
1729 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1730 byteReverse((unsigned char *) ctx->buf, 4);
1731 memcpy(digest, ctx->buf, 16);
1732 memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */
1733 }
1734
1735
1736 /* The four core functions - F1 is optimized somewhat */
1737
1738 /* #define F1(x, y, z) (x & y | ~x & z) */
1739 #define F1(x, y, z) (z ^ (x & (y ^ z)))
1740 #define F2(x, y, z) F1(z, x, y)
1741 #define F3(x, y, z) (x ^ y ^ z)
1742 #define F4(x, y, z) (y ^ (x | ~z))
1743
1744 /* This is the central step in the MD5 algorithm. */
1745 #define MD5STEP(f, w, x, y, z, data, s) \
1746 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
1747
1748 /*
1749 * The core of the MD5 algorithm, this alters an existing MD5 hash to
1750 * reflect the addition of 16 longwords of new data. MD5Update blocks
1751 * the data and converts bytes into longwords for this routine.
1752 */
1753 static void MD5Transform(FcChar32 buf[4], FcChar32 in[16])
1754 {
1755 register FcChar32 a, b, c, d;
1756
1757 a = buf[0];
1758 b = buf[1];
1759 c = buf[2];
1760 d = buf[3];
1761
1762 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
1763 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
1764 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
1765 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
1766 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
1767 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
1768 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
1769 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
1770 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
1771 MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
1772 MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
1773 MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
1774 MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
1775 MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
1776 MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
1777 MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
1778
1779 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
1780 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
1781 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
1782 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
1783 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
1784 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
1785 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
1786 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
1787 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
1788 MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
1789 MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
1790 MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
1791 MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
1792 MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
1793 MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
1794 MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
1795
1796 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
1797 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
1798 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
1799 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
1800 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
1801 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
1802 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
1803 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
1804 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
1805 MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
1806 MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
1807 MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
1808 MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
1809 MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
1810 MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
1811 MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
1812
1813 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
1814 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
1815 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
1816 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
1817 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
1818 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
1819 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
1820 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
1821 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
1822 MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
1823 MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
1824 MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
1825 MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
1826 MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
1827 MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
1828 MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
1829
1830 buf[0] += a;
1831 buf[1] += b;
1832 buf[2] += c;
1833 buf[3] += d;
1834 }