2 * $RCSId: xc/lib/fontconfig/src/fccache.c,v 1.12 2002/08/22 07:36:44 keithp Exp $
4 * Copyright © 2000 Keith Packard
5 * Copyright © 2005 Patrick Lam
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.
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.
30 #include <sys/utsname.h>
31 #include <sys/types.h>
36 #define ENDIAN_TEST 0x12345678
37 #define MACHINE_SIGNATURE_SIZE (9 + 5*20 + 1)
44 FcDirCacheOpen (const FcChar8 * dir);
47 FcDirCacheHashName (char * cache_file, int collisions);
50 FcCacheSkipToArch (int fd, const char * arch);
53 FcCacheCopyOld (int fd, int fd_orig, off_t start);
56 FcDirCacheProduce (FcFontSet *set, FcCache * metadata);
59 FcDirCacheConsume (int fd, const char * dir, FcFontSet *set, FcConfig *config);
62 FcCacheNextOffset(off_t w);
65 FcCacheMachineSignature (void);
68 FcCacheHaveBank (int bank);
71 FcCacheAddBankDir (int bank, const char * dir);
79 static void MD5Init(struct MD5Context *ctx);
80 static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len);
81 static void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
82 static void MD5Transform(FcChar32 buf[4], FcChar32 in[16]);
84 #define FC_DBG_CACHE_REF 1024
87 FcCacheReadString (int fd, char *dest, int len)
95 size = read (fd, dest, len-1);
100 slen = strlen (dest);
102 lseek (fd, slen - size + 1, SEEK_CUR);
103 return slen < len ? dest : 0;
110 FcCacheSkipString (int fd)
116 while ( (size = read (fd, buf, sizeof (buf)-1)) > 0)
122 lseek (fd, slen - size + 1, SEEK_CUR);
129 FcCacheWriteString (int fd, const char *chars)
131 if (write (fd, chars, strlen(chars)+1) != strlen(chars)+1)
137 FcGlobalCacheDirDestroy (FcGlobalCacheDir *d)
139 FcStrSetDestroy (d->subdirs);
140 FcMemFree (FC_MEM_STRING, strlen (d->name)+1);
142 FcMemFree (FC_MEM_CACHE, sizeof (FcGlobalCacheDir));
147 FcGlobalCacheCreate (void)
149 FcGlobalCache *cache;
151 cache = malloc (sizeof (FcGlobalCache));
154 FcMemAlloc (FC_MEM_CACHE, sizeof (FcGlobalCache));
156 cache->updated = FcFalse;
162 FcGlobalCacheDestroy (FcGlobalCache *cache)
164 FcGlobalCacheDir *d, *next;
166 for (d = cache->dirs; d; d = next)
169 FcGlobalCacheDirDestroy (d);
171 FcMemFree (FC_MEM_CACHE, sizeof (FcGlobalCache));
176 FcGlobalCacheLoad (FcGlobalCache *cache,
178 const FcChar8 *cache_file,
181 char name_buf[FC_MAX_FILE_LEN];
182 FcGlobalCacheDir *d, *next;
183 FcFileTime config_time = FcConfigModifiedTime (config);
184 char * current_arch_machine_name;
185 char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
186 off_t current_arch_start;
188 struct stat cache_stat, dir_stat;
189 char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
191 if (stat ((char *) cache_file, &cache_stat) < 0)
194 cache->fd = open ((char *) cache_file, O_RDONLY | O_BINARY);
198 cache->updated = FcFalse;
200 if (!FcCacheReadString (cache->fd, name_buf, sizeof (name_buf)))
201 goto bail_and_destroy;
202 if (strcmp (name_buf, FC_GLOBAL_MAGIC_COOKIE) != 0)
203 goto bail_and_destroy;
205 current_arch_machine_name = FcCacheMachineSignature ();
206 current_arch_start = FcCacheSkipToArch(cache->fd,
207 current_arch_machine_name);
208 if (current_arch_start < 0)
211 lseek (cache->fd, current_arch_start, SEEK_SET);
212 if (!FcCacheReadString (cache->fd, candidate_arch_machine_name,
213 sizeof (candidate_arch_machine_name)))
214 goto bail_and_destroy;
215 if (strlen(candidate_arch_machine_name) == 0)
216 goto bail_and_destroy;
222 if (!FcCacheReadString (cache->fd, name_buf, sizeof (name_buf)) ||
226 /* Directory must be older than the global cache file; also
227 cache must be newer than the config file. */
228 if (stat ((char *) name_buf, &dir_stat) < 0 ||
229 dir_stat.st_mtime > cache_stat.st_mtime ||
230 (config_time.set && cache_stat.st_mtime < config_time.time))
235 FcStrSetAdd (staleDirs, FcStrCopy ((FcChar8 *)name_buf));
238 while (FcCacheReadString (cache->fd, subdirName,
239 sizeof (subdirName)) &&
243 if (read (cache->fd, &md, sizeof (FcCache)) != sizeof(FcCache))
245 perror ("read metadata");
248 off = FcCacheNextOffset (lseek(cache->fd, 0, SEEK_CUR)) + md.count;
249 if (lseek (cache->fd, off, SEEK_SET) != off)
257 d = malloc (sizeof (FcGlobalCacheDir));
261 d->next = cache->dirs;
264 d->name = (char *)FcStrCopy ((FcChar8 *)name_buf);
266 d->state = FcGCDirFileRead;
268 d->subdirs = FcStrSetCreate();
271 if (!FcCacheReadString (cache->fd, subdirName,
272 sizeof (subdirName)) ||
273 !strlen (subdirName))
275 FcStrSetAdd (d->subdirs, (FcChar8 *)subdirName);
278 d->offset = lseek (cache->fd, 0, SEEK_CUR);
279 if (read (cache->fd, &d->metadata, sizeof (FcCache)) != sizeof (FcCache))
281 targ = FcCacheNextOffset (lseek(cache->fd, 0, SEEK_CUR)) + d->metadata.count;
282 if (lseek (cache->fd, targ, SEEK_SET) != targ)
288 for (d = cache->dirs; d; d = next)
303 if (stat ((char *) cache_file, &cache_stat) == 0)
304 unlink ((char *)cache_file);
311 FcGlobalCacheReadDir (FcFontSet *set, FcStrSet *dirs, FcGlobalCache * cache, const char *dir, FcConfig *config)
319 if (!(dir = (char *)FcConfigNormalizeFontDir (config, (FcChar8 *)dir)))
320 return FcFalse; /* non-existing directory */
322 for (d = cache->dirs; d; d = d->next)
324 if (strcmp (d->name, dir) == 0)
326 if (d->state == FcGCDirDisabled)
329 if (d->state == FcGCDirFileRead)
331 lseek (cache->fd, d->offset, SEEK_SET);
332 if (!FcDirCacheConsume (cache->fd, d->name, set, config))
335 for (i = 0; i < d->subdirs->num; i++)
336 FcStrSetAdd (dirs, (FcChar8 *)d->subdirs->strs[i]);
338 d->state = FcGCDirConsumed;
347 static FcGlobalCacheDir *
348 FcGlobalCacheDirFind (FcGlobalCache *cache, const char *name)
350 FcGlobalCacheDir * d;
355 for (d = cache->dirs; d; d = d->next)
356 if (strcmp((const char *)d->name, (const char *)name) == 0)
363 FcGlobalCacheUpdate (FcGlobalCache *cache,
365 const char *orig_name,
373 name = (char *)FcConfigNormalizeFontDir (config, (FcChar8 *)orig_name);
376 fprintf(stderr, "Invalid directory name %s\n", orig_name);
380 d = FcGlobalCacheDirFind (cache, name);
384 d = malloc (sizeof (FcGlobalCacheDir));
387 d->next = cache->dirs;
390 /* free old resources */
391 FcStrFree ((FcChar8 *)d->name);
393 FcStrSetDestroy (d->subdirs);
396 cache->updated = FcTrue;
398 d->name = (char *)FcStrCopy ((FcChar8 *)name);
399 d->ent = FcDirCacheProduce (set, &d->metadata);
401 d->subdirs = FcStrSetCreate();
402 d->state = FcGCDirUpdated;
403 for (i = 0; i < dirs->num; i++)
404 FcStrSetAdd (d->subdirs, dirs->strs[i]);
409 FcGlobalCacheSave (FcGlobalCache *cache,
410 const FcChar8 *cache_file,
414 FcGlobalCacheDir *dir;
416 off_t current_arch_start = 0, truncate_to;
417 char * current_arch_machine_name, * header;
422 #if defined (HAVE_GETUID) && defined (HAVE_GETEUID)
423 /* Set-UID programs can't safely update the cache */
424 if (getuid () != geteuid ())
428 atomic = FcAtomicCreate (cache_file);
432 if (!FcAtomicLock (atomic))
434 fd = open ((char *) FcAtomicNewFile(atomic), O_RDWR | O_CREAT | O_BINARY,
438 FcCacheWriteString (fd, FC_GLOBAL_MAGIC_COOKIE);
440 fd_orig = open ((char *) FcAtomicOrigFile(atomic), O_RDONLY | O_BINARY);
442 current_arch_machine_name = FcCacheMachineSignature ();
444 current_arch_start = 0;
446 current_arch_start = FcCacheSkipToArch (fd_orig,
447 current_arch_machine_name);
449 if (current_arch_start < 0)
451 off_t i = lseek(fd_orig, 0, SEEK_END);
452 if (i < strlen (FC_GLOBAL_MAGIC_COOKIE)+1)
453 i = strlen (FC_GLOBAL_MAGIC_COOKIE)+1;
454 current_arch_start = FcCacheNextOffset (i);
457 if (!FcCacheCopyOld(fd, fd_orig, current_arch_start))
460 current_arch_start = lseek(fd, 0, SEEK_CUR);
461 if (ftruncate (fd, current_arch_start) == -1)
464 header = malloc (10 + strlen (current_arch_machine_name));
468 truncate_to = current_arch_start + strlen(current_arch_machine_name) + 11;
469 for (dir = cache->dirs; dir; dir = dir->next)
471 if (dir->state == FcGCDirDisabled)
473 truncate_to += strlen(dir->name) + 1;
474 truncate_to += sizeof (FcCache);
475 truncate_to = FcCacheNextOffset (truncate_to);
476 truncate_to += dir->metadata.count;
478 for (i = 0; i < dir->subdirs->size; i++)
479 truncate_to += strlen((char *)dir->subdirs->strs[i]) + 1;
482 truncate_to -= current_arch_start;
484 sprintf (header, "%8x ", (int)truncate_to);
485 strcat (header, current_arch_machine_name);
486 if (!FcCacheWriteString (fd, header))
489 for (dir = cache->dirs; dir; dir = dir->next)
494 if (!dir->name || dir->state == FcGCDirDisabled)
496 d = (const char *)FcConfigNormalizeFontDir (config, (const FcChar8 *)dir->name);
500 if (dir->metadata.count && !dir->ent)
502 if (dir->state == FcGCDirUpdated || fd_orig < 0)
504 fprintf(stderr, "Invalid metadata entry for %s, skipping...\n", d);
507 /* copy the old content */
508 dir->ent = malloc (dir->metadata.count);
511 perror("malloc error");
514 off = FcCacheNextOffset (dir->offset + sizeof(FcCache));
515 if (lseek (fd_orig, off, SEEK_SET) != off)
521 if (read (fd_orig, dir->ent, dir->metadata.count)
522 != dir->metadata.count)
530 FcCacheWriteString (fd, d);
532 for (i = 0; i < dir->subdirs->size; i++)
533 FcCacheWriteString (fd, (char *)dir->subdirs->strs[i]);
534 FcCacheWriteString (fd, "");
536 if (write (fd, &dir->metadata, sizeof(FcCache)) != sizeof(FcCache))
538 perror ("write metadata");
542 off = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
543 if (lseek (fd, off, SEEK_SET) != off)
549 if (dir->metadata.count)
551 if (write (fd, dir->ent, dir->metadata.count) != dir->metadata.count)
553 perror ("write dirent");
560 FcCacheWriteString (fd, "");
562 if (close (fd) == -1)
568 if (!FcAtomicReplaceOrig (atomic))
571 FcAtomicUnlock (atomic);
572 FcAtomicDestroy (atomic);
574 cache->updated = FcFalse;
585 FcAtomicDeleteNew (atomic);
587 FcAtomicUnlock (atomic);
589 FcAtomicDestroy (atomic);
594 * Find the next presumably-mmapable offset after the supplied file
598 FcCacheNextOffset(off_t w)
600 static long pagesize = -1;
602 pagesize = sysconf(_SC_PAGESIZE);
603 if (w % pagesize == 0)
606 return ((w / pagesize)+1)*pagesize;
609 /* return the address of the segment for the provided arch,
610 * or -1 if arch not found */
612 FcCacheSkipToArch (int fd, const char * arch)
614 char candidate_arch_machine_name_count[MACHINE_SIGNATURE_SIZE + 9];
615 char * candidate_arch;
616 off_t current_arch_start = 0;
618 lseek (fd, 0, SEEK_SET);
619 FcCacheSkipString (fd);
620 current_arch_start = lseek (fd, 0, SEEK_CUR);
622 /* skip arches that are not the current arch */
627 if (lseek (fd, current_arch_start, SEEK_SET) != current_arch_start)
630 if (FcCacheReadString (fd, candidate_arch_machine_name_count,
631 sizeof (candidate_arch_machine_name_count)) == 0)
633 if (!strlen(candidate_arch_machine_name_count))
635 bs = strtol(candidate_arch_machine_name_count, &candidate_arch, 16);
637 /* count = 0 should probably be distinguished from the !bs condition */
638 if (!bs || bs < strlen (candidate_arch_machine_name_count))
641 candidate_arch++; /* skip leading space */
643 if (strcmp (candidate_arch, arch)==0)
644 return current_arch_start;
645 current_arch_start += bs;
646 current_arch_start = FcCacheNextOffset (current_arch_start);
652 /* Cuts out the segment at the file pointer (moves everything else
653 * down to cover it), and leaves the file pointer at the end of the
656 FcCacheCopyOld (int fd, int fd_orig, off_t start)
658 char * buf = malloc (8192);
659 char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
661 int c, bytes_skipped;
668 lseek (fd, 0, SEEK_SET); lseek (fd_orig, 0, SEEK_SET);
669 FcCacheSkipString (fd); FcCacheSkipString (fd_orig);
676 if ((c = read (fd_orig, buf, b)) <= 0)
678 if (write (fd, buf, c) < 0)
685 lseek (fd, start, SEEK_SET);
686 if (FcCacheReadString (fd, candidate_arch_machine_name,
687 sizeof (candidate_arch_machine_name)) == 0)
689 if (!strlen(candidate_arch_machine_name))
692 bs = strtol(candidate_arch_machine_name, 0, 16);
699 lseek (fd, start+bs+bytes_skipped, SEEK_SET);
700 if ((c = read (fd, buf, 8192)) <= 0)
702 lseek (fd, start+bytes_skipped, SEEK_SET);
703 if (write (fd, buf, c) < 0)
708 lseek (fd, start+bytes_skipped, SEEK_SET);
719 /* Does not check that the cache has the appropriate arch section. */
720 /* Also, this can be fooled if the original location has a stale
721 * cache, and the hashed location has an up-to-date cache. Oh well,
722 * sucks to be you in that case! */
724 FcDirCacheValid (const FcChar8 *dir)
726 struct stat file_stat, dir_stat;
729 if (stat ((char *) dir, &dir_stat) < 0)
732 fd = FcDirCacheOpen (dir);
736 if (fstat (fd, &file_stat) < 0)
742 * If the directory has been modified more recently than
743 * the cache file, the cache is not valid
745 if (dir_stat.st_mtime > file_stat.st_mtime)
755 /* Assumes that the cache file in 'dir' exists.
756 * Checks that the cache has the appropriate arch section. */
758 FcDirCacheHasCurrentArch (const FcChar8 *dir)
761 off_t current_arch_start;
762 char *current_arch_machine_name;
764 char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
766 fd = FcDirCacheOpen (dir);
770 current_arch_machine_name = FcCacheMachineSignature();
771 current_arch_start = FcCacheSkipToArch(fd, current_arch_machine_name);
773 if (current_arch_start >= 0)
775 if (lseek (fd, current_arch_start, SEEK_SET) != current_arch_start)
778 FcCacheSkipString (fd);
780 while (FcCacheReadString (fd, subdirName, sizeof (subdirName)) && strlen (subdirName) > 0)
783 if (read(fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
786 if (metadata.magic != FC_CACHE_MAGIC)
792 if (current_arch_start < 0)
804 FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config)
807 char *cache_hashed = 0;
809 struct stat cache_stat;
810 char name_buf[FC_MAX_FILE_LEN];
812 dir = FcConfigNormalizeFontDir (config, dir);
813 cache_file = (char *)FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
817 /* First remove normal cache file. */
818 if (stat ((char *) cache_file, &cache_stat) == 0)
819 unlink ((char *)cache_file);
821 /* Next remove any applicable hashed files. */
822 fd = -1; collisions = 0;
826 FcStrFree ((FcChar8 *)cache_hashed);
828 cache_hashed = FcDirCacheHashName (cache_file, collisions++);
834 fd = open(cache_hashed, O_RDONLY | O_BINARY);
837 FcStrFree ((FcChar8 *)cache_file);
841 if (!FcCacheReadString (fd, name_buf, sizeof (name_buf)) || !strlen(name_buf))
843 FcStrFree ((FcChar8 *)cache_hashed);
846 } while (strcmp (name_buf, cache_file) != 0);
850 if (stat ((char *) cache_hashed, &cache_stat) == 0 &&
851 unlink ((char *)cache_hashed) != 0)
853 FcStrFree ((FcChar8 *)cache_hashed);
857 FcStrFree ((FcChar8 *)cache_file);
858 FcStrFree ((FcChar8 *)cache_hashed);
862 FcStrFree ((FcChar8 *)cache_file);
867 FcCacheReadDirs (FcConfig * config, FcGlobalCache * cache,
868 FcStrList *list, FcFontSet * set, FcStrSet *processed_dirs)
878 * Read in the results from 'list'.
880 while ((dir = FcStrListNext (list)))
882 if (!FcConfigAcceptFilename (config, dir))
885 /* Skip this directory if already updated
886 * to avoid the looped directories via symlinks
887 * Clearly a dir not in fonts.conf shouldn't be globally cached.
889 dir = (FcChar8 *)FcConfigNormalizeFontDir (config, dir);
893 if (FcStrSetMember (processed_dirs, dir))
895 if (!FcStrSetAdd (processed_dirs, dir))
898 subdirs = FcStrSetCreate ();
901 fprintf (stderr, "Can't create directory set\n");
906 if (access ((char *) dir, X_OK) < 0)
914 fprintf (stderr, "\"%s\": ", dir);
918 FcStrSetDestroy (subdirs);
921 if (stat ((char *) dir, &statb) == -1)
923 fprintf (stderr, "\"%s\": ", dir);
925 FcStrSetDestroy (subdirs);
929 if (!S_ISDIR (statb.st_mode))
931 fprintf (stderr, "\"%s\": not a directory, skipping\n", dir);
932 FcStrSetDestroy (subdirs);
935 if (FcDirCacheValid (dir) &&
936 FcDirCacheHasCurrentArch (dir) &&
937 FcDirCacheRead (set, subdirs, dir, config))
939 /* if an old entry is found in the global cache, disable it */
940 if ((d = FcGlobalCacheDirFind (cache, (const char *)dir)) != NULL)
942 d->state = FcGCDirDisabled;
943 /* save the updated config later without this entry */
944 cache->updated = FcTrue;
949 if (FcDebug () & FC_DBG_FONTSET)
950 printf ("cache scan dir %s\n", dir);
952 FcDirScanConfig (set, subdirs, cache,
953 config->blanks, dir, FcFalse, config);
955 sublist = FcStrListCreate (subdirs);
956 FcStrSetDestroy (subdirs);
959 fprintf (stderr, "Can't create subdir list in \"%s\"\n", dir);
963 ret += FcCacheReadDirs (config, cache, sublist, set, processed_dirs);
965 FcStrListDone (list);
970 FcCacheRead (FcConfig *config, FcGlobalCache * cache)
972 FcFontSet *s = FcFontSetCreate();
973 FcStrSet *processed_dirs;
978 processed_dirs = FcStrSetCreate();
982 if (FcCacheReadDirs (config, cache, FcConfigGetConfigDirs (config), s, processed_dirs))
985 FcStrSetDestroy (processed_dirs);
989 FcStrSetDestroy (processed_dirs);
991 FcFontSetDestroy (s);
995 static const char bin2hex[] = { '0', '1', '2', '3',
998 'c', 'd', 'e', 'f' };
1001 FcDirCacheHashName (char * cache_file, int collisions)
1003 unsigned char hash[16], hex_hash[33];
1005 unsigned char uscore = '_';
1008 struct MD5Context ctx;
1011 MD5Update (&ctx, (unsigned char *)cache_file, strlen (cache_file));
1013 for (i = 0; i < collisions; i++)
1014 MD5Update (&ctx, &uscore, 1);
1016 MD5Final (hash, &ctx);
1018 for (cnt = 0; cnt < 16; ++cnt)
1020 hex_hash[2*cnt] = bin2hex[hash[cnt] >> 4];
1021 hex_hash[2*cnt+1] = bin2hex[hash[cnt] & 0xf];
1025 tmp = FcStrPlus ((FcChar8 *)hex_hash, (FcChar8 *)FC_CACHE_SUFFIX);
1029 cache_hashed = (char *)FcStrPlus ((FcChar8 *)PKGCACHEDIR"/", tmp);
1032 return cache_hashed;
1035 /* Opens the hashed name for cache_file.
1036 * This would fail in the unlikely event of a collision and subsequent
1037 * removal of the file which originally caused the collision. */
1039 FcDirCacheOpen (const FcChar8 *dir)
1042 int fd = -1, collisions = 0;
1043 char *cache_file, *cache_hashed;
1044 char name_buf[FC_MAX_FILE_LEN];
1045 struct stat dir_stat;
1047 if (stat ((char *)dir, &dir_stat) == -1)
1050 cache_file = (char *)FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
1058 FcChar8 *name_buf_dir;
1063 cache_hashed = FcDirCacheHashName (cache_file, collisions++);
1066 FcStrFree ((FcChar8 *)cache_file);
1070 fd = open(cache_hashed, O_RDONLY | O_BINARY);
1071 FcStrFree ((FcChar8 *)cache_hashed);
1075 if (!FcCacheReadString (fd, name_buf, sizeof (name_buf)) ||
1079 name_buf_dir = FcStrDirname ((FcChar8 *)name_buf);
1080 if (stat ((char *)name_buf_dir, &c) == -1)
1082 FcStrFree (name_buf_dir);
1085 FcStrFree (name_buf_dir);
1086 found = (c.st_ino == dir_stat.st_ino) && (c.st_dev == dir_stat.st_dev);
1089 if (!found || fd < 0)
1093 fd = open(cache_file, O_RDONLY | O_BINARY);
1096 FcStrFree ((FcChar8 *)cache_file);
1100 /* read serialized state from the cache file */
1102 FcDirCacheRead (FcFontSet * set, FcStrSet * dirs, const FcChar8 *dir, FcConfig *config)
1105 char *current_arch_machine_name;
1106 char candidate_arch_machine_name[9+MACHINE_SIGNATURE_SIZE];
1107 off_t current_arch_start = 0;
1108 char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
1110 fd = FcDirCacheOpen (dir);
1114 current_arch_machine_name = FcCacheMachineSignature();
1115 current_arch_start = FcCacheSkipToArch(fd,
1116 current_arch_machine_name);
1117 if (current_arch_start < 0)
1120 lseek (fd, current_arch_start, SEEK_SET);
1121 if (FcCacheReadString (fd, candidate_arch_machine_name,
1122 sizeof (candidate_arch_machine_name)) == 0)
1125 while (FcCacheReadString (fd, subdirName, sizeof (subdirName)) && strlen (subdirName) > 0)
1126 FcStrSetAdd (dirs, (FcChar8 *)subdirName);
1128 if (!FcDirCacheConsume (fd, (const char *)dir, set, config))
1141 FcDirCacheConsume (int fd, const char * dir, FcFontSet *set, FcConfig *config)
1144 void * current_dir_block;
1147 if (read(fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
1149 if (metadata.magic != FC_CACHE_MAGIC)
1152 if (!metadata.count)
1154 pos = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
1155 lseek (fd, pos, SEEK_SET);
1157 FcConfigAddFontDir (config, (FcChar8 *)dir);
1161 pos = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
1162 current_dir_block = mmap (0, metadata.count,
1163 PROT_READ, MAP_SHARED, fd, pos);
1164 lseek (fd, pos+metadata.count, SEEK_SET);
1165 if (current_dir_block == MAP_FAILED)
1168 FcCacheAddBankDir (metadata.bank, dir);
1170 FcConfigAddFontDir (config, (FcChar8 *)dir);
1172 if (!FcFontSetUnserialize (&metadata, set, current_dir_block))
1179 FcDirCacheProduce (FcFontSet *set, FcCache *metadata)
1181 void * current_dir_block, * final_dir_block;
1182 static unsigned int rand_state = 0;
1183 int bank, needed_bytes_no_align;
1186 rand_state = time(0L);
1187 bank = rand_r(&rand_state);
1189 while (FcCacheHaveBank(bank))
1190 bank = rand_r(&rand_state);
1192 memset (metadata, 0, sizeof(FcCache));
1194 needed_bytes_no_align = FcFontSetNeededBytes (set);
1195 metadata->count = needed_bytes_no_align +
1196 FcFontSetNeededBytesAlign ();
1197 metadata->magic = FC_CACHE_MAGIC;
1198 metadata->bank = bank;
1200 if (!needed_bytes_no_align) /* not a failure, no fonts to write */
1202 /* no, you don't really need to write any bytes at all. */
1203 metadata->count = 0;
1207 current_dir_block = malloc (metadata->count);
1208 if (!current_dir_block)
1210 /* shut up valgrind */
1211 memset (current_dir_block, 0, metadata->count);
1212 final_dir_block = FcFontSetDistributeBytes (metadata, current_dir_block);
1214 if ((void *)((char *)current_dir_block+metadata->count) < final_dir_block)
1217 if (!FcFontSetSerialize (bank, set))
1220 return current_dir_block;
1223 free (current_dir_block);
1227 /* write serialized state to the cache file */
1229 FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir)
1233 int fd, fd_orig, i, dirs_count;
1236 off_t current_arch_start = 0, truncate_to;
1237 char name_buf[FC_MAX_FILE_LEN];
1240 char *current_arch_machine_name, * header;
1241 void *current_dir_block = 0;
1243 dir = FcConfigNormalizeFontDir (FcConfigGetCurrent(), dir);
1247 cache_file = (char *)FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
1251 /* Ensure that we're not trampling a cache for some other dir. */
1252 /* This is slightly different from FcDirCacheOpen, since it
1253 * needs the filename, not the file descriptor. */
1254 fd = -1; collisions = 0;
1257 cache_hashed = FcDirCacheHashName (cache_file, collisions++);
1263 fd = open(cache_hashed, O_RDONLY | O_BINARY);
1266 if(!FcCacheReadString (fd, name_buf, sizeof (name_buf)) || !strlen(name_buf))
1273 if (strcmp (name_buf, cache_file) != 0)
1279 current_dir_block = FcDirCacheProduce (set, &metadata);
1281 if (metadata.count && !current_dir_block)
1284 if (FcDebug () & FC_DBG_CACHE)
1285 printf ("FcDirCacheWriteDir cache_file \"%s\"\n", cache_file);
1287 atomic = FcAtomicCreate ((FcChar8 *)cache_hashed);
1291 if (!FcAtomicLock (atomic))
1293 /* Now try rewriting the original version of the file. */
1294 FcAtomicDestroy (atomic);
1296 atomic = FcAtomicCreate ((FcChar8 *)cache_file);
1297 fd_orig = open (cache_file, O_RDONLY | O_BINARY);
1299 fd_orig = open((char *)FcAtomicOrigFile (atomic), O_RDONLY | O_BINARY);
1301 fd = open((char *)FcAtomicNewFile (atomic), O_RDWR | O_CREAT | O_BINARY, 0666);
1306 /* In all cases, try opening the real location of the cache file first. */
1307 /* (even if that's not atomic.) */
1308 fd_orig = open (cache_file, O_RDONLY | O_BINARY);
1310 fd_orig = open((char *)FcAtomicOrigFile (atomic), O_RDONLY | O_BINARY);
1312 fd = open((char *)FcAtomicNewFile (atomic), O_RDWR | O_CREAT | O_BINARY, 0666);
1316 FcCacheWriteString (fd, cache_file);
1318 current_arch_machine_name = FcCacheMachineSignature ();
1319 current_arch_start = 0;
1322 current_arch_start =
1323 FcCacheSkipToArch(fd_orig, current_arch_machine_name);
1325 if (current_arch_start < 0)
1327 off_t i = lseek(fd_orig, 0, SEEK_END);
1328 current_arch_start = FcCacheNextOffset (i);
1331 if (fd_orig != -1 && !FcCacheCopyOld(fd, fd_orig, current_arch_start))
1337 current_arch_start = lseek(fd, 0, SEEK_CUR);
1338 if (ftruncate (fd, current_arch_start) == -1)
1341 /* allocate space for subdir names in this block */
1343 for (i = 0; i < dirs->size; i++)
1344 dirs_count += strlen((char *)dirs->strs[i]) + 1;
1347 /* now write the address of the next offset */
1348 truncate_to = FcCacheNextOffset (FcCacheNextOffset (current_arch_start + sizeof (FcCache) + dirs_count) + metadata.count) - current_arch_start;
1349 header = malloc (10 + strlen (current_arch_machine_name));
1352 sprintf (header, "%8x ", (int)truncate_to);
1353 strcat (header, current_arch_machine_name);
1354 if (!FcCacheWriteString (fd, header))
1357 for (i = 0; i < dirs->size; i++)
1358 FcCacheWriteString (fd, (char *)dirs->strs[i]);
1359 FcCacheWriteString (fd, "");
1361 if (write (fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
1363 perror("write metadata");
1368 off_t off = FcCacheNextOffset (lseek(fd, 0, SEEK_END));
1369 if (lseek (fd, off, SEEK_SET) != off)
1371 else if (write (fd, current_dir_block, metadata.count) !=
1373 perror("write current_dir_block");
1374 free (current_dir_block);
1375 current_dir_block = 0;
1378 /* this actually serves to pad out the cache file, if needed */
1379 if (ftruncate (fd, current_arch_start + truncate_to) == -1)
1384 if (!FcAtomicReplaceOrig(atomic))
1386 FcStrFree ((FcChar8 *)cache_hashed);
1387 FcStrFree ((FcChar8 *)cache_file);
1388 FcAtomicUnlock (atomic);
1389 FcAtomicDestroy (atomic);
1397 FcAtomicUnlock (atomic);
1399 FcAtomicDestroy (atomic);
1401 FcStrFree ((FcChar8 *)cache_hashed);
1403 unlink ((char *)cache_file);
1404 FcStrFree ((FcChar8 *)cache_file);
1405 if (current_dir_block)
1406 free (current_dir_block);
1412 FcCacheMachineSignature ()
1414 static char buf[MACHINE_SIGNATURE_SIZE];
1415 int32_t magic = ENDIAN_TEST;
1416 char * m = (char *)&magic;
1418 sprintf (buf, "%2x%2x%2x%2x "
1419 "%4x %4x %4x %4x %4x %4x %4x %4x %4x %4x %4x %4x "
1420 "%4x %4x %4x %4x %4x %4x %4x %4x\n",
1421 m[0], m[1], m[2], m[3],
1422 (unsigned int)sizeof (char),
1423 (unsigned int)sizeof (char *),
1424 (unsigned int)sizeof (int),
1425 (unsigned int)sizeof (FcPattern),
1426 (unsigned int)sizeof (FcPatternEltPtr),
1427 (unsigned int)sizeof (struct _FcPatternElt *),
1428 (unsigned int)sizeof (FcPatternElt),
1429 (unsigned int)sizeof (FcObjectPtr),
1430 (unsigned int)sizeof (FcValueListPtr),
1431 (unsigned int)sizeof (FcValue),
1432 (unsigned int)sizeof (FcValueBinding),
1433 (unsigned int)sizeof (struct _FcValueList *),
1434 (unsigned int)sizeof (FcCharSet),
1435 (unsigned int)sizeof (FcCharLeaf **),
1436 (unsigned int)sizeof (FcChar16 *),
1437 (unsigned int)sizeof (FcChar16),
1438 (unsigned int)sizeof (FcCharLeaf),
1439 (unsigned int)sizeof (FcChar32),
1440 (unsigned int)sizeof (FcCache),
1441 (unsigned int)sysconf(_SC_PAGESIZE));
1446 static int banks_ptr = 0, banks_alloc = 0;
1447 int * _fcBankId = 0, * _fcBankIdx = 0;
1448 static const char ** bankDirs = 0;
1451 FcCacheHaveBank (int bank)
1455 if (bank < FC_BANK_FIRST)
1458 for (i = 0; i < banks_ptr; i++)
1459 if (_fcBankId[i] == bank)
1466 FcCacheBankToIndexMTF (int bank)
1470 for (i = 0; i < banks_ptr; i++)
1471 if (_fcBankId[_fcBankIdx[i]] == bank)
1473 int t = _fcBankIdx[i];
1475 for (j = i; j > 0; j--)
1476 _fcBankIdx[j] = _fcBankIdx[j-1];
1481 if (banks_ptr >= banks_alloc)
1486 b = realloc (_fcBankId, (banks_alloc + 4) * sizeof(int));
1491 bidx = realloc (_fcBankIdx, (banks_alloc + 4) * sizeof(int));
1496 bds = realloc (bankDirs, (banks_alloc + 4) * sizeof (char *));
1505 _fcBankId[i] = bank;
1511 FcCacheAddBankDir (int bank, const char * dir)
1513 int bi = FcCacheBankToIndexMTF (bank);
1518 bankDirs[bi] = (const char *)FcStrCopy ((FcChar8 *)dir);
1522 FcCacheFindBankDir (int bank)
1524 int bi = FcCacheBankToIndex (bank);
1525 return bankDirs[bi];
1529 * This code implements the MD5 message-digest algorithm.
1530 * The algorithm is due to Ron Rivest. This code was
1531 * written by Colin Plumb in 1993, no copyright is claimed.
1532 * This code is in the public domain; do with it what you wish.
1534 * Equivalent code is available from RSA Data Security, Inc.
1535 * This code has been tested against that, and is equivalent,
1536 * except that you don't need to include two pages of legalese
1539 * To compute the message digest of a chunk of bytes, declare an
1540 * MD5Context structure, pass it to MD5Init, call MD5Update as
1541 * needed on buffers full of bytes, and then call MD5Final, which
1542 * will fill a supplied 16-byte array with the digest.
1546 #define byteReverse(buf, len) /* Nothing */
1549 * Note: this code is harmless on little-endian machines.
1551 void byteReverse(unsigned char *buf, unsigned longs)
1555 t = (FcChar32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
1556 ((unsigned) buf[1] << 8 | buf[0]);
1557 *(FcChar32 *) buf = t;
1564 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
1565 * initialization constants.
1567 static void MD5Init(struct MD5Context *ctx)
1569 ctx->buf[0] = 0x67452301;
1570 ctx->buf[1] = 0xefcdab89;
1571 ctx->buf[2] = 0x98badcfe;
1572 ctx->buf[3] = 0x10325476;
1579 * Update context to reflect the concatenation of another buffer full
1582 static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len)
1586 /* Update bitcount */
1589 if ((ctx->bits[0] = t + ((FcChar32) len << 3)) < t)
1590 ctx->bits[1]++; /* Carry from low to high */
1591 ctx->bits[1] += len >> 29;
1593 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
1595 /* Handle any leading odd-sized chunks */
1598 unsigned char *p = (unsigned char *) ctx->in + t;
1602 memcpy(p, buf, len);
1606 byteReverse(ctx->in, 16);
1607 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1611 /* Process data in 64-byte chunks */
1614 memcpy(ctx->in, buf, 64);
1615 byteReverse(ctx->in, 16);
1616 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1621 /* Handle any remaining bytes of data. */
1623 memcpy(ctx->in, buf, len);
1627 * Final wrapup - pad to 64-byte boundary with the bit pattern
1628 * 1 0* (64-bit count of bits processed, MSB-first)
1630 static void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
1635 /* Compute number of bytes mod 64 */
1636 count = (ctx->bits[0] >> 3) & 0x3F;
1638 /* Set the first char of padding to 0x80. This is safe since there is
1639 always at least one byte free */
1640 p = ctx->in + count;
1643 /* Bytes of padding needed to make 64 bytes */
1644 count = 64 - 1 - count;
1646 /* Pad out to 56 mod 64 */
1648 /* Two lots of padding: Pad the first block to 64 bytes */
1649 memset(p, 0, count);
1650 byteReverse(ctx->in, 16);
1651 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1653 /* Now fill the next block with 56 bytes */
1654 memset(ctx->in, 0, 56);
1656 /* Pad block to 56 bytes */
1657 memset(p, 0, count - 8);
1659 byteReverse(ctx->in, 14);
1661 /* Append length in bits and transform */
1662 ((FcChar32 *) ctx->in)[14] = ctx->bits[0];
1663 ((FcChar32 *) ctx->in)[15] = ctx->bits[1];
1665 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1666 byteReverse((unsigned char *) ctx->buf, 4);
1667 memcpy(digest, ctx->buf, 16);
1668 memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */
1672 /* The four core functions - F1 is optimized somewhat */
1674 /* #define F1(x, y, z) (x & y | ~x & z) */
1675 #define F1(x, y, z) (z ^ (x & (y ^ z)))
1676 #define F2(x, y, z) F1(z, x, y)
1677 #define F3(x, y, z) (x ^ y ^ z)
1678 #define F4(x, y, z) (y ^ (x | ~z))
1680 /* This is the central step in the MD5 algorithm. */
1681 #define MD5STEP(f, w, x, y, z, data, s) \
1682 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
1685 * The core of the MD5 algorithm, this alters an existing MD5 hash to
1686 * reflect the addition of 16 longwords of new data. MD5Update blocks
1687 * the data and converts bytes into longwords for this routine.
1689 static void MD5Transform(FcChar32 buf[4], FcChar32 in[16])
1691 register FcChar32 a, b, c, d;
1698 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
1699 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
1700 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
1701 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
1702 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
1703 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
1704 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
1705 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
1706 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
1707 MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
1708 MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
1709 MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
1710 MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
1711 MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
1712 MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
1713 MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
1715 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
1716 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
1717 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
1718 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
1719 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
1720 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
1721 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
1722 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
1723 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
1724 MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
1725 MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
1726 MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
1727 MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
1728 MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
1729 MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
1730 MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
1732 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
1733 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
1734 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
1735 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
1736 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
1737 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
1738 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
1739 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
1740 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
1741 MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
1742 MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
1743 MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
1744 MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
1745 MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
1746 MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
1747 MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
1749 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
1750 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
1751 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
1752 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
1753 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
1754 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
1755 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
1756 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
1757 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
1758 MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
1759 MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
1760 MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
1761 MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
1762 MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
1763 MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
1764 MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);