]> git.wh0rd.org - fontconfig.git/blame - src/fccache.c
Check existence of directory cache file before attempting to unlink.
[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
212c9f43 26#include <fcntl.h>
4262e0b3 27#include <dirent.h>
212c9f43
PL
28#include <sys/mman.h>
29#include <sys/utsname.h>
fd77c154
PL
30#include <sys/types.h>
31#include <unistd.h>
24330d27
KP
32#include "fcint.h"
33
2dbe7597
PL
34#define ENDIAN_TEST 0x12345678
35#define MACHINE_SIGNATURE_SIZE 9 + 5*19 + 1
36
eb0cf671
PL
37static off_t
38FcCacheSkipToArch (int fd, const char * arch);
1b7be377 39
eb0cf671 40static FcBool
1d879de2 41FcCacheCopyOld (int fd, int fd_orig, off_t start);
1b7be377 42
eb0cf671
PL
43static void *
44FcDirCacheProduce (FcFontSet *set, FcCache * metadata);
1b7be377
PL
45
46static FcBool
eb0cf671 47FcDirCacheConsume (int fd, FcFontSet *set);
1b7be377 48
2eb84374 49FcBool
2304e38f 50FcDirCacheRead (FcFontSet * set, FcStrSet * dirs, const FcChar8 *dir);
1b7be377 51
eb0cf671
PL
52static int
53FcCacheNextOffset(off_t w);
1b7be377 54
eb0cf671
PL
55static char *
56FcCacheMachineSignature (void);
1b7be377
PL
57
58static FcBool
eb0cf671 59FcCacheHaveBank (int bank);
1b7be377 60
eb0cf671 61#define FC_DBG_CACHE_REF 1024
1b7be377 62
8245771d
PL
63static char *
64FcCacheReadString (int fd, char *dest, int len)
24330d27 65{
212c9f43 66 FcChar8 c;
ccb3e93b 67 FcBool escape;
ccb3e93b
KP
68 int size;
69 int i;
24330d27 70
24330d27 71 if (len == 0)
03a212e5 72 return 0;
24330d27 73
ccb3e93b
KP
74 size = len;
75 i = 0;
24330d27 76 escape = FcFalse;
212c9f43 77 while (read (fd, &c, 1) == 1)
24330d27
KP
78 {
79 if (!escape)
80 {
81 switch (c) {
82 case '"':
ccb3e93b
KP
83 c = '\0';
84 break;
24330d27
KP
85 case '\\':
86 escape = FcTrue;
87 continue;
88 }
89 }
ccb3e93b
KP
90 if (i == size)
91 {
212c9f43
PL
92 dest[i++] = 0;
93 return dest;
ccb3e93b 94 }
212c9f43 95 dest[i++] = c;
ccb3e93b 96 if (c == '\0')
212c9f43 97 return dest;
24330d27
KP
98 escape = FcFalse;
99 }
ccb3e93b 100 return 0;
24330d27
KP
101}
102
103static FcBool
8245771d 104FcCacheWriteString (int fd, const char *chars)
327a7fd4 105{
212c9f43 106 if (write (fd, chars, strlen(chars)+1) != strlen(chars)+1)
327a7fd4 107 return FcFalse;
327a7fd4
KP
108 return FcTrue;
109}
110
eb0cf671
PL
111static void
112FcGlobalCacheDirDestroy (FcGlobalCacheDir *d)
1b7be377 113{
5e678e94
PL
114 FcMemFree (FC_MEM_STRING, strlen (d->name)+1);
115 free (d->name);
116 FcMemFree (FC_MEM_CACHE, sizeof (FcGlobalCacheDir));
117 free (d);
1b7be377
PL
118}
119
eb0cf671
PL
120FcGlobalCache *
121FcGlobalCacheCreate (void)
1b7be377 122{
eb0cf671 123 FcGlobalCache *cache;
1b7be377 124
eb0cf671
PL
125 cache = malloc (sizeof (FcGlobalCache));
126 if (!cache)
127 return 0;
128 FcMemAlloc (FC_MEM_CACHE, sizeof (FcGlobalCache));
129 cache->dirs = 0;
130 cache->updated = FcFalse;
131 cache->fd = -1;
132 return cache;
1b7be377
PL
133}
134
eb0cf671
PL
135void
136FcGlobalCacheDestroy (FcGlobalCache *cache)
327a7fd4 137{
eb0cf671 138 FcGlobalCacheDir *d, *next;
327a7fd4 139
eb0cf671 140 for (d = cache->dirs; d; d = next)
327a7fd4 141 {
eb0cf671
PL
142 next = d->next;
143 FcGlobalCacheDirDestroy (d);
327a7fd4 144 }
eb0cf671
PL
145 FcMemFree (FC_MEM_CACHE, sizeof (FcGlobalCache));
146 free (cache);
327a7fd4
KP
147}
148
149void
eb0cf671 150FcGlobalCacheLoad (FcGlobalCache *cache,
03a212e5 151 FcStrSet *staleDirs,
eb0cf671 152 const FcChar8 *cache_file)
327a7fd4 153{
8245771d 154 char name_buf[8192];
eb0cf671
PL
155 FcGlobalCacheDir *d, *next;
156 char * current_arch_machine_name;
157 char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
158 off_t current_arch_start;
327a7fd4 159
03a212e5
PL
160 struct stat cache_stat, dir_stat;
161
162 if (stat ((char *) cache_file, &cache_stat) < 0)
163 return;
164
eb0cf671
PL
165 cache->fd = open ((char *) cache_file, O_RDONLY);
166 if (cache->fd == -1)
167 return;
327a7fd4 168
eb0cf671 169 cache->updated = FcFalse;
327a7fd4 170
eb0cf671
PL
171 current_arch_machine_name = FcCacheMachineSignature ();
172 current_arch_start = FcCacheSkipToArch(cache->fd,
173 current_arch_machine_name);
174 if (current_arch_start < 0)
175 goto bail0;
327a7fd4 176
eb0cf671 177 lseek (cache->fd, current_arch_start, SEEK_SET);
03a212e5
PL
178 FcCacheReadString (cache->fd, candidate_arch_machine_name,
179 sizeof (candidate_arch_machine_name));
180 if (strlen(candidate_arch_machine_name) == 0)
eb0cf671 181 goto bail0;
1b7be377 182
eb0cf671 183 while (1)
1b7be377 184 {
8cb4c56d
PL
185 off_t targ;
186
eb0cf671
PL
187 FcCacheReadString (cache->fd, name_buf, sizeof (name_buf));
188 if (!strlen(name_buf))
1b7be377 189 break;
1b7be377 190
03a212e5
PL
191 if (stat ((char *) name_buf, &dir_stat) < 0 ||
192 dir_stat.st_mtime > cache_stat.st_mtime)
193 {
194 FcCache md;
195
8245771d 196 FcStrSetAdd (staleDirs, FcStrCopy ((FcChar8 *)name_buf));
03a212e5
PL
197 read (cache->fd, &md, sizeof (FcCache));
198 lseek (cache->fd, FcCacheNextOffset (lseek(cache->fd, 0, SEEK_CUR)) + md.count, SEEK_SET);
199 continue;
200 }
201
eb0cf671
PL
202 d = malloc (sizeof (FcGlobalCacheDir));
203 if (!d)
204 goto bail1;
1b7be377 205
eb0cf671
PL
206 d->next = cache->dirs;
207 cache->dirs = d;
1b7be377 208
8245771d 209 d->name = (char *)FcStrCopy ((FcChar8 *)name_buf);
eb0cf671
PL
210 d->ent = 0;
211 d->offset = lseek (cache->fd, 0, SEEK_CUR);
8cb4c56d
PL
212 if (read (cache->fd, &d->metadata, sizeof (FcCache)) != sizeof (FcCache))
213 goto bail1;
214 targ = FcCacheNextOffset (lseek(cache->fd, 0, SEEK_CUR)) + d->metadata.count;
215 if (lseek (cache->fd, targ, SEEK_SET) != targ)
216 goto bail1;
1b7be377 217 }
eb0cf671 218 return;
1b7be377 219
eb0cf671
PL
220 bail1:
221 for (d = cache->dirs; d; d = next)
1b7be377 222 {
eb0cf671
PL
223 next = d->next;
224 free (d);
1b7be377 225 }
eb0cf671
PL
226 cache->dirs = 0;
227 bail0:
eb0cf671
PL
228 close (cache->fd);
229 cache->fd = -1;
230 return;
1b7be377
PL
231}
232
1b7be377 233FcBool
8245771d 234FcGlobalCacheReadDir (FcFontSet *set, FcStrSet *dirs, FcGlobalCache * cache, const char *dir, FcConfig *config)
1b7be377 235{
eb0cf671 236 FcGlobalCacheDir *d;
03a212e5 237 FcBool ret = FcFalse;
1b7be377 238
eb0cf671 239 if (cache->fd == -1)
1b7be377 240 return FcFalse;
1b7be377 241
eb0cf671 242 for (d = cache->dirs; d; d = d->next)
1b7be377 243 {
03a212e5 244 if (strncmp (d->name, dir, strlen(dir)) == 0)
1b7be377 245 {
eb0cf671
PL
246 lseek (cache->fd, d->offset, SEEK_SET);
247 if (!FcDirCacheConsume (cache->fd, set))
248 return FcFalse;
03a212e5
PL
249 if (strcmp (d->name, dir) == 0)
250 ret = FcTrue;
1b7be377 251 }
1b7be377 252 }
1b7be377 253
03a212e5 254 return ret;
1b7be377
PL
255}
256
eb0cf671
PL
257FcBool
258FcGlobalCacheUpdate (FcGlobalCache *cache,
8245771d 259 const char *name,
eb0cf671 260 FcFontSet *set)
1b7be377 261{
eb0cf671 262 FcGlobalCacheDir * d;
1b7be377 263
eb0cf671
PL
264 if (!set->nfont)
265 return FcTrue;
1b7be377 266
eb0cf671 267 for (d = cache->dirs; d; d = d->next)
1b7be377 268 {
eb0cf671 269 if (strcmp(d->name, name) == 0)
1b7be377 270 break;
24330d27 271 }
24330d27 272
eb0cf671 273 if (!d)
24330d27 274 {
eb0cf671
PL
275 d = malloc (sizeof (FcGlobalCacheDir));
276 if (!d)
277 return FcFalse;
278 d->next = cache->dirs;
279 cache->dirs = d;
24330d27 280 }
24330d27 281
eb0cf671 282 cache->updated = FcTrue;
24330d27 283
8245771d 284 d->name = (char *)FcStrCopy ((FcChar8 *)name);
eb0cf671
PL
285 d->ent = FcDirCacheProduce (set, &d->metadata);
286 d->offset = 0;
287 return FcTrue;
24330d27
KP
288}
289
290FcBool
327a7fd4
KP
291FcGlobalCacheSave (FcGlobalCache *cache,
292 const FcChar8 *cache_file)
24330d27 293{
1d879de2 294 int fd, fd_orig;
327a7fd4 295 FcGlobalCacheDir *dir;
327a7fd4 296 FcAtomic *atomic;
eb0cf671
PL
297 off_t current_arch_start = 0, truncate_to;
298 char * current_arch_machine_name, * header;
24330d27 299
eb0cf671 300 if (!cache->updated)
24330d27
KP
301 return FcTrue;
302
daeed6e0 303#if defined (HAVE_GETUID) && defined (HAVE_GETEUID)
a391da8f
KP
304 /* Set-UID programs can't safely update the cache */
305 if (getuid () != geteuid ())
306 return FcFalse;
daeed6e0 307#endif
a391da8f 308
134f6011
KP
309 atomic = FcAtomicCreate (cache_file);
310 if (!atomic)
1d879de2
PL
311 return FcFalse;
312
134f6011 313 if (!FcAtomicLock (atomic))
24330d27 314 goto bail1;
eb0cf671
PL
315 fd = open ((char *) FcAtomicNewFile(atomic), O_RDWR | O_CREAT,
316 S_IRUSR | S_IWUSR);
317 if (fd == -1)
24330d27
KP
318 goto bail2;
319
1d879de2
PL
320 fd_orig = open ((char *) FcAtomicOrigFile(atomic), O_RDONLY);
321
eb0cf671 322 current_arch_machine_name = FcCacheMachineSignature ();
1d879de2
PL
323 if (fd_orig == -1)
324 current_arch_start = 0;
325 else
326 current_arch_start = FcCacheSkipToArch (fd_orig,
327 current_arch_machine_name);
328
eb0cf671 329 if (current_arch_start < 0)
649cc361 330 current_arch_start = FcCacheNextOffset (lseek(fd_orig, 0, SEEK_END));
eb0cf671 331
1d879de2
PL
332 if (!FcCacheCopyOld(fd, fd_orig, current_arch_start))
333 goto bail3;
334
335 close (fd_orig);
336 fd_orig = -1;
eb0cf671
PL
337
338 current_arch_start = lseek(fd, 0, SEEK_CUR);
339 if (ftruncate (fd, current_arch_start) == -1)
1d879de2 340 goto bail3;
eb0cf671 341
03a212e5
PL
342 header = malloc (10 + strlen (current_arch_machine_name));
343 if (!header)
1d879de2 344 goto bail3;
03a212e5 345
8cb4c56d 346 truncate_to = current_arch_start + strlen(current_arch_machine_name) + 11;
eb0cf671 347 for (dir = cache->dirs; dir; dir = dir->next)
24330d27 348 {
eb0cf671
PL
349 truncate_to += strlen(dir->name) + 1;
350 truncate_to += sizeof (FcCache);
351 truncate_to = FcCacheNextOffset (current_arch_start + truncate_to);
352 truncate_to += dir->metadata.count;
353 }
354 truncate_to -= current_arch_start;
eb0cf671 355
8cb4c56d
PL
356 sprintf (header, "%8x ", (int)truncate_to);
357 strcat (header, current_arch_machine_name);
358 if (!FcCacheWriteString (fd, header))
1d879de2 359 goto bail4;
8cb4c56d 360
eb0cf671
PL
361 for (dir = cache->dirs; dir; dir = dir->next)
362 {
5e678e94
PL
363 if (dir->ent)
364 {
365 FcCacheWriteString (fd, dir->name);
366 write (fd, &dir->metadata, sizeof(FcCache));
f6ee3db5 367 lseek (fd, FcCacheNextOffset (lseek(fd, 0, SEEK_CUR)), SEEK_SET);
5e678e94
PL
368 write (fd, dir->ent, dir->metadata.count);
369 free (dir->ent);
370 }
24330d27 371 }
eb0cf671 372 FcCacheWriteString (fd, "");
24330d27 373
eb0cf671 374 if (close (fd) == -1)
1d879de2 375 goto bail25;
24330d27 376
134f6011 377 if (!FcAtomicReplaceOrig (atomic))
1d879de2 378 goto bail25;
24330d27 379
134f6011
KP
380 FcAtomicUnlock (atomic);
381 FcAtomicDestroy (atomic);
382
24330d27
KP
383 cache->updated = FcFalse;
384 return FcTrue;
385
1d879de2
PL
386 bail4:
387 free (header);
388 bail3:
389 if (fd_orig != -1)
390 close (fd_orig);
391
392 close (fd);
393 bail25:
134f6011 394 FcAtomicDeleteNew (atomic);
1d879de2 395 bail2:
134f6011 396 FcAtomicUnlock (atomic);
1d879de2 397 bail1:
134f6011 398 FcAtomicDestroy (atomic);
24330d27
KP
399 return FcFalse;
400}
401
eb0cf671 402#define PAGESIZE 8192
212c9f43 403/*
eb0cf671
PL
404 * Find the next presumably-mmapable offset after the supplied file
405 * position.
212c9f43 406 */
4262e0b3
PL
407static int
408FcCacheNextOffset(off_t w)
179c3995 409{
212c9f43
PL
410 if (w % PAGESIZE == 0)
411 return w;
412 else
413 return ((w / PAGESIZE)+1)*PAGESIZE;
179c3995
KP
414}
415
212c9f43
PL
416/* return the address of the segment for the provided arch,
417 * or -1 if arch not found */
418static off_t
419FcCacheSkipToArch (int fd, const char * arch)
420{
2dbe7597
PL
421 char candidate_arch_machine_name_count[MACHINE_SIGNATURE_SIZE + 9];
422 char * candidate_arch;
212c9f43
PL
423 off_t current_arch_start = 0;
424
425 /* skip arches that are not the current arch */
426 while (1)
427 {
428 long bs;
429
8cb4c56d
PL
430 if (lseek (fd, current_arch_start, SEEK_SET) != current_arch_start)
431 return -1;
432
eb0cf671 433 if (FcCacheReadString (fd, candidate_arch_machine_name_count,
2dbe7597 434 sizeof (candidate_arch_machine_name_count)) == 0)
5e678e94 435 return -1;
2dbe7597
PL
436 if (!strlen(candidate_arch_machine_name_count))
437 return -1;
438 bs = strtol(candidate_arch_machine_name_count, &candidate_arch, 16);
8cb4c56d 439
13cdf607 440 // count = 0 should probably be distinguished from the !bs condition
8cb4c56d
PL
441 if (!bs || bs < strlen (candidate_arch_machine_name_count))
442 return -1;
443
2dbe7597 444 candidate_arch++; /* skip leading space */
212c9f43 445
2dbe7597 446 if (strcmp (candidate_arch, arch)==0)
5e678e94 447 return current_arch_start;
212c9f43
PL
448 current_arch_start += bs;
449 }
450
5e678e94 451 return -1;
212c9f43
PL
452}
453
454/* Cuts out the segment at the file pointer (moves everything else
455 * down to cover it), and leaves the file pointer at the end of the
456 * file. */
212c9f43 457static FcBool
1d879de2 458FcCacheCopyOld (int fd, int fd_orig, off_t start)
212c9f43 459{
eb0cf671 460 char * buf = malloc (8192);
2dbe7597 461 char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
4262e0b3 462 long bs;
212c9f43 463 int c, bytes_skipped;
1d879de2 464 off_t loc;
212c9f43
PL
465
466 if (!buf)
467 return FcFalse;
468
1d879de2
PL
469 loc = 0;
470 lseek (fd, 0, SEEK_SET); lseek (fd_orig, 0, SEEK_SET);
471 do
472 {
473 int b = 8192;
474 if (loc + b > start)
475 b = start - loc;
476
477 if ((c = read (fd_orig, buf, b)) <= 0)
478 break;
479 if (write (fd, buf, c) < 0)
480 goto bail;
481
482 loc += c;
483 }
484 while (c > 0);
485
212c9f43 486 lseek (fd, start, SEEK_SET);
eb0cf671 487 if (FcCacheReadString (fd, candidate_arch_machine_name,
212c9f43
PL
488 sizeof (candidate_arch_machine_name)) == 0)
489 goto done;
2dbe7597 490 if (!strlen(candidate_arch_machine_name))
212c9f43
PL
491 goto done;
492
2dbe7597 493 bs = strtol(candidate_arch_machine_name, 0, 16);
212c9f43
PL
494 if (bs == 0)
495 goto done;
496
497 bytes_skipped = 0;
498 do
499 {
500 lseek (fd, start+bs+bytes_skipped, SEEK_SET);
eb0cf671 501 if ((c = read (fd, buf, 8192)) <= 0)
212c9f43
PL
502 break;
503 lseek (fd, start+bytes_skipped, SEEK_SET);
504 if (write (fd, buf, c) < 0)
505 goto bail;
506 bytes_skipped += c;
507 }
508 while (c > 0);
509 lseek (fd, start+bytes_skipped, SEEK_SET);
510
511 done:
512 free (buf);
513 return FcTrue;
514
515 bail:
516 free (buf);
517 return FcFalse;
518}
519
55c8fa4f 520/* Does not check that the cache has the appropriate arch section. */
1b7be377
PL
521FcBool
522FcDirCacheValid (const FcChar8 *dir)
523{
524 FcChar8 *cache_file = FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
525 struct stat file_stat, dir_stat;
526
527 if (stat ((char *) dir, &dir_stat) < 0)
528 {
529 FcStrFree (cache_file);
530 return FcFalse;
531 }
532 if (stat ((char *) cache_file, &file_stat) < 0)
533 {
534 FcStrFree (cache_file);
535 return FcFalse;
536 }
6bf23804 537
55c8fa4f
PL
538 FcStrFree (cache_file);
539 /*
540 * If the directory has been modified more recently than
541 * the cache file, the cache is not valid
542 */
543 if (dir_stat.st_mtime - file_stat.st_mtime > 0)
544 return FcFalse;
545 return FcTrue;
546}
547
548/* Assumes that the cache file in 'dir' exists.
549 * Checks that the cache has the appropriate arch section. */
550FcBool
551FcDirCacheHasCurrentArch (const FcChar8 *dir)
552{
553 FcChar8 *cache_file = FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
554 int fd;
555 off_t current_arch_start;
556 char *current_arch_machine_name;
557
6bf23804 558 current_arch_machine_name = FcCacheMachineSignature();
55c8fa4f 559 fd = open ((char *)cache_file, O_RDONLY);
6bf23804
PL
560 if (fd == -1)
561 return FcFalse;
562
563 current_arch_start = FcCacheSkipToArch(fd, current_arch_machine_name);
564 close (fd);
565
566 if (current_arch_start < 0)
567 return FcFalse;
55c8fa4f
PL
568
569 return FcTrue;
570}
6bf23804 571
55c8fa4f
PL
572FcBool
573FcDirCacheUnlink (const FcChar8 *dir)
574{
575 FcChar8 *cache_file = FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
15d7bd0a 576 struct stat cache_stat;
55c8fa4f 577
15d7bd0a
PL
578 if (stat ((char *) cache_file, &cache_stat) == 0 &&
579 unlink ((char *)cache_file) != 0)
1178b569
PL
580 {
581 FcStrFree (cache_file);
1b7be377 582 return FcFalse;
1178b569 583 }
55c8fa4f
PL
584
585 FcStrFree (cache_file);
1b7be377
PL
586 return FcTrue;
587}
588
4262e0b3 589static int
1b7be377
PL
590FcCacheReadDirs (FcConfig * config, FcGlobalCache * cache,
591 FcStrList *list, FcFontSet * set)
4262e0b3 592{
4262e0b3
PL
593 int ret = 0;
594 FcChar8 *dir;
595 FcChar8 *file, *base;
596 FcStrSet *subdirs;
597 FcStrList *sublist;
598 struct stat statb;
599
600 /*
03a212e5 601 * Read in the results from 'list'.
4262e0b3
PL
602 */
603 while ((dir = FcStrListNext (list)))
604 {
605 /* freed below */
606 file = (FcChar8 *) malloc (strlen ((char *) dir) + 1 + FC_MAX_FILE_LEN + 1);
607 if (!file)
608 return FcFalse;
609
610 strcpy ((char *) file, (char *) dir);
611 strcat ((char *) file, "/");
612 base = file + strlen ((char *) file);
613
614 subdirs = FcStrSetCreate ();
615 if (!subdirs)
616 {
617 fprintf (stderr, "Can't create directory set\n");
618 ret++;
619 free (file);
620 continue;
621 }
622
623 if (access ((char *) dir, X_OK) < 0)
624 {
625 switch (errno) {
626 case ENOENT:
627 case ENOTDIR:
628 case EACCES:
629 break;
630 default:
631 fprintf (stderr, "\"%s\": ", dir);
632 perror ("");
633 ret++;
634 }
635 FcStrSetDestroy (subdirs);
636 free (file);
637 continue;
638 }
639 if (stat ((char *) dir, &statb) == -1)
640 {
641 fprintf (stderr, "\"%s\": ", dir);
642 perror ("");
643 FcStrSetDestroy (subdirs);
644 ret++;
645 free (file);
646 continue;
647 }
648 if (!S_ISDIR (statb.st_mode))
649 {
650 fprintf (stderr, "\"%s\": not a directory, skipping\n", dir);
651 FcStrSetDestroy (subdirs);
652 free (file);
653 continue;
654 }
2304e38f 655 if (!FcDirCacheValid (dir) || !FcDirCacheRead (set, subdirs, dir))
4262e0b3 656 {
1b7be377 657 if (FcDebug () & FC_DBG_FONTSET)
03a212e5 658 printf ("cache scan dir %s\n", dir);
2304e38f 659
1b7be377
PL
660 FcDirScanConfig (set, subdirs, cache,
661 config->blanks, dir, FcFalse, config);
4262e0b3
PL
662 }
663 sublist = FcStrListCreate (subdirs);
664 FcStrSetDestroy (subdirs);
665 if (!sublist)
666 {
667 fprintf (stderr, "Can't create subdir list in \"%s\"\n", dir);
668 ret++;
669 free (file);
670 continue;
671 }
1b7be377 672 ret += FcCacheReadDirs (config, cache, sublist, set);
4262e0b3
PL
673 free (file);
674 }
675 FcStrListDone (list);
676 return ret;
677}
678
679FcFontSet *
1b7be377 680FcCacheRead (FcConfig *config, FcGlobalCache * cache)
4262e0b3
PL
681{
682 FcFontSet * s = FcFontSetCreate();
683 if (!s)
684 return 0;
685
1b7be377 686 if (FcCacheReadDirs (config, cache, FcConfigGetConfigDirs (config), s))
4262e0b3
PL
687 goto bail;
688
689 return s;
690
691 bail:
692 FcFontSetDestroy (s);
693 return 0;
694}
695
212c9f43 696/* read serialized state from the cache file */
2eb84374 697FcBool
2304e38f 698FcDirCacheRead (FcFontSet * set, FcStrSet * dirs, const FcChar8 *dir)
212c9f43 699{
8245771d 700 char *cache_file = (char *)FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
4262e0b3 701 int fd;
212c9f43 702 char * current_arch_machine_name;
2dbe7597 703 char candidate_arch_machine_name[9+MACHINE_SIGNATURE_SIZE];
212c9f43 704 off_t current_arch_start = 0;
8245771d 705 char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
212c9f43 706
4262e0b3
PL
707 if (!cache_file)
708 goto bail;
212c9f43 709
eb0cf671 710 current_arch_machine_name = FcCacheMachineSignature();
4262e0b3 711 fd = open(cache_file, O_RDONLY);
212c9f43 712 if (fd == -1)
2dbe7597 713 goto bail;
212c9f43 714
212c9f43
PL
715 current_arch_start = FcCacheSkipToArch(fd, current_arch_machine_name);
716 if (current_arch_start < 0)
4262e0b3 717 goto bail1;
212c9f43
PL
718
719 lseek (fd, current_arch_start, SEEK_SET);
eb0cf671 720 if (FcCacheReadString (fd, candidate_arch_machine_name,
212c9f43 721 sizeof (candidate_arch_machine_name)) == 0)
4262e0b3 722 goto bail1;
2304e38f
PL
723
724 while (strlen(FcCacheReadString (fd, subdirName, sizeof (subdirName))) > 0)
8245771d 725 FcStrSetAdd (dirs, (FcChar8 *)subdirName);
2304e38f 726
eb0cf671
PL
727 if (!FcDirCacheConsume (fd, set))
728 goto bail1;
729
730 close(fd);
731 free (cache_file);
732 return FcTrue;
733
734 bail1:
2304e38f 735 close (fd);
eb0cf671
PL
736 bail:
737 free (cache_file);
738 return FcFalse;
739}
740
741static FcBool
742FcDirCacheConsume (int fd, FcFontSet *set)
743{
744 FcCache metadata;
745 void * current_dir_block;
fd77c154 746 off_t pos;
212c9f43 747
212c9f43
PL
748 read(fd, &metadata, sizeof(FcCache));
749 if (metadata.magic != FC_CACHE_MAGIC)
eb0cf671 750 return FcFalse;
212c9f43 751
2dbe7597 752 if (!metadata.count)
eb0cf671 753 return FcTrue;
2dbe7597 754
fd77c154 755 pos = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
2dbe7597
PL
756 current_dir_block = mmap (0, metadata.count,
757 PROT_READ, MAP_SHARED, fd, pos);
758 if (current_dir_block == MAP_FAILED)
eb0cf671 759 return FcFalse;
2dbe7597
PL
760
761 if (!FcFontSetUnserialize (metadata, set, current_dir_block))
eb0cf671
PL
762 return FcFalse;
763
212c9f43 764 return FcTrue;
eb0cf671
PL
765}
766
767static void *
768FcDirCacheProduce (FcFontSet *set, FcCache *metadata)
769{
770 void * current_dir_block, * final_dir_block;
8245771d 771 static unsigned int rand_state = 0;
eb0cf671
PL
772 int bank;
773
774 if (!rand_state)
775 rand_state = time(0L);
776 bank = rand_r(&rand_state);
777
778 while (FcCacheHaveBank(bank))
779 bank = rand_r(&rand_state);
780
781 memset (metadata, 0, sizeof(FcCache));
782 FcFontSetNewBank();
783 metadata->count = FcFontSetNeededBytes (set);
784 metadata->magic = FC_CACHE_MAGIC;
785 metadata->bank = bank;
786
787 if (!metadata->count) /* not a failure, no fonts to write */
788 return 0;
789
790 current_dir_block = malloc (metadata->count);
791 if (!current_dir_block)
792 goto bail;
793 final_dir_block = FcFontSetDistributeBytes (metadata, current_dir_block);
794
795 if ((char *)current_dir_block + metadata->count != final_dir_block)
796 goto bail;
797
798 if (!FcFontSetSerialize (bank, set))
799 goto bail;
800
801 return current_dir_block;
212c9f43 802
4262e0b3 803 bail:
eb0cf671
PL
804 free (current_dir_block);
805 return 0;
212c9f43
PL
806}
807
808/* write serialized state to the cache file */
809FcBool
2304e38f 810FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir)
212c9f43 811{
4262e0b3 812 FcChar8 *cache_file = FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
1d879de2
PL
813 int fd, fd_orig, i, dirs_count;
814 FcAtomic *atomic;
815 FcCache metadata;
816 off_t current_arch_start = 0, truncate_to;
8245771d 817
1d879de2
PL
818 char *current_arch_machine_name, * header;
819 void *current_dir_block;
212c9f43 820
4262e0b3
PL
821 if (!cache_file)
822 goto bail;
823
eb0cf671 824 current_dir_block = FcDirCacheProduce (set, &metadata);
212c9f43 825
a9698bed 826 if (metadata.count && !current_dir_block)
1d879de2 827 goto bail0;
212c9f43 828
4262e0b3
PL
829 if (FcDebug () & FC_DBG_CACHE)
830 printf ("FcDirCacheWriteDir cache_file \"%s\"\n", cache_file);
831
1d879de2
PL
832 atomic = FcAtomicCreate (cache_file);
833 if (!atomic)
eb0cf671 834 goto bail0;
212c9f43 835
1d879de2
PL
836 if (!FcAtomicLock (atomic))
837 goto bail1;
838
839 fd_orig = open((char *)FcAtomicOrigFile (atomic), O_RDONLY, 0666);
840
841 fd = open((char *)FcAtomicNewFile (atomic), O_RDWR | O_CREAT, 0666);
842 if (fd == -1)
843 goto bail2;
844
eb0cf671 845 current_arch_machine_name = FcCacheMachineSignature ();
1d879de2
PL
846 current_arch_start = 0;
847
848 if (fd_orig != -1)
849 current_arch_start =
850 FcCacheSkipToArch(fd_orig, current_arch_machine_name);
851
212c9f43 852 if (current_arch_start < 0)
649cc361 853 current_arch_start = FcCacheNextOffset (lseek(fd_orig, 0, SEEK_END));
212c9f43 854
1d879de2
PL
855 if (fd_orig != -1 && !FcCacheCopyOld(fd, fd_orig, current_arch_start))
856 goto bail3;
857
858 if (fd_orig != -1)
859 close (fd_orig);
212c9f43
PL
860
861 current_arch_start = lseek(fd, 0, SEEK_CUR);
862 if (ftruncate (fd, current_arch_start) == -1)
1d879de2 863 goto bail3;
212c9f43 864
6aee8c6f
PL
865 /* allocate space for subdir names in this block */
866 dirs_count = 0;
867 for (i = 0; i < dirs->size; i++)
868 dirs_count += strlen((char *)dirs->strs[i]) + 1;
869 dirs_count ++;
870
212c9f43 871 /* now write the address of the next offset */
6aee8c6f 872 truncate_to = FcCacheNextOffset (FcCacheNextOffset (current_arch_start + sizeof (FcCache) + dirs_count) + metadata.count) - current_arch_start;
2dbe7597 873 header = malloc (10 + strlen (current_arch_machine_name));
eb0cf671 874 if (!header)
1d879de2 875 goto bail3;
2dbe7597
PL
876 sprintf (header, "%8x ", (int)truncate_to);
877 strcat (header, current_arch_machine_name);
eb0cf671 878 if (!FcCacheWriteString (fd, header))
1d879de2 879 goto bail4;
212c9f43 880
2304e38f 881 for (i = 0; i < dirs->size; i++)
8245771d 882 FcCacheWriteString (fd, (char *)dirs->strs[i]);
2304e38f
PL
883 FcCacheWriteString (fd, "");
884
4262e0b3 885 write (fd, &metadata, sizeof(FcCache));
a9698bed
PL
886 if (metadata.count)
887 {
888 lseek (fd, FcCacheNextOffset (lseek(fd, 0, SEEK_END)), SEEK_SET);
889 write (fd, current_dir_block, metadata.count);
890 free (current_dir_block);
891 }
4262e0b3 892
2dbe7597 893 /* this actually serves to pad out the cache file, if needed */
212c9f43 894 if (ftruncate (fd, current_arch_start + truncate_to) == -1)
1d879de2 895 goto bail4;
212c9f43
PL
896
897 close(fd);
1d879de2
PL
898 if (!FcAtomicReplaceOrig(atomic))
899 goto bail4;
900 FcAtomicUnlock (atomic);
901 FcAtomicDestroy (atomic);
212c9f43
PL
902 return FcTrue;
903
1d879de2 904 bail4:
0230c9f8 905 free (header);
1d879de2
PL
906 bail3:
907 close (fd);
908 bail2:
909 FcAtomicUnlock (atomic);
910 bail1:
911 FcAtomicDestroy (atomic);
eb0cf671 912 bail0:
8245771d 913 unlink ((char *)cache_file);
4262e0b3 914 free (cache_file);
1d879de2
PL
915 if (current_dir_block)
916 free (current_dir_block);
917 bail:
212c9f43
PL
918 return FcFalse;
919}
920
2dbe7597 921static char *
eb0cf671 922FcCacheMachineSignature ()
2dbe7597
PL
923{
924 static char buf[MACHINE_SIGNATURE_SIZE];
925 int magic = ENDIAN_TEST;
926 char * m = (char *)&magic;
927
928 sprintf (buf, "%2x%2x%2x%2x "
929 "%4x %4x %4x %4x %4x %4x %4x %4x %4x %4x %4x %4x "
930 "%4x %4x %4x %4x %4x %4x %4x\n",
931 m[0], m[1], m[2], m[3],
cd310911
PL
932 (unsigned int)sizeof (char),
933 (unsigned int)sizeof (char *),
934 (unsigned int)sizeof (int),
935 (unsigned int)sizeof (FcPattern),
936 (unsigned int)sizeof (FcPatternEltPtr),
937 (unsigned int)sizeof (struct _FcPatternElt *),
938 (unsigned int)sizeof (FcPatternElt),
939 (unsigned int)sizeof (FcObjectPtr),
940 (unsigned int)sizeof (FcValueListPtr),
941 (unsigned int)sizeof (FcValue),
942 (unsigned int)sizeof (FcValueBinding),
943 (unsigned int)sizeof (struct _FcValueList *),
944 (unsigned int)sizeof (FcCharSet),
945 (unsigned int)sizeof (FcCharLeaf **),
946 (unsigned int)sizeof (FcChar16 *),
947 (unsigned int)sizeof (FcChar16),
948 (unsigned int)sizeof (FcCharLeaf),
949 (unsigned int)sizeof (FcChar32),
950 (unsigned int)sizeof (FcCache));
2dbe7597
PL
951
952 return buf;
953}
954
4262e0b3 955static int banks_ptr = 0, banks_alloc = 0;
751932dd 956static int * bankId = 0, * bankIdx = 0;
4262e0b3 957
eb0cf671 958static FcBool
4262e0b3
PL
959FcCacheHaveBank (int bank)
960{
961 int i;
962
963 if (bank < FC_BANK_FIRST)
964 return FcTrue;
965
966 for (i = 0; i < banks_ptr; i++)
967 if (bankId[i] == bank)
968 return FcTrue;
969
970 return FcFalse;
971}
972
973int
974FcCacheBankToIndex (int bank)
975{
751932dd 976 int i, j;
4262e0b3
PL
977
978 for (i = 0; i < banks_ptr; i++)
751932dd
PL
979 if (bankId[bankIdx[i]] == bank)
980 {
981 int t = bankIdx[i];
982
983 for (j = i; j > 0; j--)
984 bankIdx[j] = bankIdx[j-1];
985 bankIdx[0] = t;
986 return t;
987 }
4262e0b3 988
2dbe7597 989 if (banks_ptr >= banks_alloc)
4262e0b3 990 {
751932dd 991 int * b, * bidx;
2dbe7597 992 b = realloc (bankId, (banks_alloc + 4) * sizeof(int));
4262e0b3
PL
993 if (!b)
994 return -1;
4262e0b3 995 bankId = b;
751932dd
PL
996
997 bidx = realloc (bankIdx, (banks_alloc + 4) * sizeof(int));
998 if (!bidx)
999 return -1;
1000 bankIdx = bidx;
1001
4262e0b3
PL
1002 banks_alloc += 4;
1003 }
1004
1005 i = banks_ptr++;
1006 bankId[i] = bank;
751932dd 1007 bankIdx[i] = i;
4262e0b3
PL
1008 return i;
1009}