]> git.wh0rd.org - fontconfig.git/blame - src/fccache.c
:
[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
24330d27
KP
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of Keith Packard not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. Keith Packard makes no
13 * representations about the suitability of this software for any purpose. It
14 * is provided "as is" without express or implied warranty.
15 *
16 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
23 */
24
212c9f43 25#include <fcntl.h>
4262e0b3 26#include <dirent.h>
212c9f43
PL
27#include <sys/mman.h>
28#include <sys/utsname.h>
fd77c154
PL
29#include <sys/types.h>
30#include <unistd.h>
24330d27
KP
31#include "fcint.h"
32
2dbe7597
PL
33#define ENDIAN_TEST 0x12345678
34#define MACHINE_SIGNATURE_SIZE 9 + 5*19 + 1
35
eb0cf671
PL
36static off_t
37FcCacheSkipToArch (int fd, const char * arch);
1b7be377 38
eb0cf671
PL
39static FcBool
40FcCacheMoveDown (int fd, off_t start);
1b7be377 41
eb0cf671
PL
42static void *
43FcDirCacheProduce (FcFontSet *set, FcCache * metadata);
1b7be377
PL
44
45static FcBool
eb0cf671 46FcDirCacheConsume (int fd, FcFontSet *set);
1b7be377
PL
47
48static FcBool
2304e38f 49FcDirCacheRead (FcFontSet * set, FcStrSet * dirs, const FcChar8 *dir);
1b7be377 50
eb0cf671
PL
51static int
52FcCacheNextOffset(off_t w);
1b7be377 53
eb0cf671
PL
54static char *
55FcCacheMachineSignature (void);
1b7be377
PL
56
57static FcBool
eb0cf671 58FcCacheHaveBank (int bank);
1b7be377 59
eb0cf671 60#define FC_DBG_CACHE_REF 1024
1b7be377
PL
61
62static FcChar8 *
eb0cf671 63FcCacheReadString (int fd, FcChar8 *dest, int len)
24330d27 64{
212c9f43 65 FcChar8 c;
ccb3e93b 66 FcBool escape;
ccb3e93b
KP
67 int size;
68 int i;
24330d27 69
24330d27
KP
70 if (len == 0)
71 return FcFalse;
72
ccb3e93b
KP
73 size = len;
74 i = 0;
24330d27 75 escape = FcFalse;
212c9f43 76 while (read (fd, &c, 1) == 1)
24330d27
KP
77 {
78 if (!escape)
79 {
80 switch (c) {
81 case '"':
ccb3e93b
KP
82 c = '\0';
83 break;
24330d27
KP
84 case '\\':
85 escape = FcTrue;
86 continue;
87 }
88 }
ccb3e93b
KP
89 if (i == size)
90 {
212c9f43
PL
91 dest[i++] = 0;
92 return dest;
ccb3e93b 93 }
212c9f43 94 dest[i++] = c;
ccb3e93b 95 if (c == '\0')
212c9f43 96 return dest;
24330d27
KP
97 escape = FcFalse;
98 }
ccb3e93b 99 return 0;
24330d27
KP
100}
101
102static FcBool
eb0cf671 103FcCacheWriteString (int fd, const FcChar8 *chars)
327a7fd4 104{
212c9f43 105 if (write (fd, chars, strlen(chars)+1) != strlen(chars)+1)
327a7fd4 106 return FcFalse;
327a7fd4
KP
107 return FcTrue;
108}
109
eb0cf671
PL
110static void
111FcGlobalCacheDirDestroy (FcGlobalCacheDir *d)
1b7be377 112{
5e678e94
PL
113 FcMemFree (FC_MEM_STRING, strlen (d->name)+1);
114 free (d->name);
115 FcMemFree (FC_MEM_CACHE, sizeof (FcGlobalCacheDir));
116 free (d);
1b7be377
PL
117}
118
eb0cf671
PL
119FcGlobalCache *
120FcGlobalCacheCreate (void)
1b7be377 121{
eb0cf671 122 FcGlobalCache *cache;
1b7be377 123
eb0cf671
PL
124 cache = malloc (sizeof (FcGlobalCache));
125 if (!cache)
126 return 0;
127 FcMemAlloc (FC_MEM_CACHE, sizeof (FcGlobalCache));
128 cache->dirs = 0;
129 cache->updated = FcFalse;
130 cache->fd = -1;
131 return cache;
1b7be377
PL
132}
133
eb0cf671
PL
134void
135FcGlobalCacheDestroy (FcGlobalCache *cache)
327a7fd4 136{
eb0cf671 137 FcGlobalCacheDir *d, *next;
327a7fd4 138
eb0cf671 139 for (d = cache->dirs; d; d = next)
327a7fd4 140 {
eb0cf671
PL
141 next = d->next;
142 FcGlobalCacheDirDestroy (d);
327a7fd4 143 }
eb0cf671
PL
144 FcMemFree (FC_MEM_CACHE, sizeof (FcGlobalCache));
145 free (cache);
327a7fd4
KP
146}
147
148void
eb0cf671
PL
149FcGlobalCacheLoad (FcGlobalCache *cache,
150 const FcChar8 *cache_file)
327a7fd4 151{
eb0cf671
PL
152 FcChar8 name_buf[8192];
153 FcGlobalCacheDir *d, *next;
154 char * current_arch_machine_name;
155 char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
156 off_t current_arch_start;
327a7fd4 157
eb0cf671
PL
158 cache->fd = open ((char *) cache_file, O_RDONLY);
159 if (cache->fd == -1)
160 return;
327a7fd4 161
eb0cf671 162 cache->updated = FcFalse;
327a7fd4 163
eb0cf671
PL
164 current_arch_machine_name = FcCacheMachineSignature ();
165 current_arch_start = FcCacheSkipToArch(cache->fd,
166 current_arch_machine_name);
167 if (current_arch_start < 0)
168 goto bail0;
327a7fd4 169
eb0cf671
PL
170 lseek (cache->fd, current_arch_start, SEEK_SET);
171 if (FcCacheReadString (cache->fd, candidate_arch_machine_name,
172 sizeof (candidate_arch_machine_name)) == 0)
173 goto bail0;
1b7be377 174
eb0cf671 175 while (1)
1b7be377 176 {
eb0cf671
PL
177 FcCacheReadString (cache->fd, name_buf, sizeof (name_buf));
178 if (!strlen(name_buf))
1b7be377 179 break;
1b7be377 180
eb0cf671
PL
181 d = malloc (sizeof (FcGlobalCacheDir));
182 if (!d)
183 goto bail1;
1b7be377 184
eb0cf671
PL
185 d->next = cache->dirs;
186 cache->dirs = d;
1b7be377 187
eb0cf671
PL
188 d->name = FcStrCopy (name_buf);
189 d->ent = 0;
190 d->offset = lseek (cache->fd, 0, SEEK_CUR);
191 read (cache->fd, &d->metadata, sizeof (FcCache));
192 lseek (cache->fd, d->metadata.count, SEEK_CUR);
1b7be377 193 }
eb0cf671 194 return;
1b7be377 195
eb0cf671
PL
196 bail1:
197 for (d = cache->dirs; d; d = next)
1b7be377 198 {
eb0cf671
PL
199 next = d->next;
200 free (d);
1b7be377 201 }
eb0cf671
PL
202 cache->dirs = 0;
203 bail0:
204 free (current_arch_machine_name);
205 close (cache->fd);
206 cache->fd = -1;
207 return;
1b7be377
PL
208}
209
1b7be377 210FcBool
eb0cf671 211FcGlobalCacheReadDir (FcFontSet *set, FcStrSet *dirs, FcGlobalCache * cache, const FcChar8 *dir, FcConfig *config)
1b7be377 212{
eb0cf671 213 FcGlobalCacheDir *d;
1b7be377 214
eb0cf671 215 if (cache->fd == -1)
1b7be377 216 return FcFalse;
1b7be377 217
eb0cf671 218 for (d = cache->dirs; d; d = d->next)
1b7be377 219 {
eb0cf671 220 if (strcmp (d->name, dir) == 0)
1b7be377 221 {
eb0cf671
PL
222 lseek (cache->fd, d->offset, SEEK_SET);
223 if (!FcDirCacheConsume (cache->fd, set))
224 return FcFalse;
225 return FcTrue;
1b7be377 226 }
1b7be377 227 }
1b7be377 228
eb0cf671 229 return FcFalse;
1b7be377
PL
230}
231
eb0cf671
PL
232FcBool
233FcGlobalCacheUpdate (FcGlobalCache *cache,
234 const FcChar8 *name,
235 FcFontSet *set)
1b7be377 236{
eb0cf671 237 FcGlobalCacheDir * d;
1b7be377 238
eb0cf671
PL
239 if (!set->nfont)
240 return FcTrue;
1b7be377 241
eb0cf671 242 for (d = cache->dirs; d; d = d->next)
1b7be377 243 {
eb0cf671 244 if (strcmp(d->name, name) == 0)
1b7be377 245 break;
24330d27 246 }
24330d27 247
eb0cf671 248 if (!d)
24330d27 249 {
eb0cf671
PL
250 d = malloc (sizeof (FcGlobalCacheDir));
251 if (!d)
252 return FcFalse;
253 d->next = cache->dirs;
254 cache->dirs = d;
24330d27 255 }
24330d27 256
eb0cf671 257 cache->updated = FcTrue;
24330d27 258
eb0cf671
PL
259 d->name = FcStrCopy (name);
260 d->ent = FcDirCacheProduce (set, &d->metadata);
261 d->offset = 0;
262 return FcTrue;
24330d27
KP
263}
264
265FcBool
327a7fd4
KP
266FcGlobalCacheSave (FcGlobalCache *cache,
267 const FcChar8 *cache_file)
24330d27 268{
eb0cf671 269 int fd;
327a7fd4 270 FcGlobalCacheDir *dir;
327a7fd4 271 FcAtomic *atomic;
eb0cf671
PL
272 off_t current_arch_start = 0, truncate_to;
273 char * current_arch_machine_name, * header;
24330d27 274
eb0cf671 275 if (!cache->updated)
24330d27
KP
276 return FcTrue;
277
daeed6e0 278#if defined (HAVE_GETUID) && defined (HAVE_GETEUID)
a391da8f
KP
279 /* Set-UID programs can't safely update the cache */
280 if (getuid () != geteuid ())
281 return FcFalse;
daeed6e0 282#endif
a391da8f 283
134f6011
KP
284 atomic = FcAtomicCreate (cache_file);
285 if (!atomic)
24330d27 286 goto bail0;
134f6011 287 if (!FcAtomicLock (atomic))
24330d27 288 goto bail1;
eb0cf671
PL
289 fd = open ((char *) FcAtomicNewFile(atomic), O_RDWR | O_CREAT,
290 S_IRUSR | S_IWUSR);
291 if (fd == -1)
24330d27
KP
292 goto bail2;
293
eb0cf671
PL
294 current_arch_machine_name = FcCacheMachineSignature ();
295 current_arch_start = FcCacheSkipToArch(fd, current_arch_machine_name);
296 if (current_arch_start < 0)
297 current_arch_start = FcCacheNextOffset (lseek(fd, 0, SEEK_END));
298
299 if (!FcCacheMoveDown(fd, current_arch_start))
300 goto bail2;
301
302 current_arch_start = lseek(fd, 0, SEEK_CUR);
303 if (ftruncate (fd, current_arch_start) == -1)
304 goto bail2;
305
306 truncate_to = current_arch_start;
307 for (dir = cache->dirs; dir; dir = dir->next)
24330d27 308 {
eb0cf671
PL
309 truncate_to += strlen(dir->name) + 1;
310 truncate_to += sizeof (FcCache);
311 truncate_to = FcCacheNextOffset (current_arch_start + truncate_to);
312 truncate_to += dir->metadata.count;
313 }
314 truncate_to -= current_arch_start;
315 header = malloc (10 + strlen (current_arch_machine_name));
316 if (!header)
317 goto bail1;
318 sprintf (header, "%8x ", (int)truncate_to);
319 strcat (header, current_arch_machine_name);
320 if (!FcCacheWriteString (fd, header))
321 goto bail1;
322
323 for (dir = cache->dirs; dir; dir = dir->next)
324 {
5e678e94
PL
325 if (dir->ent)
326 {
327 FcCacheWriteString (fd, dir->name);
328 write (fd, &dir->metadata, sizeof(FcCache));
329 lseek (fd, FcCacheNextOffset (lseek(fd, 0, SEEK_END)), SEEK_SET);
330 write (fd, dir->ent, dir->metadata.count);
331 free (dir->ent);
332 }
24330d27 333 }
eb0cf671 334 FcCacheWriteString (fd, "");
24330d27 335
eb0cf671 336 if (close (fd) == -1)
24330d27
KP
337 goto bail3;
338
134f6011 339 if (!FcAtomicReplaceOrig (atomic))
24330d27
KP
340 goto bail3;
341
134f6011
KP
342 FcAtomicUnlock (atomic);
343 FcAtomicDestroy (atomic);
344
24330d27
KP
345 cache->updated = FcFalse;
346 return FcTrue;
347
24330d27 348bail3:
134f6011 349 FcAtomicDeleteNew (atomic);
24330d27 350bail2:
134f6011 351 FcAtomicUnlock (atomic);
24330d27 352bail1:
134f6011 353 FcAtomicDestroy (atomic);
24330d27
KP
354bail0:
355 return FcFalse;
356}
357
eb0cf671 358#define PAGESIZE 8192
212c9f43 359/*
eb0cf671
PL
360 * Find the next presumably-mmapable offset after the supplied file
361 * position.
212c9f43 362 */
4262e0b3
PL
363static int
364FcCacheNextOffset(off_t w)
179c3995 365{
212c9f43
PL
366 if (w % PAGESIZE == 0)
367 return w;
368 else
369 return ((w / PAGESIZE)+1)*PAGESIZE;
179c3995
KP
370}
371
212c9f43
PL
372/* return the address of the segment for the provided arch,
373 * or -1 if arch not found */
374static off_t
375FcCacheSkipToArch (int fd, const char * arch)
376{
2dbe7597
PL
377 char candidate_arch_machine_name_count[MACHINE_SIGNATURE_SIZE + 9];
378 char * candidate_arch;
212c9f43
PL
379 off_t current_arch_start = 0;
380
381 /* skip arches that are not the current arch */
382 while (1)
383 {
384 long bs;
385
386 lseek (fd, current_arch_start, SEEK_SET);
eb0cf671 387 if (FcCacheReadString (fd, candidate_arch_machine_name_count,
2dbe7597 388 sizeof (candidate_arch_machine_name_count)) == 0)
5e678e94 389 return -1;
2dbe7597
PL
390 if (!strlen(candidate_arch_machine_name_count))
391 return -1;
392 bs = strtol(candidate_arch_machine_name_count, &candidate_arch, 16);
393 candidate_arch++; /* skip leading space */
212c9f43 394
2dbe7597 395 if (strcmp (candidate_arch, arch)==0)
5e678e94 396 return current_arch_start;
212c9f43
PL
397 current_arch_start += bs;
398 }
399
5e678e94 400 return -1;
212c9f43
PL
401}
402
403/* Cuts out the segment at the file pointer (moves everything else
404 * down to cover it), and leaves the file pointer at the end of the
405 * file. */
212c9f43
PL
406static FcBool
407FcCacheMoveDown (int fd, off_t start)
408{
eb0cf671 409 char * buf = malloc (8192);
2dbe7597 410 char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
4262e0b3 411 long bs;
212c9f43
PL
412 int c, bytes_skipped;
413
414 if (!buf)
415 return FcFalse;
416
417 lseek (fd, start, SEEK_SET);
eb0cf671 418 if (FcCacheReadString (fd, candidate_arch_machine_name,
212c9f43
PL
419 sizeof (candidate_arch_machine_name)) == 0)
420 goto done;
2dbe7597 421 if (!strlen(candidate_arch_machine_name))
212c9f43
PL
422 goto done;
423
2dbe7597 424 bs = strtol(candidate_arch_machine_name, 0, 16);
212c9f43
PL
425 if (bs == 0)
426 goto done;
427
428 bytes_skipped = 0;
429 do
430 {
431 lseek (fd, start+bs+bytes_skipped, SEEK_SET);
eb0cf671 432 if ((c = read (fd, buf, 8192)) <= 0)
212c9f43
PL
433 break;
434 lseek (fd, start+bytes_skipped, SEEK_SET);
435 if (write (fd, buf, c) < 0)
436 goto bail;
437 bytes_skipped += c;
438 }
439 while (c > 0);
440 lseek (fd, start+bytes_skipped, SEEK_SET);
441
442 done:
443 free (buf);
444 return FcTrue;
445
446 bail:
447 free (buf);
448 return FcFalse;
449}
450
1b7be377
PL
451FcBool
452FcDirCacheValid (const FcChar8 *dir)
453{
454 FcChar8 *cache_file = FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
455 struct stat file_stat, dir_stat;
456
457 if (stat ((char *) dir, &dir_stat) < 0)
458 {
459 FcStrFree (cache_file);
460 return FcFalse;
461 }
462 if (stat ((char *) cache_file, &file_stat) < 0)
463 {
464 FcStrFree (cache_file);
465 return FcFalse;
466 }
467 FcStrFree (cache_file);
468 /*
469 * If the directory has been modified more recently than
470 * the cache file, the cache is not valid
471 */
472 if (dir_stat.st_mtime - file_stat.st_mtime > 0)
473 return FcFalse;
474 return FcTrue;
475}
476
4262e0b3 477static int
1b7be377
PL
478FcCacheReadDirs (FcConfig * config, FcGlobalCache * cache,
479 FcStrList *list, FcFontSet * set)
4262e0b3
PL
480{
481 DIR *d;
482 struct dirent *e;
483 int ret = 0;
484 FcChar8 *dir;
485 FcChar8 *file, *base;
486 FcStrSet *subdirs;
487 FcStrList *sublist;
488 struct stat statb;
489
490 /*
491 * Now scan all of the directories into separate databases
492 * and write out the results
493 */
494 while ((dir = FcStrListNext (list)))
495 {
496 /* freed below */
497 file = (FcChar8 *) malloc (strlen ((char *) dir) + 1 + FC_MAX_FILE_LEN + 1);
498 if (!file)
499 return FcFalse;
500
501 strcpy ((char *) file, (char *) dir);
502 strcat ((char *) file, "/");
503 base = file + strlen ((char *) file);
504
505 subdirs = FcStrSetCreate ();
506 if (!subdirs)
507 {
508 fprintf (stderr, "Can't create directory set\n");
509 ret++;
510 free (file);
511 continue;
512 }
513
514 if (access ((char *) dir, X_OK) < 0)
515 {
516 switch (errno) {
517 case ENOENT:
518 case ENOTDIR:
519 case EACCES:
520 break;
521 default:
522 fprintf (stderr, "\"%s\": ", dir);
523 perror ("");
524 ret++;
525 }
526 FcStrSetDestroy (subdirs);
527 free (file);
528 continue;
529 }
530 if (stat ((char *) dir, &statb) == -1)
531 {
532 fprintf (stderr, "\"%s\": ", dir);
533 perror ("");
534 FcStrSetDestroy (subdirs);
535 ret++;
536 free (file);
537 continue;
538 }
539 if (!S_ISDIR (statb.st_mode))
540 {
541 fprintf (stderr, "\"%s\": not a directory, skipping\n", dir);
542 FcStrSetDestroy (subdirs);
543 free (file);
544 continue;
545 }
2304e38f 546 if (!FcDirCacheValid (dir) || !FcDirCacheRead (set, subdirs, dir))
4262e0b3 547 {
1b7be377
PL
548 if (FcDebug () & FC_DBG_FONTSET)
549 printf ("scan dir %s\n", dir);
2304e38f 550
1b7be377
PL
551 FcDirScanConfig (set, subdirs, cache,
552 config->blanks, dir, FcFalse, config);
4262e0b3
PL
553 }
554 sublist = FcStrListCreate (subdirs);
555 FcStrSetDestroy (subdirs);
556 if (!sublist)
557 {
558 fprintf (stderr, "Can't create subdir list in \"%s\"\n", dir);
559 ret++;
560 free (file);
561 continue;
562 }
1b7be377 563 ret += FcCacheReadDirs (config, cache, sublist, set);
4262e0b3
PL
564 free (file);
565 }
566 FcStrListDone (list);
567 return ret;
568}
569
570FcFontSet *
1b7be377 571FcCacheRead (FcConfig *config, FcGlobalCache * cache)
4262e0b3
PL
572{
573 FcFontSet * s = FcFontSetCreate();
574 if (!s)
575 return 0;
576
1b7be377 577 if (FcCacheReadDirs (config, cache, FcConfigGetConfigDirs (config), s))
4262e0b3
PL
578 goto bail;
579
580 return s;
581
582 bail:
583 FcFontSetDestroy (s);
584 return 0;
585}
586
212c9f43 587/* read serialized state from the cache file */
eb0cf671 588static FcBool
2304e38f 589FcDirCacheRead (FcFontSet * set, FcStrSet * dirs, const FcChar8 *dir)
212c9f43 590{
4262e0b3
PL
591 FcChar8 *cache_file = FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
592 int fd;
212c9f43 593 char * current_arch_machine_name;
2dbe7597 594 char candidate_arch_machine_name[9+MACHINE_SIGNATURE_SIZE];
212c9f43 595 off_t current_arch_start = 0;
2304e38f 596 FcChar8 subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
212c9f43 597
4262e0b3
PL
598 if (!cache_file)
599 goto bail;
212c9f43 600
eb0cf671 601 current_arch_machine_name = FcCacheMachineSignature();
4262e0b3 602 fd = open(cache_file, O_RDONLY);
212c9f43 603 if (fd == -1)
2dbe7597 604 goto bail;
212c9f43 605
212c9f43
PL
606 current_arch_start = FcCacheSkipToArch(fd, current_arch_machine_name);
607 if (current_arch_start < 0)
4262e0b3 608 goto bail1;
212c9f43
PL
609
610 lseek (fd, current_arch_start, SEEK_SET);
eb0cf671 611 if (FcCacheReadString (fd, candidate_arch_machine_name,
212c9f43 612 sizeof (candidate_arch_machine_name)) == 0)
4262e0b3 613 goto bail1;
2304e38f
PL
614
615 while (strlen(FcCacheReadString (fd, subdirName, sizeof (subdirName))) > 0)
616 FcStrSetAdd (dirs, subdirName);
617
eb0cf671
PL
618 if (!FcDirCacheConsume (fd, set))
619 goto bail1;
620
621 close(fd);
622 free (cache_file);
623 return FcTrue;
624
625 bail1:
2304e38f 626 close (fd);
eb0cf671
PL
627 bail:
628 free (cache_file);
629 return FcFalse;
630}
631
632static FcBool
633FcDirCacheConsume (int fd, FcFontSet *set)
634{
635 FcCache metadata;
636 void * current_dir_block;
fd77c154 637 off_t pos;
212c9f43 638
212c9f43
PL
639 read(fd, &metadata, sizeof(FcCache));
640 if (metadata.magic != FC_CACHE_MAGIC)
eb0cf671 641 return FcFalse;
212c9f43 642
2dbe7597 643 if (!metadata.count)
eb0cf671 644 return FcTrue;
2dbe7597 645
fd77c154 646 pos = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
2dbe7597
PL
647 current_dir_block = mmap (0, metadata.count,
648 PROT_READ, MAP_SHARED, fd, pos);
649 if (current_dir_block == MAP_FAILED)
eb0cf671 650 return FcFalse;
2dbe7597
PL
651
652 if (!FcFontSetUnserialize (metadata, set, current_dir_block))
eb0cf671
PL
653 return FcFalse;
654
212c9f43 655 return FcTrue;
eb0cf671
PL
656}
657
658static void *
659FcDirCacheProduce (FcFontSet *set, FcCache *metadata)
660{
661 void * current_dir_block, * final_dir_block;
662 static int rand_state = 0;
663 int bank;
664
665 if (!rand_state)
666 rand_state = time(0L);
667 bank = rand_r(&rand_state);
668
669 while (FcCacheHaveBank(bank))
670 bank = rand_r(&rand_state);
671
672 memset (metadata, 0, sizeof(FcCache));
673 FcFontSetNewBank();
674 metadata->count = FcFontSetNeededBytes (set);
675 metadata->magic = FC_CACHE_MAGIC;
676 metadata->bank = bank;
677
678 if (!metadata->count) /* not a failure, no fonts to write */
679 return 0;
680
681 current_dir_block = malloc (metadata->count);
682 if (!current_dir_block)
683 goto bail;
684 final_dir_block = FcFontSetDistributeBytes (metadata, current_dir_block);
685
686 if ((char *)current_dir_block + metadata->count != final_dir_block)
687 goto bail;
688
689 if (!FcFontSetSerialize (bank, set))
690 goto bail;
691
692 return current_dir_block;
212c9f43 693
4262e0b3 694 bail:
eb0cf671
PL
695 free (current_dir_block);
696 return 0;
212c9f43
PL
697}
698
699/* write serialized state to the cache file */
700FcBool
2304e38f 701FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir)
212c9f43 702{
4262e0b3 703 FcChar8 *cache_file = FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
2304e38f 704 int fd, i;
212c9f43
PL
705 FcCache metadata;
706 off_t current_arch_start = 0, truncate_to;
2dbe7597 707 char * current_arch_machine_name, * header;
eb0cf671 708 void * current_dir_block;
212c9f43 709
4262e0b3
PL
710 if (!cache_file)
711 goto bail;
712
eb0cf671 713 current_dir_block = FcDirCacheProduce (set, &metadata);
212c9f43 714
eb0cf671 715 if (!metadata.count)
4262e0b3
PL
716 {
717 unlink (cache_file);
718 free (cache_file);
719 return FcTrue;
720 }
721
4262e0b3
PL
722 if (!current_dir_block)
723 goto bail;
212c9f43 724
4262e0b3
PL
725 if (FcDebug () & FC_DBG_CACHE)
726 printf ("FcDirCacheWriteDir cache_file \"%s\"\n", cache_file);
727
728 fd = open(cache_file, O_RDWR | O_CREAT, 0666);
212c9f43 729 if (fd == -1)
eb0cf671 730 goto bail0;
212c9f43 731
eb0cf671 732 current_arch_machine_name = FcCacheMachineSignature ();
212c9f43
PL
733 current_arch_start = FcCacheSkipToArch(fd, current_arch_machine_name);
734 if (current_arch_start < 0)
4262e0b3 735 current_arch_start = FcCacheNextOffset (lseek(fd, 0, SEEK_END));
212c9f43
PL
736
737 if (!FcCacheMoveDown(fd, current_arch_start))
eb0cf671 738 goto bail2;
212c9f43
PL
739
740 current_arch_start = lseek(fd, 0, SEEK_CUR);
741 if (ftruncate (fd, current_arch_start) == -1)
eb0cf671 742 goto bail2;
212c9f43 743
212c9f43 744 /* now write the address of the next offset */
eb0cf671 745 truncate_to = FcCacheNextOffset (FcCacheNextOffset (current_arch_start + sizeof (FcCache)) + metadata.count) - current_arch_start;
2dbe7597 746 header = malloc (10 + strlen (current_arch_machine_name));
eb0cf671
PL
747 if (!header)
748 goto bail1;
2dbe7597
PL
749 sprintf (header, "%8x ", (int)truncate_to);
750 strcat (header, current_arch_machine_name);
eb0cf671 751 if (!FcCacheWriteString (fd, header))
4262e0b3 752 goto bail1;
212c9f43 753
2304e38f
PL
754 for (i = 0; i < dirs->size; i++)
755 FcCacheWriteString (fd, dirs->strs[i]);
756 FcCacheWriteString (fd, "");
757
4262e0b3
PL
758 write (fd, &metadata, sizeof(FcCache));
759 lseek (fd, FcCacheNextOffset (lseek(fd, 0, SEEK_END)), SEEK_SET);
eb0cf671 760 write (fd, current_dir_block, metadata.count);
5e678e94 761 free (current_dir_block);
4262e0b3 762
2dbe7597 763 /* this actually serves to pad out the cache file, if needed */
212c9f43 764 if (ftruncate (fd, current_arch_start + truncate_to) == -1)
4262e0b3 765 goto bail1;
212c9f43
PL
766
767 close(fd);
768 return FcTrue;
769
eb0cf671
PL
770 bail2:
771 free (header);
4262e0b3 772 bail1:
212c9f43 773 free (current_arch_machine_name);
eb0cf671
PL
774 bail0:
775 free (current_dir_block);
4262e0b3
PL
776 bail:
777 unlink (cache_file);
778 free (cache_file);
212c9f43
PL
779 return FcFalse;
780}
781
2dbe7597 782static char *
eb0cf671 783FcCacheMachineSignature ()
2dbe7597
PL
784{
785 static char buf[MACHINE_SIGNATURE_SIZE];
786 int magic = ENDIAN_TEST;
787 char * m = (char *)&magic;
788
789 sprintf (buf, "%2x%2x%2x%2x "
790 "%4x %4x %4x %4x %4x %4x %4x %4x %4x %4x %4x %4x "
791 "%4x %4x %4x %4x %4x %4x %4x\n",
792 m[0], m[1], m[2], m[3],
793 sizeof (char),
794 sizeof (char *),
795 sizeof (int),
796 sizeof (FcPattern),
797 sizeof (FcPatternEltPtr),
798 sizeof (struct _FcPatternElt *),
799 sizeof (FcPatternElt),
800 sizeof (FcObjectPtr),
801 sizeof (FcValueListPtr),
802 sizeof (FcValue),
803 sizeof (FcValueBinding),
804 sizeof (struct _FcValueList *),
805 sizeof (FcCharSet),
806 sizeof (FcCharLeaf **),
807 sizeof (FcChar16 *),
808 sizeof (FcChar16),
809 sizeof (FcCharLeaf),
810 sizeof (FcChar32),
811 sizeof (FcCache));
812
813 return buf;
814}
815
4262e0b3
PL
816static int banks_ptr = 0, banks_alloc = 0;
817static int * bankId = 0;
818
eb0cf671 819static FcBool
4262e0b3
PL
820FcCacheHaveBank (int bank)
821{
822 int i;
823
824 if (bank < FC_BANK_FIRST)
825 return FcTrue;
826
827 for (i = 0; i < banks_ptr; i++)
828 if (bankId[i] == bank)
829 return FcTrue;
830
831 return FcFalse;
832}
833
834int
835FcCacheBankToIndex (int bank)
836{
837 static int lastBank = FC_BANK_DYNAMIC, lastIndex = -1;
838 int i;
839 int * b;
840
841 if (bank == lastBank)
842 return lastIndex;
843
844 for (i = 0; i < banks_ptr; i++)
845 if (bankId[i] == bank)
846 return i;
847
2dbe7597 848 if (banks_ptr >= banks_alloc)
4262e0b3 849 {
2dbe7597 850 b = realloc (bankId, (banks_alloc + 4) * sizeof(int));
4262e0b3
PL
851 if (!b)
852 return -1;
853
854 bankId = b;
855 banks_alloc += 4;
856 }
857
858 i = banks_ptr++;
859 bankId[i] = bank;
860 return i;
861}