]> git.wh0rd.org - fontconfig.git/blame - src/fccache.c
Eliminate global cache. Eliminate multi-arch cache code.
[fontconfig.git] / src / fccache.c
CommitLineData
24330d27 1/*
4bd4418a 2 * $RCSId: xc/lib/fontconfig/src/fccache.c,v 1.12 2002/08/22 07:36:44 keithp Exp $
24330d27 3 *
46b51147 4 * Copyright © 2000 Keith Packard
03a212e5 5 * Copyright © 2005 Patrick Lam
24330d27
KP
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
f045376c 26#include "fcint.h"
cf65c055 27#include "../fc-arch/fcarch.h"
00f059e9 28#include <stdio.h>
212c9f43 29#include <fcntl.h>
4262e0b3 30#include <dirent.h>
ea44e218 31#include <string.h>
fd77c154 32#include <sys/types.h>
d6217cc6 33#if defined(HAVE_MMAP) || defined(__CYGWIN__)
93f67dfc 34# include <unistd.h>
d6217cc6 35# include <sys/mman.h>
93f67dfc
PL
36#elif defined(_WIN32)
37# include <windows.h>
d6217cc6 38#endif
24330d27 39
2dbe7597 40#define ENDIAN_TEST 0x12345678
f2fb985c 41#define MACHINE_SIGNATURE_SIZE (9 + 5*20 + 1)
d6217cc6
PL
42/* for when we don't have sysconf: */
43#define FC_HARDCODED_PAGESIZE 8192
2dbe7597 44
879af706
PL
45#ifndef O_BINARY
46#define O_BINARY 0
47#endif
48
00f059e9 49static FILE *
7410e40b 50FcDirCacheOpen (FcConfig *config, const FcChar8 *dir, FcChar8 **cache_path);
ea44e218 51
eb0cf671
PL
52static void *
53FcDirCacheProduce (FcFontSet *set, FcCache * metadata);
1b7be377 54
00f059e9 55static off_t
eb0cf671 56FcCacheNextOffset(off_t w);
1b7be377 57
1b7be377 58static FcBool
eb0cf671 59FcCacheHaveBank (int bank);
1b7be377 60
e77c1718
PL
61static void
62FcCacheAddBankDir (int bank, const char * dir);
63
ea44e218
PL
64struct MD5Context {
65 FcChar32 buf[4];
66 FcChar32 bits[2];
67 unsigned char in[64];
68};
69
70static void MD5Init(struct MD5Context *ctx);
71static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len);
72static void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
73static void MD5Transform(FcChar32 buf[4], FcChar32 in[16]);
74
eb0cf671 75#define FC_DBG_CACHE_REF 1024
1b7be377 76
8245771d 77static char *
00f059e9 78FcCacheReadString (FILE *file, char *dest, int len)
24330d27 79{
00f059e9
KP
80 int c;
81 char *d = dest;
24330d27 82
24330d27 83 if (len == 0)
03a212e5 84 return 0;
799157db 85
00f059e9
KP
86 while ((c = getc (file)) != EOF && len > 0) {
87 *d++ = c;
88 if (c == '\0')
89 return dest;
90 len--;
24330d27 91 }
ccb3e93b 92 return 0;
24330d27
KP
93}
94
95static FcBool
8245771d 96FcCacheWriteString (int fd, const char *chars)
327a7fd4 97{
212c9f43 98 if (write (fd, chars, strlen(chars)+1) != strlen(chars)+1)
327a7fd4 99 return FcFalse;
327a7fd4
KP
100 return FcTrue;
101}
102
212c9f43 103/*
eb0cf671
PL
104 * Find the next presumably-mmapable offset after the supplied file
105 * position.
212c9f43 106 */
00f059e9 107static off_t
4262e0b3 108FcCacheNextOffset(off_t w)
179c3995 109{
7fd7221e 110 static long pagesize = -1;
c001a192
PL
111
112 if (w == -1)
113 return w;
114
7fd7221e 115 if (pagesize == -1)
d6217cc6 116#if defined (HAVE_SYSCONF)
7fd7221e 117 pagesize = sysconf(_SC_PAGESIZE);
d6217cc6
PL
118#else
119 pagesize = FC_HARDCODED_PAGESIZE;
120#endif
7fd7221e 121 if (w % pagesize == 0)
212c9f43
PL
122 return w;
123 else
7fd7221e 124 return ((w / pagesize)+1)*pagesize;
179c3995
KP
125}
126
55c8fa4f 127/* Does not check that the cache has the appropriate arch section. */
1b7be377 128FcBool
7410e40b 129FcDirCacheValid (const FcChar8 *dir, FcConfig *config)
1b7be377 130{
00f059e9 131 FILE *file;
1b7be377 132
00f059e9 133 file = FcDirCacheOpen (config, dir, NULL);
ea44e218 134
00f059e9 135 if (file != NULL)
c7490074 136 return FcFalse;
00f059e9 137 fclose (file);
ea44e218 138
55c8fa4f
PL
139 return FcTrue;
140}
141
cf65c055 142#define CACHEBASE_LEN (1 + 32 + 1 + sizeof (FC_ARCHITECTURE) + sizeof (FC_CACHE_SUFFIX))
7410e40b
PL
143
144static const char bin2hex[] = { '0', '1', '2', '3',
145 '4', '5', '6', '7',
146 '8', '9', 'a', 'b',
147 'c', 'd', 'e', 'f' };
148
149static FcChar8 *
150FcDirCacheBasename (const FcChar8 * dir, FcChar8 cache_base[CACHEBASE_LEN])
55c8fa4f 151{
7410e40b
PL
152 unsigned char hash[16];
153 FcChar8 *hex_hash;
154 int cnt;
155 struct MD5Context ctx;
55c8fa4f 156
7410e40b
PL
157 MD5Init (&ctx);
158 MD5Update (&ctx, (unsigned char *)dir, strlen ((char *) dir));
3bfae75d 159
7410e40b
PL
160 MD5Final (hash, &ctx);
161
162 cache_base[0] = '/';
163 hex_hash = cache_base + 1;
164 for (cnt = 0; cnt < 16; ++cnt)
1178b569 165 {
7410e40b
PL
166 hex_hash[2*cnt ] = bin2hex[hash[cnt] >> 4];
167 hex_hash[2*cnt+1] = bin2hex[hash[cnt] & 0xf];
168 }
169 hex_hash[2*cnt] = 0;
cf65c055 170 strcat ((char *) cache_base, "-" FC_ARCHITECTURE FC_CACHE_SUFFIX);
6f9fcb51 171
7410e40b
PL
172 return cache_base;
173}
3bfae75d 174
7410e40b
PL
175FcBool
176FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config)
177{
7410e40b
PL
178 FcChar8 *cache_hashed = NULL;
179 FcChar8 cache_base[CACHEBASE_LEN];
180 FcStrList *list;
181 FcChar8 *cache_dir;
3bfae75d 182
7410e40b 183 FcDirCacheBasename (dir, cache_base);
3bfae75d 184
7410e40b
PL
185 list = FcStrListCreate (config->cacheDirs);
186 if (!list)
187 return FcFalse;
188
189 while ((cache_dir = FcStrListNext (list)))
3bfae75d 190 {
7410e40b
PL
191 cache_hashed = FcStrPlus (cache_dir, cache_base);
192 if (!cache_hashed)
193 break;
00f059e9 194 (void) unlink ((char *) cache_hashed);
1178b569 195 }
7410e40b
PL
196 FcStrListDone (list);
197 /* return FcFalse if something went wrong */
198 if (cache_dir)
199 return FcFalse;
1b7be377
PL
200 return FcTrue;
201}
202
4262e0b3 203static int
00f059e9 204FcCacheReadDirs (FcConfig * config,
8b413bb6 205 FcStrList *list, FcFontSet * set, FcStrSet *processed_dirs)
4262e0b3 206{
4262e0b3
PL
207 int ret = 0;
208 FcChar8 *dir;
4262e0b3
PL
209 FcStrSet *subdirs;
210 FcStrList *sublist;
4262e0b3
PL
211
212 /*
03a212e5 213 * Read in the results from 'list'.
4262e0b3
PL
214 */
215 while ((dir = FcStrListNext (list)))
216 {
9fad72ab
PL
217 if (!FcConfigAcceptFilename (config, dir))
218 continue;
219
fff5a5af
PL
220 /* Skip this directory if already updated
221 * to avoid the looped directories via symlinks
5c3deb29 222 * Clearly a dir not in fonts.conf shouldn't be globally cached.
fff5a5af 223 */
5c3deb29
PL
224
225 if (FcStrSetMember (processed_dirs, dir))
226 continue;
227 if (!FcStrSetAdd (processed_dirs, dir))
228 continue;
4262e0b3
PL
229
230 subdirs = FcStrSetCreate ();
231 if (!subdirs)
232 {
233 fprintf (stderr, "Can't create directory set\n");
234 ret++;
4262e0b3
PL
235 continue;
236 }
237
00f059e9
KP
238 FcDirScanConfig (set, subdirs,
239 config->blanks, dir, FcFalse, config);
240
4262e0b3
PL
241 sublist = FcStrListCreate (subdirs);
242 FcStrSetDestroy (subdirs);
243 if (!sublist)
244 {
245 fprintf (stderr, "Can't create subdir list in \"%s\"\n", dir);
246 ret++;
4262e0b3
PL
247 continue;
248 }
00f059e9 249 ret += FcCacheReadDirs (config, sublist, set, processed_dirs);
4262e0b3
PL
250 }
251 FcStrListDone (list);
252 return ret;
253}
254
255FcFontSet *
00f059e9 256FcCacheRead (FcConfig *config)
4262e0b3 257{
8b413bb6
PL
258 FcFontSet *s = FcFontSetCreate();
259 FcStrSet *processed_dirs;
260
4262e0b3
PL
261 if (!s)
262 return 0;
263
8b413bb6
PL
264 processed_dirs = FcStrSetCreate();
265 if (!processed_dirs)
4262e0b3
PL
266 goto bail;
267
00f059e9 268 if (FcCacheReadDirs (config, FcConfigGetConfigDirs (config), s, processed_dirs))
8b413bb6
PL
269 goto bail1;
270
271 FcStrSetDestroy (processed_dirs);
4262e0b3
PL
272 return s;
273
8b413bb6
PL
274 bail1:
275 FcStrSetDestroy (processed_dirs);
4262e0b3
PL
276 bail:
277 FcFontSetDestroy (s);
278 return 0;
279}
280
7410e40b
PL
281/* Opens the cache file for 'dir' for reading.
282 * This searches the list of cache dirs for the relevant cache file,
283 * returning the first one found.
284 */
00f059e9 285static FILE *
7410e40b 286FcDirCacheOpen (FcConfig *config, const FcChar8 *dir, FcChar8 **cache_path)
ea44e218 287{
00f059e9 288 FILE *file = NULL;
7410e40b
PL
289 FcChar8 *cache_hashed = NULL;
290 FcChar8 cache_base[CACHEBASE_LEN];
291 FcStrList *list;
292 FcChar8 *cache_dir;
d2f78684
KP
293 struct stat file_stat, dir_stat;
294
295 if (stat ((char *) dir, &dir_stat) < 0)
00f059e9 296 return NULL;
df3efc11 297
7410e40b 298 FcDirCacheBasename (dir, cache_base);
ea44e218 299
7410e40b
PL
300 list = FcStrListCreate (config->cacheDirs);
301 if (!list)
00f059e9 302 return NULL;
7410e40b
PL
303
304 while ((cache_dir = FcStrListNext (list)))
ea44e218 305 {
7410e40b
PL
306 cache_hashed = FcStrPlus (cache_dir, cache_base);
307 if (!cache_hashed)
d00c3cb5 308 break;
00f059e9
KP
309 file = fopen((char *) cache_hashed, "rb");
310 if (file != NULL) {
311 if (fstat (fileno (file), &file_stat) >= 0 &&
d2f78684
KP
312 dir_stat.st_mtime <= file_stat.st_mtime)
313 {
314 break;
315 }
00f059e9
KP
316 fclose (file);
317 file = NULL;
d2f78684 318 }
7410e40b 319 FcStrFree (cache_hashed);
d2f78684 320 cache_hashed = NULL;
7410e40b
PL
321 }
322 FcStrListDone (list);
df3efc11 323
00f059e9
KP
324 if (file == NULL)
325 return NULL;
7410e40b
PL
326
327 if (cache_path)
328 *cache_path = cache_hashed;
329 else
330 FcStrFree (cache_hashed);
ea44e218 331
00f059e9 332 return file;
ea44e218
PL
333}
334
212c9f43 335/* read serialized state from the cache file */
2eb84374 336FcBool
00f059e9
KP
337FcDirCacheRead (FcFontSet * set, FcStrSet * dirs,
338 const FcChar8 *dir, FcConfig *config)
212c9f43 339{
00f059e9
KP
340 FILE *file;
341 FcCache metadata;
342 void *current_dir_block;
343 char subdir_name[FC_MAX_FILE_LEN + 1 + 12 + 1];
2304e38f 344
00f059e9
KP
345 file = FcDirCacheOpen (config, dir, NULL);
346 if (file == NULL)
347 goto bail;
2304e38f 348
00f059e9 349 if (fread(&metadata, sizeof(FcCache), 1, file) != 1)
eb0cf671 350 goto bail1;
212c9f43 351 if (metadata.magic != FC_CACHE_MAGIC)
00f059e9 352 goto bail1;
c001a192 353
00f059e9
KP
354 while (FcCacheReadString (file, subdir_name, sizeof (subdir_name)) &&
355 strlen (subdir_name) > 0)
356 FcStrSetAdd (dirs, (FcChar8 *)subdir_name);
c001a192 357
00f059e9
KP
358 if (metadata.count)
359 {
360 int fd = fileno (file);
d6217cc6 361#if defined(HAVE_MMAP) || defined(__CYGWIN__)
00f059e9
KP
362 current_dir_block = mmap (0, metadata.count,
363 PROT_READ, MAP_SHARED, fd, metadata.pos);
364 if (current_dir_block == MAP_FAILED)
365 goto bail1;
93f67dfc
PL
366#elif defined(_WIN32)
367 {
00f059e9 368 HANDLE hFileMap;
93f67dfc 369
00f059e9
KP
370 hFileMap = CreateFileMapping((HANDLE) _get_osfhandle(fd), NULL, PAGE_READONLY, 0, 0, NULL);
371 if (hFileMap == NULL)
372 goto bail1;
93f67dfc 373
00f059e9
KP
374 current_dir_block = MapViewOfFile (hFileMap, FILE_MAP_READ, 0, metadata.pos, metadata.count);
375 if (current_dir_block == NULL)
376 {
377 CloseHandle (hFileMap);
378 goto bail1;
379 }
93f67dfc 380 }
d6217cc6 381#else
00f059e9
KP
382 if (lseek (fd, metatdata.pos, SEEK_SET) == -1)
383 goto bail1;
d6217cc6 384
00f059e9
KP
385 current_dir_block = malloc (metadata.count);
386 if (!current_dir_block)
387 goto bail1;
eb0cf671 388
00f059e9
KP
389 /* could also use CreateMappedViewOfFile under MinGW... */
390 if (read (fd, current_dir_block, metadata.count) != metadata.count)
391 {
392 free (current_dir_block);
393 goto bail1;
394 }
395#endif
396 FcCacheAddBankDir (metadata.bank, (char *) dir);
397 if (!FcFontSetUnserialize (&metadata, set, current_dir_block))
398 goto bail1;
399 }
cd9bca69
PL
400 if (config)
401 FcConfigAddFontDir (config, (FcChar8 *)dir);
e77c1718 402
00f059e9 403 fclose(file);
212c9f43 404 return FcTrue;
00f059e9
KP
405
406 bail1:
407 fclose (file);
d6217cc6 408 bail:
d6217cc6 409 return FcFalse;
eb0cf671
PL
410}
411
412static void *
413FcDirCacheProduce (FcFontSet *set, FcCache *metadata)
414{
415 void * current_dir_block, * final_dir_block;
8245771d 416 static unsigned int rand_state = 0;
8e351527 417 int bank, needed_bytes_no_align;
eb0cf671 418
d6217cc6 419#if defined (HAVE_RAND_R)
eb0cf671
PL
420 if (!rand_state)
421 rand_state = time(0L);
422 bank = rand_r(&rand_state);
423
424 while (FcCacheHaveBank(bank))
425 bank = rand_r(&rand_state);
d6217cc6
PL
426#else
427 if (!rand_state)
428 {
429 rand_state = 1;
430 srand (time (0L));
431 }
432 bank = rand();
433
434 while (FcCacheHaveBank(bank))
435 bank = rand();
436#endif
eb0cf671
PL
437
438 memset (metadata, 0, sizeof(FcCache));
439 FcFontSetNewBank();
8e351527
PL
440 needed_bytes_no_align = FcFontSetNeededBytes (set);
441 metadata->count = needed_bytes_no_align +
7fd7221e 442 FcFontSetNeededBytesAlign ();
eb0cf671
PL
443 metadata->magic = FC_CACHE_MAGIC;
444 metadata->bank = bank;
445
8e351527
PL
446 if (!needed_bytes_no_align) /* not a failure, no fonts to write */
447 {
448 /* no, you don't really need to write any bytes at all. */
449 metadata->count = 0;
eb0cf671 450 return 0;
8e351527 451 }
eb0cf671
PL
452
453 current_dir_block = malloc (metadata->count);
454 if (!current_dir_block)
455 goto bail;
bb6b1993 456 /* shut up valgrind */
8e351527 457 memset (current_dir_block, 0, metadata->count);
eb0cf671
PL
458 final_dir_block = FcFontSetDistributeBytes (metadata, current_dir_block);
459
8e351527 460 if ((void *)((char *)current_dir_block+metadata->count) < final_dir_block)
eb0cf671
PL
461 goto bail;
462
463 if (!FcFontSetSerialize (bank, set))
464 goto bail;
465
466 return current_dir_block;
212c9f43 467
4262e0b3 468 bail:
eb0cf671
PL
469 free (current_dir_block);
470 return 0;
212c9f43
PL
471}
472
7410e40b
PL
473static FcBool
474FcMakeDirectory (const FcChar8 *dir)
475{
476 FcChar8 *parent;
477 FcBool ret;
478
479 if (strlen ((char *) dir) == 0)
480 return FcFalse;
481
482 parent = FcStrDirname (dir);
483 if (!parent)
484 return FcFalse;
485 if (access ((char *) parent, W_OK|X_OK) == 0)
486 ret = mkdir ((char *) dir, 0777) == 0;
487 else if (access ((char *) parent, F_OK) == -1)
488 ret = FcMakeDirectory (parent) && (mkdir ((char *) dir, 0777) == 0);
489 else
490 ret = FcFalse;
491 FcStrFree (parent);
492 return ret;
493}
494
212c9f43
PL
495/* write serialized state to the cache file */
496FcBool
7410e40b 497FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir, FcConfig *config)
212c9f43 498{
7410e40b
PL
499 FcChar8 cache_base[CACHEBASE_LEN];
500 FcChar8 *cache_hashed;
00f059e9 501 int fd, i;
1d879de2
PL
502 FcAtomic *atomic;
503 FcCache metadata;
ea44e218 504 void *current_dir_block = 0;
00f059e9 505 FcStrList *list;
d2f78684
KP
506 FcChar8 *cache_dir = NULL;
507 FcChar8 *test_dir;
00f059e9 508 off_t header_len;
212c9f43 509
7410e40b 510 /*
d2f78684 511 * Write it to the first directory in the list which is writable
7410e40b 512 */
d2f78684
KP
513
514 list = FcStrListCreate (config->cacheDirs);
515 if (!list)
516 return FcFalse;
517 while ((test_dir = FcStrListNext (list))) {
518 if (access ((char *) test_dir, W_OK|X_OK) == 0)
519 {
520 cache_dir = test_dir;
521 break;
522 }
523 else
524 {
7410e40b
PL
525 /*
526 * If the directory doesn't exist, try to create it
527 */
d2f78684
KP
528 if (access ((char *) test_dir, F_OK) == -1) {
529 if (FcMakeDirectory (test_dir))
530 {
531 cache_dir = test_dir;
7410e40b 532 break;
d2f78684 533 }
7410e40b
PL
534 }
535 }
7410e40b 536 }
d2f78684
KP
537 FcStrListDone (list);
538 if (!cache_dir)
539 return FcFalse;
540 FcDirCacheBasename (dir, cache_base);
541 cache_hashed = FcStrPlus (cache_dir, cache_base);
542 if (!cache_hashed)
543 return FcFalse;
ea44e218 544
eb0cf671 545 current_dir_block = FcDirCacheProduce (set, &metadata);
212c9f43 546
a9698bed 547 if (metadata.count && !current_dir_block)
ea44e218 548 goto bail1;
212c9f43 549
4262e0b3 550 if (FcDebug () & FC_DBG_CACHE)
c1c3ba06
KP
551 printf ("FcDirCacheWriteDir dir \"%s\" file \"%s\"\n",
552 dir, cache_hashed);
4262e0b3 553
3bfae75d 554 atomic = FcAtomicCreate ((FcChar8 *)cache_hashed);
1d879de2 555 if (!atomic)
ea44e218 556 goto bail1;
212c9f43 557
1d879de2 558 if (!FcAtomicLock (atomic))
c1c3ba06 559 goto bail2;
ec760b17 560
879af706 561 fd = open((char *)FcAtomicNewFile (atomic), O_RDWR | O_CREAT | O_BINARY, 0666);
1d879de2 562 if (fd == -1)
ec760b17 563 goto bail3;
00f059e9
KP
564
565 /*
566 * Compute file header length -- the FcCache followed by the subdir names
567 */
568 header_len = sizeof (FcCache);
2304e38f 569 for (i = 0; i < dirs->size; i++)
00f059e9
KP
570 header_len += strlen ((char *)dirs->strs[i]) + 1;
571
572 metadata.pos = FcCacheNextOffset (lseek (fd, 0, SEEK_CUR) + header_len);
573 metadata.subdirs = dirs->size;
574
575 /*
576 * Write out the header
577 */
fff5a5af
PL
578 if (write (fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
579 {
68355f38
PL
580 perror("write metadata");
581 goto bail5;
582 }
00f059e9
KP
583
584 for (i = 0; i < dirs->size; i++)
585 FcCacheWriteString (fd, (char *)dirs->strs[i]);
586
a9698bed
PL
587 if (metadata.count)
588 {
00f059e9 589 if (lseek (fd, metadata.pos, SEEK_SET) != metadata.pos)
68355f38
PL
590 perror("lseek");
591 else if (write (fd, current_dir_block, metadata.count) !=
592 metadata.count)
593 perror("write current_dir_block");
a9698bed 594 free (current_dir_block);
f2fb985c 595 current_dir_block = 0;
a9698bed 596 }
4262e0b3 597
212c9f43 598 close(fd);
1d879de2 599 if (!FcAtomicReplaceOrig(atomic))
ae2aafe6 600 goto bail3;
3bfae75d 601 FcStrFree ((FcChar8 *)cache_hashed);
1d879de2
PL
602 FcAtomicUnlock (atomic);
603 FcAtomicDestroy (atomic);
212c9f43
PL
604 return FcTrue;
605
ea44e218 606 bail5:
1d879de2 607 close (fd);
ea44e218 608 bail3:
1d879de2 609 FcAtomicUnlock (atomic);
ea44e218 610 bail2:
1d879de2 611 FcAtomicDestroy (atomic);
ea44e218 612 bail1:
3bfae75d 613 FcStrFree ((FcChar8 *)cache_hashed);
1d879de2
PL
614 if (current_dir_block)
615 free (current_dir_block);
212c9f43
PL
616 return FcFalse;
617}
618
4262e0b3 619static int banks_ptr = 0, banks_alloc = 0;
b8948e85 620int * _fcBankId = 0, * _fcBankIdx = 0;
e77c1718 621static const char ** bankDirs = 0;
4262e0b3 622
eb0cf671 623static FcBool
4262e0b3
PL
624FcCacheHaveBank (int bank)
625{
626 int i;
627
628 if (bank < FC_BANK_FIRST)
629 return FcTrue;
630
631 for (i = 0; i < banks_ptr; i++)
b8948e85 632 if (_fcBankId[i] == bank)
4262e0b3
PL
633 return FcTrue;
634
635 return FcFalse;
636}
637
638int
b8948e85 639FcCacheBankToIndexMTF (int bank)
4262e0b3 640{
751932dd 641 int i, j;
4262e0b3
PL
642
643 for (i = 0; i < banks_ptr; i++)
b8948e85 644 if (_fcBankId[_fcBankIdx[i]] == bank)
751932dd 645 {
b8948e85 646 int t = _fcBankIdx[i];
751932dd
PL
647
648 for (j = i; j > 0; j--)
b8948e85
PL
649 _fcBankIdx[j] = _fcBankIdx[j-1];
650 _fcBankIdx[0] = t;
751932dd
PL
651 return t;
652 }
4262e0b3 653
2dbe7597 654 if (banks_ptr >= banks_alloc)
4262e0b3 655 {
751932dd 656 int * b, * bidx;
e77c1718
PL
657 const char ** bds;
658
b8948e85 659 b = realloc (_fcBankId, (banks_alloc + 4) * sizeof(int));
4262e0b3
PL
660 if (!b)
661 return -1;
b8948e85 662 _fcBankId = b;
751932dd 663
b8948e85 664 bidx = realloc (_fcBankIdx, (banks_alloc + 4) * sizeof(int));
751932dd
PL
665 if (!bidx)
666 return -1;
b8948e85 667 _fcBankIdx = bidx;
751932dd 668
e77c1718
PL
669 bds = realloc (bankDirs, (banks_alloc + 4) * sizeof (char *));
670 if (!bds)
671 return -1;
672 bankDirs = bds;
673
4262e0b3
PL
674 banks_alloc += 4;
675 }
676
677 i = banks_ptr++;
b8948e85
PL
678 _fcBankId[i] = bank;
679 _fcBankIdx[i] = i;
4262e0b3
PL
680 return i;
681}
e77c1718
PL
682
683static void
684FcCacheAddBankDir (int bank, const char * dir)
685{
b8948e85 686 int bi = FcCacheBankToIndexMTF (bank);
e77c1718
PL
687
688 if (bi < 0)
689 return;
690
691 bankDirs[bi] = (const char *)FcStrCopy ((FcChar8 *)dir);
692}
693
694const char *
695FcCacheFindBankDir (int bank)
696{
697 int bi = FcCacheBankToIndex (bank);
698 return bankDirs[bi];
699}
700
ea44e218
PL
701/*
702 * This code implements the MD5 message-digest algorithm.
703 * The algorithm is due to Ron Rivest. This code was
704 * written by Colin Plumb in 1993, no copyright is claimed.
705 * This code is in the public domain; do with it what you wish.
706 *
707 * Equivalent code is available from RSA Data Security, Inc.
708 * This code has been tested against that, and is equivalent,
709 * except that you don't need to include two pages of legalese
710 * with every copy.
711 *
712 * To compute the message digest of a chunk of bytes, declare an
713 * MD5Context structure, pass it to MD5Init, call MD5Update as
714 * needed on buffers full of bytes, and then call MD5Final, which
715 * will fill a supplied 16-byte array with the digest.
716 */
717
718#ifndef HIGHFIRST
719#define byteReverse(buf, len) /* Nothing */
720#else
721/*
722 * Note: this code is harmless on little-endian machines.
723 */
724void byteReverse(unsigned char *buf, unsigned longs)
725{
726 FcChar32 t;
727 do {
728 t = (FcChar32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
729 ((unsigned) buf[1] << 8 | buf[0]);
730 *(FcChar32 *) buf = t;
731 buf += 4;
732 } while (--longs);
733}
734#endif
735
736/*
737 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
738 * initialization constants.
739 */
740static void MD5Init(struct MD5Context *ctx)
741{
742 ctx->buf[0] = 0x67452301;
743 ctx->buf[1] = 0xefcdab89;
744 ctx->buf[2] = 0x98badcfe;
745 ctx->buf[3] = 0x10325476;
746
747 ctx->bits[0] = 0;
748 ctx->bits[1] = 0;
749}
750
751/*
752 * Update context to reflect the concatenation of another buffer full
753 * of bytes.
754 */
755static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len)
756{
757 FcChar32 t;
758
759 /* Update bitcount */
760
761 t = ctx->bits[0];
762 if ((ctx->bits[0] = t + ((FcChar32) len << 3)) < t)
763 ctx->bits[1]++; /* Carry from low to high */
764 ctx->bits[1] += len >> 29;
765
766 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
767
768 /* Handle any leading odd-sized chunks */
769
770 if (t) {
771 unsigned char *p = (unsigned char *) ctx->in + t;
772
773 t = 64 - t;
774 if (len < t) {
775 memcpy(p, buf, len);
776 return;
777 }
778 memcpy(p, buf, t);
779 byteReverse(ctx->in, 16);
780 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
781 buf += t;
782 len -= t;
783 }
784 /* Process data in 64-byte chunks */
785
786 while (len >= 64) {
787 memcpy(ctx->in, buf, 64);
788 byteReverse(ctx->in, 16);
789 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
790 buf += 64;
791 len -= 64;
792 }
793
794 /* Handle any remaining bytes of data. */
795
796 memcpy(ctx->in, buf, len);
797}
798
799/*
800 * Final wrapup - pad to 64-byte boundary with the bit pattern
801 * 1 0* (64-bit count of bits processed, MSB-first)
802 */
803static void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
804{
805 unsigned count;
806 unsigned char *p;
807
808 /* Compute number of bytes mod 64 */
809 count = (ctx->bits[0] >> 3) & 0x3F;
810
811 /* Set the first char of padding to 0x80. This is safe since there is
812 always at least one byte free */
813 p = ctx->in + count;
814 *p++ = 0x80;
815
816 /* Bytes of padding needed to make 64 bytes */
817 count = 64 - 1 - count;
818
819 /* Pad out to 56 mod 64 */
820 if (count < 8) {
821 /* Two lots of padding: Pad the first block to 64 bytes */
822 memset(p, 0, count);
823 byteReverse(ctx->in, 16);
824 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
825
826 /* Now fill the next block with 56 bytes */
827 memset(ctx->in, 0, 56);
828 } else {
829 /* Pad block to 56 bytes */
830 memset(p, 0, count - 8);
831 }
832 byteReverse(ctx->in, 14);
833
834 /* Append length in bits and transform */
835 ((FcChar32 *) ctx->in)[14] = ctx->bits[0];
836 ((FcChar32 *) ctx->in)[15] = ctx->bits[1];
837
838 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
839 byteReverse((unsigned char *) ctx->buf, 4);
840 memcpy(digest, ctx->buf, 16);
841 memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */
842}
843
844
845/* The four core functions - F1 is optimized somewhat */
846
847/* #define F1(x, y, z) (x & y | ~x & z) */
848#define F1(x, y, z) (z ^ (x & (y ^ z)))
849#define F2(x, y, z) F1(z, x, y)
850#define F3(x, y, z) (x ^ y ^ z)
851#define F4(x, y, z) (y ^ (x | ~z))
852
853/* This is the central step in the MD5 algorithm. */
854#define MD5STEP(f, w, x, y, z, data, s) \
855 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
856
857/*
858 * The core of the MD5 algorithm, this alters an existing MD5 hash to
859 * reflect the addition of 16 longwords of new data. MD5Update blocks
860 * the data and converts bytes into longwords for this routine.
861 */
862static void MD5Transform(FcChar32 buf[4], FcChar32 in[16])
863{
864 register FcChar32 a, b, c, d;
865
866 a = buf[0];
867 b = buf[1];
868 c = buf[2];
869 d = buf[3];
870
871 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
872 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
873 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
874 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
875 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
876 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
877 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
878 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
879 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
880 MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
881 MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
882 MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
883 MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
884 MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
885 MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
886 MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
887
888 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
889 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
890 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
891 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
892 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
893 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
894 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
895 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
896 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
897 MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
898 MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
899 MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
900 MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
901 MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
902 MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
903 MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
904
905 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
906 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
907 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
908 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
909 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
910 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
911 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
912 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
913 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
914 MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
915 MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
916 MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
917 MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
918 MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
919 MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
920 MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
921
922 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
923 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
924 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
925 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
926 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
927 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
928 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
929 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
930 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
931 MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
932 MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
933 MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
934 MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
935 MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
936 MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
937 MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
938
939 buf[0] += a;
940 buf[1] += b;
941 buf[2] += c;
942 buf[3] += d;
943}