]> git.wh0rd.org - fontconfig.git/blob - src/fccache.c
Make fc-arch stuff cross-compiling-safe
[fontconfig.git] / src / fccache.c
1 /*
2 * Copyright © 2000 Keith Packard
3 * Copyright © 2005 Patrick Lam
4 *
5 * Permission to use, copy, modify, distribute, and sell this software and its
6 * documentation for any purpose is hereby granted without fee, provided that
7 * the above copyright notice appear in all copies and that both that
8 * copyright notice and this permission notice appear in supporting
9 * documentation, and that the name of the author(s) not be used in
10 * advertising or publicity pertaining to distribution of the software without
11 * specific, written prior permission. The authors make no
12 * representations about the suitability of this software for any purpose. It
13 * is provided "as is" without express or implied warranty.
14 *
15 * THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
17 * EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
19 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
20 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
21 * PERFORMANCE OF THIS SOFTWARE.
22 */
23
24 #include "fcint.h"
25 #include "fcarch.h"
26 #include <stdio.h>
27 #include <fcntl.h>
28 #include <dirent.h>
29 #include <string.h>
30 #include <sys/types.h>
31 #include <assert.h>
32 #if defined(HAVE_MMAP) || defined(__CYGWIN__)
33 # include <unistd.h>
34 # include <sys/mman.h>
35 #elif defined(_WIN32)
36 # define _WIN32_WINNT 0x0500
37 # include <windows.h>
38 #endif
39
40 #ifndef O_BINARY
41 #define O_BINARY 0
42 #endif
43
44
45 struct MD5Context {
46 FcChar32 buf[4];
47 FcChar32 bits[2];
48 unsigned char in[64];
49 };
50
51 static void MD5Init(struct MD5Context *ctx);
52 static void MD5Update(struct MD5Context *ctx, const unsigned char *buf, unsigned len);
53 static void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
54 static void MD5Transform(FcChar32 buf[4], FcChar32 in[16]);
55
56 #define CACHEBASE_LEN (1 + 32 + 1 + sizeof (FC_ARCHITECTURE) + sizeof (FC_CACHE_SUFFIX))
57
58 #ifdef _WIN32
59
60 #include <windows.h>
61
62 #ifdef __GNUC__
63 typedef long long INT64;
64 #define EPOCH_OFFSET 11644473600ll
65 #else
66 #define EPOCH_OFFSET 11644473600i64
67 typedef __int64 INT64;
68 #endif
69
70 /* Workaround for problems in the stat() in the Microsoft C library:
71 *
72 * 1) stat() uses FindFirstFile() to get the file
73 * attributes. Unfortunately this API doesn't return correct values
74 * for modification time of a directory until some time after a file
75 * or subdirectory has been added to the directory. (This causes
76 * run-test.sh to fail, for instance.) GetFileAttributesEx() is
77 * better, it returns the updated timestamp right away.
78 *
79 * 2) stat() does some strange things related to backward
80 * compatibility with the local time timestamps on FAT volumes and
81 * daylight saving time. This causes problems after the switches
82 * to/from daylight saving time. See
83 * http://bugzilla.gnome.org/show_bug.cgi?id=154968 , especially
84 * comment #30, and http://www.codeproject.com/datetime/dstbugs.asp .
85 * We don't need any of that, FAT and Win9x are as good as dead. So
86 * just use the UTC timestamps from NTFS, converted to the Unix epoch.
87 */
88
89 int
90 FcStat (const char *file, struct stat *statb)
91 {
92 WIN32_FILE_ATTRIBUTE_DATA wfad;
93 char full_path_name[MAX_PATH];
94 char *basename;
95 DWORD rc;
96
97 if (!GetFileAttributesEx (file, GetFileExInfoStandard, &wfad))
98 return -1;
99
100 statb->st_dev = 0;
101
102 /* Calculate a pseudo inode number as a hash of the full path name.
103 * Call GetLongPathName() to get the spelling of the path name as it
104 * is on disk.
105 */
106 rc = GetFullPathName (file, sizeof (full_path_name), full_path_name, &basename);
107 if (rc == 0 || rc > sizeof (full_path_name))
108 return -1;
109
110 rc = GetLongPathName (full_path_name, full_path_name, sizeof (full_path_name));
111 statb->st_ino = FcStringHash (full_path_name);
112
113 statb->st_mode = _S_IREAD | _S_IWRITE;
114 statb->st_mode |= (statb->st_mode >> 3) | (statb->st_mode >> 6);
115
116 if (wfad.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
117 statb->st_mode |= _S_IFDIR;
118 else
119 statb->st_mode |= _S_IFREG;
120
121 statb->st_nlink = 1;
122 statb->st_uid = statb->st_gid = 0;
123 statb->st_rdev = 0;
124
125 if (wfad.nFileSizeHigh > 0)
126 return -1;
127 statb->st_size = wfad.nFileSizeLow;
128
129 statb->st_atime = (*(INT64 *)&wfad.ftLastAccessTime)/10000000 - EPOCH_OFFSET;
130 statb->st_mtime = (*(INT64 *)&wfad.ftLastWriteTime)/10000000 - EPOCH_OFFSET;
131 statb->st_ctime = statb->st_mtime;
132
133 return 0;
134 }
135 #endif
136
137 static const char bin2hex[] = { '0', '1', '2', '3',
138 '4', '5', '6', '7',
139 '8', '9', 'a', 'b',
140 'c', 'd', 'e', 'f' };
141
142 static FcChar8 *
143 FcDirCacheBasename (const FcChar8 * dir, FcChar8 cache_base[CACHEBASE_LEN])
144 {
145 unsigned char hash[16];
146 FcChar8 *hex_hash;
147 int cnt;
148 struct MD5Context ctx;
149
150 MD5Init (&ctx);
151 MD5Update (&ctx, (const unsigned char *)dir, strlen ((const char *) dir));
152
153 MD5Final (hash, &ctx);
154
155 cache_base[0] = '/';
156 hex_hash = cache_base + 1;
157 for (cnt = 0; cnt < 16; ++cnt)
158 {
159 hex_hash[2*cnt ] = bin2hex[hash[cnt] >> 4];
160 hex_hash[2*cnt+1] = bin2hex[hash[cnt] & 0xf];
161 }
162 hex_hash[2*cnt] = 0;
163 strcat ((char *) cache_base, "-" FC_ARCHITECTURE FC_CACHE_SUFFIX);
164
165 return cache_base;
166 }
167
168 FcBool
169 FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config)
170 {
171 FcChar8 *cache_hashed = NULL;
172 FcChar8 cache_base[CACHEBASE_LEN];
173 FcStrList *list;
174 FcChar8 *cache_dir;
175
176 FcDirCacheBasename (dir, cache_base);
177
178 list = FcStrListCreate (config->cacheDirs);
179 if (!list)
180 return FcFalse;
181
182 while ((cache_dir = FcStrListNext (list)))
183 {
184 cache_hashed = FcStrPlus (cache_dir, cache_base);
185 if (!cache_hashed)
186 break;
187 (void) unlink ((char *) cache_hashed);
188 FcStrFree (cache_hashed);
189 }
190 FcStrListDone (list);
191 /* return FcFalse if something went wrong */
192 if (cache_dir)
193 return FcFalse;
194 return FcTrue;
195 }
196
197 static int
198 FcDirCacheOpenFile (const FcChar8 *cache_file, struct stat *file_stat)
199 {
200 int fd;
201
202 #ifdef _WIN32
203 if (FcStat (cache_file, file_stat) < 0)
204 return -1;
205 #endif
206 fd = open((char *) cache_file, O_RDONLY | O_BINARY);
207 if (fd < 0)
208 return fd;
209 #ifndef _WIN32
210 if (fstat (fd, file_stat) < 0)
211 {
212 close (fd);
213 return -1;
214 }
215 #endif
216 return fd;
217 }
218
219 /*
220 * Look for a cache file for the specified dir. Attempt
221 * to use each one we find, stopping when the callback
222 * indicates success
223 */
224 static FcBool
225 FcDirCacheProcess (FcConfig *config, const FcChar8 *dir,
226 FcBool (*callback) (int fd, struct stat *fd_stat,
227 struct stat *dir_stat, void *closure),
228 void *closure, FcChar8 **cache_file_ret)
229 {
230 int fd = -1;
231 FcChar8 cache_base[CACHEBASE_LEN];
232 FcStrList *list;
233 FcChar8 *cache_dir;
234 struct stat file_stat, dir_stat;
235 FcBool ret = FcFalse;
236
237 if (FcStat ((char *) dir, &dir_stat) < 0)
238 return FcFalse;
239
240 FcDirCacheBasename (dir, cache_base);
241
242 list = FcStrListCreate (config->cacheDirs);
243 if (!list)
244 return FcFalse;
245
246 while ((cache_dir = FcStrListNext (list)))
247 {
248 FcChar8 *cache_hashed = FcStrPlus (cache_dir, cache_base);
249 if (!cache_hashed)
250 break;
251 fd = FcDirCacheOpenFile (cache_hashed, &file_stat);
252 if (fd >= 0) {
253 ret = (*callback) (fd, &file_stat, &dir_stat, closure);
254 close (fd);
255 if (ret)
256 {
257 if (cache_file_ret)
258 *cache_file_ret = cache_hashed;
259 else
260 FcStrFree (cache_hashed);
261 break;
262 }
263 }
264 FcStrFree (cache_hashed);
265 }
266 FcStrListDone (list);
267
268 return ret;
269 }
270
271 #define FC_CACHE_MIN_MMAP 1024
272
273 /*
274 * Skip list element, make sure the 'next' pointer is the last thing
275 * in the structure, it will be allocated large enough to hold all
276 * of the necessary pointers
277 */
278
279 typedef struct _FcCacheSkip FcCacheSkip;
280
281 struct _FcCacheSkip {
282 FcCache *cache;
283 int ref;
284 intptr_t size;
285 dev_t cache_dev;
286 ino_t cache_ino;
287 time_t cache_mtime;
288 FcCacheSkip *next[1];
289 };
290
291 /*
292 * The head of the skip list; pointers for every possible level
293 * in the skip list, plus the largest level in the list
294 */
295
296 #define FC_CACHE_MAX_LEVEL 16
297
298 static FcCacheSkip *fcCacheChains[FC_CACHE_MAX_LEVEL];
299 static int fcCacheMaxLevel;
300
301 #if HAVE_RANDOM
302 # define FcRandom() random()
303 #else
304 # if HAVE_LRAND48
305 # define FcRandom() lrand48()
306 # else
307 # if HAVE_RAND
308 # define FcRandom() rand()
309 # endif
310 # endif
311 #endif
312 /*
313 * Generate a random level number, distributed
314 * so that each level is 1/4 as likely as the one before
315 *
316 * Note that level numbers run 1 <= level <= MAX_LEVEL
317 */
318 static int
319 random_level (void)
320 {
321 /* tricky bit -- each bit is '1' 75% of the time */
322 long int bits = FcRandom () | FcRandom ();
323 int level = 0;
324
325 while (++level < FC_CACHE_MAX_LEVEL)
326 {
327 if (bits & 1)
328 break;
329 bits >>= 1;
330 }
331 return level;
332 }
333
334 /*
335 * Insert cache into the list
336 */
337 static FcBool
338 FcCacheInsert (FcCache *cache, struct stat *cache_stat)
339 {
340 FcCacheSkip **update[FC_CACHE_MAX_LEVEL];
341 FcCacheSkip *s, **next;
342 int i, level;
343
344 /*
345 * Find links along each chain
346 */
347 next = fcCacheChains;
348 for (i = fcCacheMaxLevel; --i >= 0; )
349 {
350 for (; (s = next[i]); next = s->next)
351 if (s->cache > cache)
352 break;
353 update[i] = &next[i];
354 }
355
356 /*
357 * Create new list element
358 */
359 level = random_level ();
360 if (level > fcCacheMaxLevel)
361 {
362 level = fcCacheMaxLevel + 1;
363 update[fcCacheMaxLevel] = &fcCacheChains[fcCacheMaxLevel];
364 fcCacheMaxLevel = level;
365 }
366
367 s = malloc (sizeof (FcCacheSkip) + (level - 1) * sizeof (FcCacheSkip *));
368 if (!s)
369 return FcFalse;
370
371 s->cache = cache;
372 s->size = cache->size;
373 s->ref = 1;
374 if (cache_stat)
375 {
376 s->cache_dev = cache_stat->st_dev;
377 s->cache_ino = cache_stat->st_ino;
378 s->cache_mtime = cache_stat->st_mtime;
379 }
380 else
381 {
382 s->cache_dev = 0;
383 s->cache_ino = 0;
384 s->cache_mtime = 0;
385 }
386
387 /*
388 * Insert into all fcCacheChains
389 */
390 for (i = 0; i < level; i++)
391 {
392 s->next[i] = *update[i];
393 *update[i] = s;
394 }
395 return FcTrue;
396 }
397
398 static FcCacheSkip *
399 FcCacheFindByAddr (void *object)
400 {
401 int i;
402 FcCacheSkip **next = fcCacheChains;
403 FcCacheSkip *s;
404
405 /*
406 * Walk chain pointers one level at a time
407 */
408 for (i = fcCacheMaxLevel; --i >= 0;)
409 while (next[i] && (char *) object >= ((char *) next[i]->cache + next[i]->size))
410 next = next[i]->next;
411 /*
412 * Here we are
413 */
414 s = next[0];
415 if (s && (char *) object < ((char *) s->cache + s->size))
416 return s;
417 return NULL;
418 }
419
420 static void
421 FcCacheRemove (FcCache *cache)
422 {
423 FcCacheSkip **update[FC_CACHE_MAX_LEVEL];
424 FcCacheSkip *s, **next;
425 int i;
426
427 /*
428 * Find links along each chain
429 */
430 next = fcCacheChains;
431 for (i = fcCacheMaxLevel; --i >= 0; )
432 {
433 for (; (s = next[i]); next = s->next)
434 if (s->cache >= cache)
435 break;
436 update[i] = &next[i];
437 }
438 s = next[0];
439 for (i = 0; i < fcCacheMaxLevel && *update[i] == s; i++)
440 *update[i] = s->next[i];
441 while (fcCacheMaxLevel > 0 && fcCacheChains[fcCacheMaxLevel - 1] == NULL)
442 fcCacheMaxLevel--;
443 free (s);
444 }
445
446 static FcCache *
447 FcCacheFindByStat (struct stat *cache_stat)
448 {
449 FcCacheSkip *s;
450
451 for (s = fcCacheChains[0]; s; s = s->next[0])
452 if (s->cache_dev == cache_stat->st_dev &&
453 s->cache_ino == cache_stat->st_ino &&
454 s->cache_mtime == cache_stat->st_mtime)
455 {
456 s->ref++;
457 return s->cache;
458 }
459 return NULL;
460 }
461
462 static void
463 FcDirCacheDispose (FcCache *cache)
464 {
465 switch (cache->magic) {
466 case FC_CACHE_MAGIC_ALLOC:
467 free (cache);
468 break;
469 case FC_CACHE_MAGIC_MMAP:
470 #if defined(HAVE_MMAP) || defined(__CYGWIN__)
471 munmap (cache, cache->size);
472 #elif defined(_WIN32)
473 UnmapViewOfFile (cache);
474 #endif
475 break;
476 }
477 FcCacheRemove (cache);
478 }
479
480 void
481 FcCacheObjectReference (void *object)
482 {
483 FcCacheSkip *skip = FcCacheFindByAddr (object);
484
485 if (skip)
486 skip->ref++;
487 }
488
489 void
490 FcCacheObjectDereference (void *object)
491 {
492 FcCacheSkip *skip = FcCacheFindByAddr (object);
493
494 if (skip)
495 {
496 skip->ref--;
497 if (skip->ref <= 0)
498 FcDirCacheDispose (skip->cache);
499 }
500 }
501
502 void
503 FcCacheFini (void)
504 {
505 int i;
506
507 for (i = 0; i < FC_CACHE_MAX_LEVEL; i++)
508 assert (fcCacheChains[i] == NULL);
509 assert (fcCacheMaxLevel == 0);
510 }
511
512 static FcBool
513 FcCacheTimeValid (FcCache *cache, struct stat *dir_stat)
514 {
515 struct stat dir_static;
516
517 if (!dir_stat)
518 {
519 if (FcStat ((const char *) FcCacheDir (cache), &dir_static) < 0)
520 return FcFalse;
521 dir_stat = &dir_static;
522 }
523 if (FcDebug () & FC_DBG_CACHE)
524 printf ("FcCacheTimeValid dir \"%s\" cache time %d dir time %d\n",
525 FcCacheDir (cache), cache->mtime, (int) dir_stat->st_mtime);
526 return cache->mtime == (int) dir_stat->st_mtime;
527 }
528
529 /*
530 * Map a cache file into memory
531 */
532 static FcCache *
533 FcDirCacheMapFd (int fd, struct stat *fd_stat, struct stat *dir_stat)
534 {
535 FcCache *cache;
536 FcBool allocated = FcFalse;
537
538 if (fd_stat->st_size < sizeof (FcCache))
539 return NULL;
540 cache = FcCacheFindByStat (fd_stat);
541 if (cache)
542 {
543 if (FcCacheTimeValid (cache, dir_stat))
544 return cache;
545 FcDirCacheUnload (cache);
546 cache = NULL;
547 }
548
549 /*
550 * Lage cache files are mmap'ed, smaller cache files are read. This
551 * balances the system cost of mmap against per-process memory usage.
552 */
553 if (fd_stat->st_size >= FC_CACHE_MIN_MMAP)
554 {
555 #if defined(HAVE_MMAP) || defined(__CYGWIN__)
556 cache = mmap (0, fd_stat->st_size, PROT_READ, MAP_SHARED, fd, 0);
557 if (cache == MAP_FAILED)
558 cache = NULL;
559 #elif defined(_WIN32)
560 {
561 HANDLE hFileMap;
562
563 cache = NULL;
564 hFileMap = CreateFileMapping((HANDLE) _get_osfhandle(fd), NULL,
565 PAGE_READONLY, 0, 0, NULL);
566 if (hFileMap != NULL)
567 {
568 cache = MapViewOfFile (hFileMap, FILE_MAP_READ, 0, 0,
569 fd_stat->st_size);
570 CloseHandle (hFileMap);
571 }
572 }
573 #endif
574 }
575 if (!cache)
576 {
577 cache = malloc (fd_stat->st_size);
578 if (!cache)
579 return NULL;
580
581 if (read (fd, cache, fd_stat->st_size) != fd_stat->st_size)
582 {
583 free (cache);
584 return NULL;
585 }
586 allocated = FcTrue;
587 }
588 if (cache->magic != FC_CACHE_MAGIC_MMAP ||
589 cache->version < FC_CACHE_CONTENT_VERSION ||
590 cache->size != fd_stat->st_size ||
591 !FcCacheTimeValid (cache, dir_stat) ||
592 !FcCacheInsert (cache, fd_stat))
593 {
594 if (allocated)
595 free (cache);
596 else
597 {
598 #if defined(HAVE_MMAP) || defined(__CYGWIN__)
599 munmap (cache, fd_stat->st_size);
600 #elif defined(_WIN32)
601 UnmapViewOfFile (cache);
602 #endif
603 }
604 return NULL;
605 }
606
607 /* Mark allocated caches so they're freed rather than unmapped */
608 if (allocated)
609 cache->magic = FC_CACHE_MAGIC_ALLOC;
610
611 return cache;
612 }
613
614 void
615 FcDirCacheReference (FcCache *cache, int nref)
616 {
617 FcCacheSkip *skip = FcCacheFindByAddr (cache);
618
619 if (skip)
620 skip->ref += nref;
621 }
622
623 void
624 FcDirCacheUnload (FcCache *cache)
625 {
626 FcCacheObjectDereference (cache);
627 }
628
629 static FcBool
630 FcDirCacheMapHelper (int fd, struct stat *fd_stat, struct stat *dir_stat, void *closure)
631 {
632 FcCache *cache = FcDirCacheMapFd (fd, fd_stat, dir_stat);
633
634 if (!cache)
635 return FcFalse;
636 *((FcCache **) closure) = cache;
637 return FcTrue;
638 }
639
640 FcCache *
641 FcDirCacheLoad (const FcChar8 *dir, FcConfig *config, FcChar8 **cache_file)
642 {
643 FcCache *cache = NULL;
644
645 if (!FcDirCacheProcess (config, dir,
646 FcDirCacheMapHelper,
647 &cache, cache_file))
648 return NULL;
649 return cache;
650 }
651
652 FcCache *
653 FcDirCacheLoadFile (const FcChar8 *cache_file, struct stat *file_stat)
654 {
655 int fd;
656 FcCache *cache;
657 struct stat my_file_stat;
658
659 if (!file_stat)
660 file_stat = &my_file_stat;
661 fd = FcDirCacheOpenFile (cache_file, file_stat);
662 if (fd < 0)
663 return NULL;
664 cache = FcDirCacheMapFd (fd, file_stat, NULL);
665 close (fd);
666 return cache;
667 }
668
669 /*
670 * Validate a cache file by reading the header and checking
671 * the magic number and the size field
672 */
673 static FcBool
674 FcDirCacheValidateHelper (int fd, struct stat *fd_stat, struct stat *dir_stat, void *closure)
675 {
676 FcBool ret = FcTrue;
677 FcCache c;
678
679 if (read (fd, &c, sizeof (FcCache)) != sizeof (FcCache))
680 ret = FcFalse;
681 else if (c.magic != FC_CACHE_MAGIC_MMAP)
682 ret = FcFalse;
683 else if (c.version < FC_CACHE_CONTENT_VERSION)
684 ret = FcFalse;
685 else if (fd_stat->st_size != c.size)
686 ret = FcFalse;
687 else if (c.mtime != (int) dir_stat->st_mtime)
688 ret = FcFalse;
689 return ret;
690 }
691
692 static FcBool
693 FcDirCacheValidConfig (const FcChar8 *dir, FcConfig *config)
694 {
695 return FcDirCacheProcess (config, dir,
696 FcDirCacheValidateHelper,
697 NULL, NULL);
698 }
699
700 FcBool
701 FcDirCacheValid (const FcChar8 *dir)
702 {
703 FcConfig *config;
704
705 config = FcConfigGetCurrent ();
706 if (!config)
707 return FcFalse;
708
709 return FcDirCacheValidConfig (dir, config);
710 }
711
712 /*
713 * Build a cache structure from the given contents
714 */
715 FcCache *
716 FcDirCacheBuild (FcFontSet *set, const FcChar8 *dir, struct stat *dir_stat, FcStrSet *dirs)
717 {
718 FcSerialize *serialize = FcSerializeCreate ();
719 FcCache *cache;
720 int i;
721 intptr_t cache_offset;
722 intptr_t dirs_offset;
723 FcChar8 *dir_serialize;
724 intptr_t *dirs_serialize;
725 FcFontSet *set_serialize;
726
727 if (!serialize)
728 return NULL;
729 /*
730 * Space for cache structure
731 */
732 cache_offset = FcSerializeReserve (serialize, sizeof (FcCache));
733 /*
734 * Directory name
735 */
736 if (!FcStrSerializeAlloc (serialize, dir))
737 goto bail1;
738 /*
739 * Subdirs
740 */
741 dirs_offset = FcSerializeAlloc (serialize, dirs, dirs->num * sizeof (FcChar8 *));
742 for (i = 0; i < dirs->num; i++)
743 if (!FcStrSerializeAlloc (serialize, dirs->strs[i]))
744 goto bail1;
745
746 /*
747 * Patterns
748 */
749 if (!FcFontSetSerializeAlloc (serialize, set))
750 goto bail1;
751
752 /* Serialize layout complete. Now allocate space and fill it */
753 cache = malloc (serialize->size);
754 if (!cache)
755 goto bail1;
756 /* shut up valgrind */
757 memset (cache, 0, serialize->size);
758
759 serialize->linear = cache;
760
761 cache->magic = FC_CACHE_MAGIC_ALLOC;
762 cache->version = FC_CACHE_CONTENT_VERSION;
763 cache->size = serialize->size;
764 cache->mtime = (int) dir_stat->st_mtime;
765
766 /*
767 * Serialize directory name
768 */
769 dir_serialize = FcStrSerialize (serialize, dir);
770 if (!dir_serialize)
771 goto bail2;
772 cache->dir = FcPtrToOffset (cache, dir_serialize);
773
774 /*
775 * Serialize sub dirs
776 */
777 dirs_serialize = FcSerializePtr (serialize, dirs);
778 if (!dirs_serialize)
779 goto bail2;
780 cache->dirs = FcPtrToOffset (cache, dirs_serialize);
781 cache->dirs_count = dirs->num;
782 for (i = 0; i < dirs->num; i++)
783 {
784 FcChar8 *d_serialize = FcStrSerialize (serialize, dirs->strs[i]);
785 if (!d_serialize)
786 goto bail2;
787 dirs_serialize[i] = FcPtrToOffset (dirs_serialize, d_serialize);
788 }
789
790 /*
791 * Serialize font set
792 */
793 set_serialize = FcFontSetSerialize (serialize, set);
794 if (!set_serialize)
795 goto bail2;
796 cache->set = FcPtrToOffset (cache, set_serialize);
797
798 FcSerializeDestroy (serialize);
799
800 FcCacheInsert (cache, NULL);
801
802 return cache;
803
804 bail2:
805 free (cache);
806 bail1:
807 FcSerializeDestroy (serialize);
808 return NULL;
809 }
810
811
812 #ifdef _WIN32
813 #define mkdir(path,mode) _mkdir(path)
814 #endif
815
816 static FcBool
817 FcMakeDirectory (const FcChar8 *dir)
818 {
819 FcChar8 *parent;
820 FcBool ret;
821
822 if (strlen ((char *) dir) == 0)
823 return FcFalse;
824
825 parent = FcStrDirname (dir);
826 if (!parent)
827 return FcFalse;
828 if (access ((char *) parent, F_OK) == 0)
829 ret = mkdir ((char *) dir, 0755) == 0 && chmod ((char *) dir, 0755) == 0;
830 else if (access ((char *) parent, F_OK) == -1)
831 ret = FcMakeDirectory (parent) && (mkdir ((char *) dir, 0755) == 0) && chmod ((char *) dir, 0755) == 0;
832 else
833 ret = FcFalse;
834 FcStrFree (parent);
835 return ret;
836 }
837
838 /* write serialized state to the cache file */
839 FcBool
840 FcDirCacheWrite (FcCache *cache, FcConfig *config)
841 {
842 FcChar8 *dir = FcCacheDir (cache);
843 FcChar8 cache_base[CACHEBASE_LEN];
844 FcChar8 *cache_hashed;
845 int fd;
846 FcAtomic *atomic;
847 FcStrList *list;
848 FcChar8 *cache_dir = NULL;
849 FcChar8 *test_dir;
850 FcCacheSkip *skip;
851 struct stat cache_stat;
852 int magic;
853 int written;
854
855 /*
856 * Write it to the first directory in the list which is writable
857 */
858
859 list = FcStrListCreate (config->cacheDirs);
860 if (!list)
861 return FcFalse;
862 while ((test_dir = FcStrListNext (list))) {
863 if (access ((char *) test_dir, W_OK|X_OK) == 0)
864 {
865 cache_dir = test_dir;
866 break;
867 }
868 else
869 {
870 /*
871 * If the directory doesn't exist, try to create it
872 */
873 if (access ((char *) test_dir, F_OK) == -1) {
874 if (FcMakeDirectory (test_dir))
875 {
876 cache_dir = test_dir;
877 break;
878 }
879 }
880 /*
881 * Otherwise, try making it writable
882 */
883 else if (chmod ((char *) test_dir, 0755) == 0)
884 {
885 cache_dir = test_dir;
886 break;
887 }
888 }
889 }
890 FcStrListDone (list);
891 if (!cache_dir)
892 return FcFalse;
893
894 FcDirCacheBasename (dir, cache_base);
895 cache_hashed = FcStrPlus (cache_dir, cache_base);
896 if (!cache_hashed)
897 return FcFalse;
898
899 if (FcDebug () & FC_DBG_CACHE)
900 printf ("FcDirCacheWriteDir dir \"%s\" file \"%s\"\n",
901 dir, cache_hashed);
902
903 atomic = FcAtomicCreate ((FcChar8 *)cache_hashed);
904 if (!atomic)
905 goto bail1;
906
907 if (!FcAtomicLock (atomic))
908 goto bail3;
909
910 fd = open((char *)FcAtomicNewFile (atomic), O_RDWR | O_CREAT | O_BINARY, 0666);
911 if (fd == -1)
912 goto bail4;
913
914 /* Temporarily switch magic to MMAP while writing to file */
915 magic = cache->magic;
916 if (magic != FC_CACHE_MAGIC_MMAP)
917 cache->magic = FC_CACHE_MAGIC_MMAP;
918
919 /*
920 * Write cache contents to file
921 */
922 written = write (fd, cache, cache->size);
923
924 /* Switch magic back */
925 if (magic != FC_CACHE_MAGIC_MMAP)
926 cache->magic = magic;
927
928 if (written != cache->size)
929 {
930 perror ("write cache");
931 goto bail5;
932 }
933
934 close(fd);
935 if (!FcAtomicReplaceOrig(atomic))
936 goto bail4;
937
938 /* If the file is small, update the cache chain entry such that the
939 * new cache file is not read again. If it's large, we don't do that
940 * such that we reload it, using mmap, which is shared across processes.
941 */
942 if (cache->size < FC_CACHE_MIN_MMAP &&
943 (skip = FcCacheFindByAddr (cache)) &&
944 FcStat (cache_hashed, &cache_stat))
945 {
946 skip->cache_dev = cache_stat.st_dev;
947 skip->cache_ino = cache_stat.st_ino;
948 skip->cache_mtime = cache_stat.st_mtime;
949 }
950
951 FcStrFree (cache_hashed);
952 FcAtomicUnlock (atomic);
953 FcAtomicDestroy (atomic);
954 return FcTrue;
955
956 bail5:
957 close (fd);
958 bail4:
959 FcAtomicUnlock (atomic);
960 bail3:
961 FcAtomicDestroy (atomic);
962 bail1:
963 FcStrFree (cache_hashed);
964 return FcFalse;
965 }
966
967 /*
968 * Hokey little macro trick to permit the definitions of C functions
969 * with the same name as CPP macros
970 */
971 #define args1(x) (x)
972 #define args2(x,y) (x,y)
973
974 const FcChar8 *
975 FcCacheDir args1(const FcCache *c)
976 {
977 return FcCacheDir (c);
978 }
979
980 FcFontSet *
981 FcCacheCopySet args1(const FcCache *c)
982 {
983 FcFontSet *old = FcCacheSet (c);
984 FcFontSet *new = FcFontSetCreate ();
985 int i;
986
987 if (!new)
988 return NULL;
989 for (i = 0; i < old->nfont; i++)
990 {
991 FcPattern *font = FcFontSetFont (old, i);
992
993 FcPatternReference (font);
994 if (!FcFontSetAdd (new, font))
995 {
996 FcFontSetDestroy (new);
997 return NULL;
998 }
999 }
1000 return new;
1001 }
1002
1003 const FcChar8 *
1004 FcCacheSubdir args2(const FcCache *c, int i)
1005 {
1006 return FcCacheSubdir (c, i);
1007 }
1008
1009 int
1010 FcCacheNumSubdir args1(const FcCache *c)
1011 {
1012 return c->dirs_count;
1013 }
1014
1015 int
1016 FcCacheNumFont args1(const FcCache *c)
1017 {
1018 return FcCacheSet(c)->nfont;
1019 }
1020
1021 /*
1022 * This code implements the MD5 message-digest algorithm.
1023 * The algorithm is due to Ron Rivest. This code was
1024 * written by Colin Plumb in 1993, no copyright is claimed.
1025 * This code is in the public domain; do with it what you wish.
1026 *
1027 * Equivalent code is available from RSA Data Security, Inc.
1028 * This code has been tested against that, and is equivalent,
1029 * except that you don't need to include two pages of legalese
1030 * with every copy.
1031 *
1032 * To compute the message digest of a chunk of bytes, declare an
1033 * MD5Context structure, pass it to MD5Init, call MD5Update as
1034 * needed on buffers full of bytes, and then call MD5Final, which
1035 * will fill a supplied 16-byte array with the digest.
1036 */
1037
1038 #ifndef HIGHFIRST
1039 #define byteReverse(buf, len) /* Nothing */
1040 #else
1041 /*
1042 * Note: this code is harmless on little-endian machines.
1043 */
1044 void byteReverse(unsigned char *buf, unsigned longs)
1045 {
1046 FcChar32 t;
1047 do {
1048 t = (FcChar32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
1049 ((unsigned) buf[1] << 8 | buf[0]);
1050 *(FcChar32 *) buf = t;
1051 buf += 4;
1052 } while (--longs);
1053 }
1054 #endif
1055
1056 /*
1057 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
1058 * initialization constants.
1059 */
1060 static void MD5Init(struct MD5Context *ctx)
1061 {
1062 ctx->buf[0] = 0x67452301;
1063 ctx->buf[1] = 0xefcdab89;
1064 ctx->buf[2] = 0x98badcfe;
1065 ctx->buf[3] = 0x10325476;
1066
1067 ctx->bits[0] = 0;
1068 ctx->bits[1] = 0;
1069 }
1070
1071 /*
1072 * Update context to reflect the concatenation of another buffer full
1073 * of bytes.
1074 */
1075 static void MD5Update(struct MD5Context *ctx, const unsigned char *buf, unsigned len)
1076 {
1077 FcChar32 t;
1078
1079 /* Update bitcount */
1080
1081 t = ctx->bits[0];
1082 if ((ctx->bits[0] = t + ((FcChar32) len << 3)) < t)
1083 ctx->bits[1]++; /* Carry from low to high */
1084 ctx->bits[1] += len >> 29;
1085
1086 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
1087
1088 /* Handle any leading odd-sized chunks */
1089
1090 if (t) {
1091 unsigned char *p = (unsigned char *) ctx->in + t;
1092
1093 t = 64 - t;
1094 if (len < t) {
1095 memcpy(p, buf, len);
1096 return;
1097 }
1098 memcpy(p, buf, t);
1099 byteReverse(ctx->in, 16);
1100 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1101 buf += t;
1102 len -= t;
1103 }
1104 /* Process data in 64-byte chunks */
1105
1106 while (len >= 64) {
1107 memcpy(ctx->in, buf, 64);
1108 byteReverse(ctx->in, 16);
1109 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1110 buf += 64;
1111 len -= 64;
1112 }
1113
1114 /* Handle any remaining bytes of data. */
1115
1116 memcpy(ctx->in, buf, len);
1117 }
1118
1119 /*
1120 * Final wrapup - pad to 64-byte boundary with the bit pattern
1121 * 1 0* (64-bit count of bits processed, MSB-first)
1122 */
1123 static void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
1124 {
1125 unsigned count;
1126 unsigned char *p;
1127
1128 /* Compute number of bytes mod 64 */
1129 count = (ctx->bits[0] >> 3) & 0x3F;
1130
1131 /* Set the first char of padding to 0x80. This is safe since there is
1132 always at least one byte free */
1133 p = ctx->in + count;
1134 *p++ = 0x80;
1135
1136 /* Bytes of padding needed to make 64 bytes */
1137 count = 64 - 1 - count;
1138
1139 /* Pad out to 56 mod 64 */
1140 if (count < 8) {
1141 /* Two lots of padding: Pad the first block to 64 bytes */
1142 memset(p, 0, count);
1143 byteReverse(ctx->in, 16);
1144 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1145
1146 /* Now fill the next block with 56 bytes */
1147 memset(ctx->in, 0, 56);
1148 } else {
1149 /* Pad block to 56 bytes */
1150 memset(p, 0, count - 8);
1151 }
1152 byteReverse(ctx->in, 14);
1153
1154 /* Append length in bits and transform */
1155 ((FcChar32 *) ctx->in)[14] = ctx->bits[0];
1156 ((FcChar32 *) ctx->in)[15] = ctx->bits[1];
1157
1158 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1159 byteReverse((unsigned char *) ctx->buf, 4);
1160 memcpy(digest, ctx->buf, 16);
1161 memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */
1162 }
1163
1164
1165 /* The four core functions - F1 is optimized somewhat */
1166
1167 /* #define F1(x, y, z) (x & y | ~x & z) */
1168 #define F1(x, y, z) (z ^ (x & (y ^ z)))
1169 #define F2(x, y, z) F1(z, x, y)
1170 #define F3(x, y, z) (x ^ y ^ z)
1171 #define F4(x, y, z) (y ^ (x | ~z))
1172
1173 /* This is the central step in the MD5 algorithm. */
1174 #define MD5STEP(f, w, x, y, z, data, s) \
1175 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
1176
1177 /*
1178 * The core of the MD5 algorithm, this alters an existing MD5 hash to
1179 * reflect the addition of 16 longwords of new data. MD5Update blocks
1180 * the data and converts bytes into longwords for this routine.
1181 */
1182 static void MD5Transform(FcChar32 buf[4], FcChar32 in[16])
1183 {
1184 register FcChar32 a, b, c, d;
1185
1186 a = buf[0];
1187 b = buf[1];
1188 c = buf[2];
1189 d = buf[3];
1190
1191 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
1192 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
1193 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
1194 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
1195 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
1196 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
1197 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
1198 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
1199 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
1200 MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
1201 MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
1202 MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
1203 MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
1204 MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
1205 MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
1206 MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
1207
1208 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
1209 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
1210 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
1211 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
1212 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
1213 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
1214 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
1215 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
1216 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
1217 MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
1218 MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
1219 MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
1220 MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
1221 MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
1222 MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
1223 MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
1224
1225 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
1226 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
1227 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
1228 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
1229 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
1230 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
1231 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
1232 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
1233 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
1234 MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
1235 MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
1236 MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
1237 MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
1238 MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
1239 MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
1240 MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
1241
1242 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
1243 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
1244 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
1245 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
1246 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
1247 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
1248 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
1249 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
1250 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
1251 MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
1252 MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
1253 MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
1254 MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
1255 MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
1256 MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
1257 MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
1258
1259 buf[0] += a;
1260 buf[1] += b;
1261 buf[2] += c;
1262 buf[3] += d;
1263 }
1264 #define __fccache__
1265 #include "fcaliastail.h"
1266 #undef __fccache__