]> git.wh0rd.org - fontconfig.git/blame - src/fccache.c
Write caches to first directory with permission. Valid cache in FcDirCacheOpen.
[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"
212c9f43 27#include <fcntl.h>
4262e0b3 28#include <dirent.h>
ea44e218 29#include <string.h>
fd77c154 30#include <sys/types.h>
d6217cc6 31#if defined(HAVE_MMAP) || defined(__CYGWIN__)
93f67dfc 32# include <unistd.h>
d6217cc6 33# include <sys/mman.h>
93f67dfc
PL
34#elif defined(_WIN32)
35# include <windows.h>
d6217cc6 36#endif
24330d27 37
2dbe7597 38#define ENDIAN_TEST 0x12345678
f2fb985c 39#define MACHINE_SIGNATURE_SIZE (9 + 5*20 + 1)
d6217cc6
PL
40/* for when we don't have sysconf: */
41#define FC_HARDCODED_PAGESIZE 8192
2dbe7597 42
879af706
PL
43#ifndef O_BINARY
44#define O_BINARY 0
45#endif
46
ea44e218 47static int
7410e40b 48FcDirCacheOpen (FcConfig *config, const FcChar8 *dir, FcChar8 **cache_path);
ea44e218 49
eb0cf671 50static off_t
c60ec7cc 51FcCacheSkipToArch (int fd, const char * arch);
1b7be377 52
eb0cf671 53static FcBool
1d879de2 54FcCacheCopyOld (int fd, int fd_orig, off_t start);
1b7be377 55
eb0cf671
PL
56static void *
57FcDirCacheProduce (FcFontSet *set, FcCache * metadata);
1b7be377
PL
58
59static FcBool
cd9bca69 60FcDirCacheConsume (int fd, const char * dir, FcFontSet *set, FcConfig *config);
1b7be377 61
eb0cf671
PL
62static int
63FcCacheNextOffset(off_t w);
1b7be377 64
eb0cf671
PL
65static char *
66FcCacheMachineSignature (void);
1b7be377
PL
67
68static FcBool
eb0cf671 69FcCacheHaveBank (int bank);
1b7be377 70
e77c1718
PL
71static void
72FcCacheAddBankDir (int bank, const char * dir);
73
ea44e218
PL
74struct MD5Context {
75 FcChar32 buf[4];
76 FcChar32 bits[2];
77 unsigned char in[64];
78};
79
80static void MD5Init(struct MD5Context *ctx);
81static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len);
82static void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
83static void MD5Transform(FcChar32 buf[4], FcChar32 in[16]);
84
eb0cf671 85#define FC_DBG_CACHE_REF 1024
1b7be377 86
8245771d
PL
87static char *
88FcCacheReadString (int fd, char *dest, int len)
24330d27 89{
799157db
PL
90 int size;
91 int slen;
24330d27 92
24330d27 93 if (len == 0)
03a212e5 94 return 0;
799157db
PL
95
96 size = read (fd, dest, len-1);
97
98 if (size > 0)
24330d27 99 {
799157db
PL
100 dest[size] = '\0';
101 slen = strlen (dest);
102
103 lseek (fd, slen - size + 1, SEEK_CUR);
104 return slen < len ? dest : 0;
24330d27 105 }
799157db 106
ccb3e93b 107 return 0;
24330d27
KP
108}
109
ea44e218
PL
110static void
111FcCacheSkipString (int fd)
112{
799157db
PL
113 char buf[256];
114 int size;
115 int slen;
ea44e218 116
799157db 117 while ( (size = read (fd, buf, sizeof (buf)-1)) > 0)
ea44e218 118 {
799157db
PL
119 buf [size] = '\0';
120 slen = strlen (buf);
121 if (slen < size)
122 {
123 lseek (fd, slen - size + 1, SEEK_CUR);
124 return;
125 }
ea44e218 126 }
ea44e218
PL
127}
128
24330d27 129static FcBool
8245771d 130FcCacheWriteString (int fd, const char *chars)
327a7fd4 131{
212c9f43 132 if (write (fd, chars, strlen(chars)+1) != strlen(chars)+1)
327a7fd4 133 return FcFalse;
327a7fd4
KP
134 return FcTrue;
135}
136
eb0cf671
PL
137static void
138FcGlobalCacheDirDestroy (FcGlobalCacheDir *d)
1b7be377 139{
971cf180 140 FcStrSetDestroy (d->subdirs);
5e678e94
PL
141 FcMemFree (FC_MEM_STRING, strlen (d->name)+1);
142 free (d->name);
143 FcMemFree (FC_MEM_CACHE, sizeof (FcGlobalCacheDir));
144 free (d);
1b7be377
PL
145}
146
eb0cf671
PL
147FcGlobalCache *
148FcGlobalCacheCreate (void)
1b7be377 149{
eb0cf671 150 FcGlobalCache *cache;
1b7be377 151
eb0cf671
PL
152 cache = malloc (sizeof (FcGlobalCache));
153 if (!cache)
154 return 0;
155 FcMemAlloc (FC_MEM_CACHE, sizeof (FcGlobalCache));
156 cache->dirs = 0;
157 cache->updated = FcFalse;
158 cache->fd = -1;
159 return cache;
1b7be377
PL
160}
161
eb0cf671
PL
162void
163FcGlobalCacheDestroy (FcGlobalCache *cache)
327a7fd4 164{
eb0cf671 165 FcGlobalCacheDir *d, *next;
327a7fd4 166
eb0cf671 167 for (d = cache->dirs; d; d = next)
327a7fd4 168 {
eb0cf671
PL
169 next = d->next;
170 FcGlobalCacheDirDestroy (d);
327a7fd4 171 }
eb0cf671 172 FcMemFree (FC_MEM_CACHE, sizeof (FcGlobalCache));
62a4a845
PL
173 if (cache->fd != -1)
174 close (cache->fd);
eb0cf671 175 free (cache);
327a7fd4
KP
176}
177
178void
eb0cf671 179FcGlobalCacheLoad (FcGlobalCache *cache,
03a212e5 180 FcStrSet *staleDirs,
2b25f00c
PL
181 const FcChar8 *cache_file,
182 FcConfig *config)
327a7fd4 183{
ea44e218 184 char name_buf[FC_MAX_FILE_LEN];
eb0cf671 185 FcGlobalCacheDir *d, *next;
2b25f00c 186 FcFileTime config_time = FcConfigModifiedTime (config);
eb0cf671
PL
187 char * current_arch_machine_name;
188 char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
189 off_t current_arch_start;
327a7fd4 190
03a212e5 191 struct stat cache_stat, dir_stat;
971cf180 192 char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
03a212e5
PL
193
194 if (stat ((char *) cache_file, &cache_stat) < 0)
195 return;
196
879af706 197 cache->fd = open ((char *) cache_file, O_RDONLY | O_BINARY);
eb0cf671
PL
198 if (cache->fd == -1)
199 return;
327a7fd4 200
eb0cf671 201 cache->updated = FcFalse;
327a7fd4 202
c5411c4c 203 if (!FcCacheReadString (cache->fd, name_buf, sizeof (name_buf)))
28aefd01 204 goto bail_and_destroy;
c60ec7cc 205 if (strcmp (name_buf, FC_GLOBAL_MAGIC_COOKIE) != 0)
28aefd01 206 goto bail_and_destroy;
c60ec7cc 207
eb0cf671
PL
208 current_arch_machine_name = FcCacheMachineSignature ();
209 current_arch_start = FcCacheSkipToArch(cache->fd,
c60ec7cc 210 current_arch_machine_name);
eb0cf671 211 if (current_arch_start < 0)
b17cf498 212 goto bail1;
327a7fd4 213
eb0cf671 214 lseek (cache->fd, current_arch_start, SEEK_SET);
c5411c4c
PL
215 if (!FcCacheReadString (cache->fd, candidate_arch_machine_name,
216 sizeof (candidate_arch_machine_name)))
217 goto bail_and_destroy;
03a212e5 218 if (strlen(candidate_arch_machine_name) == 0)
e58b50e8 219 goto bail_and_destroy;
1b7be377 220
eb0cf671 221 while (1)
1b7be377 222 {
8cb4c56d
PL
223 off_t targ;
224
2c4e0124
PL
225 if (!FcCacheReadString (cache->fd, name_buf, sizeof (name_buf)) ||
226 !strlen(name_buf))
1b7be377 227 break;
1b7be377 228
9090cb9e
PL
229 /* Directory must be older than the global cache file; also
230 cache must be newer than the config file. */
03a212e5 231 if (stat ((char *) name_buf, &dir_stat) < 0 ||
2b25f00c 232 dir_stat.st_mtime > cache_stat.st_mtime ||
9090cb9e 233 (config_time.set && cache_stat.st_mtime < config_time.time))
03a212e5
PL
234 {
235 FcCache md;
68355f38 236 off_t off;
03a212e5 237
ae2aafe6 238 FcStrSetAdd (staleDirs, (FcChar8 *)name_buf);
fff5a5af
PL
239
240 /* skip subdirs */
241 while (FcCacheReadString (cache->fd, subdirName,
242 sizeof (subdirName)) &&
243 strlen (subdirName))
244 ;
245
68355f38
PL
246 if (read (cache->fd, &md, sizeof (FcCache)) != sizeof(FcCache))
247 {
248 perror ("read metadata");
249 goto bail1;
250 }
251 off = FcCacheNextOffset (lseek(cache->fd, 0, SEEK_CUR)) + md.count;
fff5a5af
PL
252 if (lseek (cache->fd, off, SEEK_SET) != off)
253 {
68355f38
PL
254 perror ("lseek");
255 goto bail1;
256 }
257 continue;
03a212e5
PL
258 }
259
eb0cf671
PL
260 d = malloc (sizeof (FcGlobalCacheDir));
261 if (!d)
262 goto bail1;
1b7be377 263
eb0cf671
PL
264 d->next = cache->dirs;
265 cache->dirs = d;
1b7be377 266
8245771d 267 d->name = (char *)FcStrCopy ((FcChar8 *)name_buf);
eb0cf671 268 d->ent = 0;
fff5a5af 269 d->state = FcGCDirFileRead;
971cf180
PL
270
271 d->subdirs = FcStrSetCreate();
2c4e0124
PL
272 do
273 {
274 if (!FcCacheReadString (cache->fd, subdirName,
275 sizeof (subdirName)) ||
276 !strlen (subdirName))
277 break;
971cf180 278 FcStrSetAdd (d->subdirs, (FcChar8 *)subdirName);
2c4e0124 279 } while (1);
971cf180 280
81d97094 281 d->offset = lseek (cache->fd, 0, SEEK_CUR);
8cb4c56d
PL
282 if (read (cache->fd, &d->metadata, sizeof (FcCache)) != sizeof (FcCache))
283 goto bail1;
284 targ = FcCacheNextOffset (lseek(cache->fd, 0, SEEK_CUR)) + d->metadata.count;
285 if (lseek (cache->fd, targ, SEEK_SET) != targ)
286 goto bail1;
1b7be377 287 }
eb0cf671 288 return;
1b7be377 289
eb0cf671
PL
290 bail1:
291 for (d = cache->dirs; d; d = next)
1b7be377 292 {
eb0cf671
PL
293 next = d->next;
294 free (d);
1b7be377 295 }
eb0cf671 296 cache->dirs = 0;
e58b50e8
PL
297
298 close (cache->fd);
299 cache->fd = -1;
300 return;
301
302 bail_and_destroy:
eb0cf671
PL
303 close (cache->fd);
304 cache->fd = -1;
e58b50e8
PL
305
306 if (stat ((char *) cache_file, &cache_stat) == 0)
307 unlink ((char *)cache_file);
308
eb0cf671 309 return;
e58b50e8 310
1b7be377
PL
311}
312
1b7be377 313FcBool
8245771d 314FcGlobalCacheReadDir (FcFontSet *set, FcStrSet *dirs, FcGlobalCache * cache, const char *dir, FcConfig *config)
1b7be377 315{
3616cbe2 316 FcGlobalCacheDir *d;
3616cbe2 317 int i;
1b7be377 318
eb0cf671 319 if (cache->fd == -1)
1b7be377 320 return FcFalse;
1b7be377 321
5c90509c
PL
322 if (config)
323 if (!(dir = (char *)FcConfigNormalizeFontDir (config, (FcChar8 *)dir)))
324 return FcFalse; /* non-existing directory */
4073203d 325
eb0cf671 326 for (d = cache->dirs; d; d = d->next)
1b7be377 327 {
fff5a5af 328 if (strcmp (d->name, dir) == 0)
1b7be377 329 {
fff5a5af 330 if (d->state == FcGCDirDisabled)
eb0cf671 331 return FcFalse;
3616cbe2 332
fff5a5af
PL
333 if (d->state == FcGCDirFileRead)
334 {
335 lseek (cache->fd, d->offset, SEEK_SET);
336 if (!FcDirCacheConsume (cache->fd, d->name, set, config))
337 return FcFalse;
338
3616cbe2
PL
339 for (i = 0; i < d->subdirs->num; i++)
340 FcStrSetAdd (dirs, (FcChar8 *)d->subdirs->strs[i]);
341
fff5a5af
PL
342 d->state = FcGCDirConsumed;
343 }
344 return FcTrue;
1b7be377 345 }
1b7be377 346 }
1b7be377 347
fff5a5af 348 return FcFalse;
1b7be377
PL
349}
350
fff5a5af
PL
351static FcGlobalCacheDir *
352FcGlobalCacheDirFind (FcGlobalCache *cache, const char *name)
353{
354 FcGlobalCacheDir * d;
355
356 if (!cache || !name)
357 return NULL;
358
359 for (d = cache->dirs; d; d = d->next)
360 if (strcmp((const char *)d->name, (const char *)name) == 0)
361 return d;
362
363 return NULL;
364 }
365
eb0cf671
PL
366FcBool
367FcGlobalCacheUpdate (FcGlobalCache *cache,
971cf180 368 FcStrSet *dirs,
fff5a5af 369 const char *orig_name,
8a0b0ed6
PL
370 FcFontSet *set,
371 FcConfig *config)
1b7be377 372{
971cf180
PL
373 FcGlobalCacheDir *d;
374 int i;
fff5a5af 375 const char *name;
1b7be377 376
fff5a5af
PL
377 name = (char *)FcConfigNormalizeFontDir (config, (FcChar8 *)orig_name);
378 if (!name)
1b7be377 379 {
fff5a5af
PL
380 fprintf(stderr, "Invalid directory name %s\n", orig_name);
381 return FcFalse;
24330d27 382 }
24330d27 383
fff5a5af
PL
384 d = FcGlobalCacheDirFind (cache, name);
385
eb0cf671 386 if (!d)
24330d27 387 {
eb0cf671
PL
388 d = malloc (sizeof (FcGlobalCacheDir));
389 if (!d)
390 return FcFalse;
391 d->next = cache->dirs;
392 cache->dirs = d;
fff5a5af
PL
393 } else {
394 /* free old resources */
395 FcStrFree ((FcChar8 *)d->name);
396 free (d->ent);
397 FcStrSetDestroy (d->subdirs);
24330d27 398 }
24330d27 399
eb0cf671 400 cache->updated = FcTrue;
24330d27 401
8245771d 402 d->name = (char *)FcStrCopy ((FcChar8 *)name);
eb0cf671
PL
403 d->ent = FcDirCacheProduce (set, &d->metadata);
404 d->offset = 0;
971cf180 405 d->subdirs = FcStrSetCreate();
fff5a5af 406 d->state = FcGCDirUpdated;
971cf180
PL
407 for (i = 0; i < dirs->num; i++)
408 FcStrSetAdd (d->subdirs, dirs->strs[i]);
eb0cf671 409 return FcTrue;
24330d27
KP
410}
411
412FcBool
327a7fd4 413FcGlobalCacheSave (FcGlobalCache *cache,
8a0b0ed6
PL
414 const FcChar8 *cache_file,
415 FcConfig *config)
24330d27 416{
0d745819 417 int fd, fd_orig;
327a7fd4 418 FcGlobalCacheDir *dir;
327a7fd4 419 FcAtomic *atomic;
eb0cf671
PL
420 off_t current_arch_start = 0, truncate_to;
421 char * current_arch_machine_name, * header;
24330d27 422
eb0cf671 423 if (!cache->updated)
24330d27
KP
424 return FcTrue;
425
daeed6e0 426#if defined (HAVE_GETUID) && defined (HAVE_GETEUID)
a391da8f
KP
427 /* Set-UID programs can't safely update the cache */
428 if (getuid () != geteuid ())
429 return FcFalse;
daeed6e0 430#endif
a391da8f 431
134f6011
KP
432 atomic = FcAtomicCreate (cache_file);
433 if (!atomic)
1d879de2
PL
434 return FcFalse;
435
134f6011 436 if (!FcAtomicLock (atomic))
24330d27 437 goto bail1;
879af706 438 fd = open ((char *) FcAtomicNewFile(atomic), O_RDWR | O_CREAT | O_BINARY,
eb0cf671
PL
439 S_IRUSR | S_IWUSR);
440 if (fd == -1)
24330d27 441 goto bail2;
f468f568 442 FcCacheWriteString (fd, FC_GLOBAL_MAGIC_COOKIE);
24330d27 443
879af706 444 fd_orig = open ((char *) FcAtomicOrigFile(atomic), O_RDONLY | O_BINARY);
1d879de2 445
eb0cf671 446 current_arch_machine_name = FcCacheMachineSignature ();
1d879de2
PL
447 if (fd_orig == -1)
448 current_arch_start = 0;
449 else
450 current_arch_start = FcCacheSkipToArch (fd_orig,
c60ec7cc 451 current_arch_machine_name);
1d879de2 452
eb0cf671 453 if (current_arch_start < 0)
f468f568
PL
454 {
455 off_t i = lseek(fd_orig, 0, SEEK_END);
456 if (i < strlen (FC_GLOBAL_MAGIC_COOKIE)+1)
457 i = strlen (FC_GLOBAL_MAGIC_COOKIE)+1;
458 current_arch_start = FcCacheNextOffset (i);
459 }
eb0cf671 460
1d879de2
PL
461 if (!FcCacheCopyOld(fd, fd_orig, current_arch_start))
462 goto bail3;
463
eb0cf671 464 current_arch_start = lseek(fd, 0, SEEK_CUR);
d6217cc6 465#if defined (HAVE_FTRUNCATE)
eb0cf671 466 if (ftruncate (fd, current_arch_start) == -1)
1d879de2 467 goto bail3;
d6217cc6
PL
468#else
469#if defined (HAVE_CHSIZE)
470 if (chsize (fd, current_arch_start) == -1)
471 goto bail3;
472#else
473 goto bail3;
474#endif
475#endif
eb0cf671 476
03a212e5
PL
477 header = malloc (10 + strlen (current_arch_machine_name));
478 if (!header)
1d879de2 479 goto bail3;
03a212e5 480
8cb4c56d 481 truncate_to = current_arch_start + strlen(current_arch_machine_name) + 11;
eb0cf671 482 for (dir = cache->dirs; dir; dir = dir->next)
24330d27 483 {
0d745819
PL
484 int i;
485
fff5a5af
PL
486 if (dir->state == FcGCDirDisabled)
487 continue;
eb0cf671
PL
488 truncate_to += strlen(dir->name) + 1;
489 truncate_to += sizeof (FcCache);
1c5b6345 490 truncate_to = FcCacheNextOffset (truncate_to);
eb0cf671 491 truncate_to += dir->metadata.count;
971cf180
PL
492
493 for (i = 0; i < dir->subdirs->size; i++)
494 truncate_to += strlen((char *)dir->subdirs->strs[i]) + 1;
495 truncate_to ++;
eb0cf671
PL
496 }
497 truncate_to -= current_arch_start;
eb0cf671 498
8cb4c56d
PL
499 sprintf (header, "%8x ", (int)truncate_to);
500 strcat (header, current_arch_machine_name);
501 if (!FcCacheWriteString (fd, header))
1d879de2 502 goto bail4;
8cb4c56d 503
c814c301
PL
504 free (header);
505
eb0cf671
PL
506 for (dir = cache->dirs; dir; dir = dir->next)
507 {
0d745819 508 int i;
fff5a5af
PL
509 const char * d;
510 off_t off;
971cf180 511
fff5a5af
PL
512 if (!dir->name || dir->state == FcGCDirDisabled)
513 continue;
514 d = (const char *)FcConfigNormalizeFontDir (config, (const FcChar8 *)dir->name);
515 if (!d)
516 continue;
971cf180 517
fff5a5af
PL
518 if (dir->metadata.count && !dir->ent)
519 {
520 if (dir->state == FcGCDirUpdated || fd_orig < 0)
68355f38 521 {
fff5a5af 522 fprintf(stderr, "Invalid metadata entry for %s, skipping...\n", d);
68355f38
PL
523 continue;
524 }
fff5a5af
PL
525 /* copy the old content */
526 dir->ent = malloc (dir->metadata.count);
527 if (!dir->ent)
68355f38 528 {
fff5a5af 529 perror("malloc error");
68355f38
PL
530 continue;
531 }
fff5a5af
PL
532 off = FcCacheNextOffset (dir->offset + sizeof(FcCache));
533 if (lseek (fd_orig, off, SEEK_SET) != off)
534 {
535 perror("lseek");
536 free(dir->ent);
537 continue;
538 }
539 if (read (fd_orig, dir->ent, dir->metadata.count)
540 != dir->metadata.count)
541 {
542 perror("read");
543 free(dir->ent);
544 continue;
545 }
546 }
547
548 FcCacheWriteString (fd, d);
549
550 for (i = 0; i < dir->subdirs->size; i++)
551 FcCacheWriteString (fd, (char *)dir->subdirs->strs[i]);
552 FcCacheWriteString (fd, "");
553
554 if (write (fd, &dir->metadata, sizeof(FcCache)) != sizeof(FcCache))
555 {
556 perror ("write metadata");
557 free (dir->ent);
558 continue;
559 }
560 off = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
561 if (lseek (fd, off, SEEK_SET) != off)
562 {
563 perror ("lseek");
564 free (dir->ent);
565 continue;
566 }
567 if (dir->metadata.count)
568 {
68355f38
PL
569 if (write (fd, dir->ent, dir->metadata.count) != dir->metadata.count)
570 {
571 perror ("write dirent");
572 free (dir->ent);
573 continue;
574 }
68355f38 575 }
fff5a5af 576 free (dir->ent);
24330d27 577 }
eb0cf671 578 FcCacheWriteString (fd, "");
24330d27 579
eb0cf671 580 if (close (fd) == -1)
1d879de2 581 goto bail25;
fff5a5af
PL
582
583 close (fd_orig);
584 fd_orig = -1;
24330d27 585
134f6011 586 if (!FcAtomicReplaceOrig (atomic))
1d879de2 587 goto bail25;
24330d27 588
134f6011
KP
589 FcAtomicUnlock (atomic);
590 FcAtomicDestroy (atomic);
591
24330d27
KP
592 cache->updated = FcFalse;
593 return FcTrue;
594
1d879de2
PL
595 bail4:
596 free (header);
597 bail3:
598 if (fd_orig != -1)
599 close (fd_orig);
600
601 close (fd);
602 bail25:
134f6011 603 FcAtomicDeleteNew (atomic);
1d879de2 604 bail2:
134f6011 605 FcAtomicUnlock (atomic);
1d879de2 606 bail1:
134f6011 607 FcAtomicDestroy (atomic);
24330d27
KP
608 return FcFalse;
609}
610
212c9f43 611/*
eb0cf671
PL
612 * Find the next presumably-mmapable offset after the supplied file
613 * position.
212c9f43 614 */
4262e0b3
PL
615static int
616FcCacheNextOffset(off_t w)
179c3995 617{
7fd7221e 618 static long pagesize = -1;
c001a192
PL
619
620 if (w == -1)
621 return w;
622
7fd7221e 623 if (pagesize == -1)
d6217cc6 624#if defined (HAVE_SYSCONF)
7fd7221e 625 pagesize = sysconf(_SC_PAGESIZE);
d6217cc6
PL
626#else
627 pagesize = FC_HARDCODED_PAGESIZE;
628#endif
7fd7221e 629 if (w % pagesize == 0)
212c9f43
PL
630 return w;
631 else
7fd7221e 632 return ((w / pagesize)+1)*pagesize;
179c3995
KP
633}
634
212c9f43
PL
635/* return the address of the segment for the provided arch,
636 * or -1 if arch not found */
637static off_t
c60ec7cc 638FcCacheSkipToArch (int fd, const char * arch)
212c9f43 639{
2dbe7597
PL
640 char candidate_arch_machine_name_count[MACHINE_SIGNATURE_SIZE + 9];
641 char * candidate_arch;
212c9f43
PL
642 off_t current_arch_start = 0;
643
ea44e218 644 lseek (fd, 0, SEEK_SET);
c60ec7cc 645 FcCacheSkipString (fd);
ea44e218
PL
646 current_arch_start = lseek (fd, 0, SEEK_CUR);
647
212c9f43
PL
648 /* skip arches that are not the current arch */
649 while (1)
650 {
651 long bs;
652
8cb4c56d
PL
653 if (lseek (fd, current_arch_start, SEEK_SET) != current_arch_start)
654 return -1;
655
eb0cf671 656 if (FcCacheReadString (fd, candidate_arch_machine_name_count,
2dbe7597 657 sizeof (candidate_arch_machine_name_count)) == 0)
5e678e94 658 return -1;
2dbe7597
PL
659 if (!strlen(candidate_arch_machine_name_count))
660 return -1;
661 bs = strtol(candidate_arch_machine_name_count, &candidate_arch, 16);
8cb4c56d 662
bb6b1993 663 /* count = 0 should probably be distinguished from the !bs condition */
8cb4c56d
PL
664 if (!bs || bs < strlen (candidate_arch_machine_name_count))
665 return -1;
666
2dbe7597 667 candidate_arch++; /* skip leading space */
212c9f43 668
2dbe7597 669 if (strcmp (candidate_arch, arch)==0)
5e678e94 670 return current_arch_start;
212c9f43 671 current_arch_start += bs;
b17cf498 672 current_arch_start = FcCacheNextOffset (current_arch_start);
212c9f43 673 }
212c9f43
PL
674}
675
676/* Cuts out the segment at the file pointer (moves everything else
677 * down to cover it), and leaves the file pointer at the end of the
678 * file. */
212c9f43 679static FcBool
1d879de2 680FcCacheCopyOld (int fd, int fd_orig, off_t start)
212c9f43 681{
eb0cf671 682 char * buf = malloc (8192);
2dbe7597 683 char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
4262e0b3 684 long bs;
212c9f43 685 int c, bytes_skipped;
1d879de2 686 off_t loc;
212c9f43
PL
687
688 if (!buf)
689 return FcFalse;
690
1d879de2
PL
691 loc = 0;
692 lseek (fd, 0, SEEK_SET); lseek (fd_orig, 0, SEEK_SET);
719f4b84 693 FcCacheSkipString (fd); FcCacheSkipString (fd_orig);
1d879de2
PL
694 do
695 {
696 int b = 8192;
697 if (loc + b > start)
698 b = start - loc;
699
700 if ((c = read (fd_orig, buf, b)) <= 0)
701 break;
702 if (write (fd, buf, c) < 0)
703 goto bail;
704
705 loc += c;
706 }
707 while (c > 0);
708
212c9f43 709 lseek (fd, start, SEEK_SET);
eb0cf671 710 if (FcCacheReadString (fd, candidate_arch_machine_name,
212c9f43
PL
711 sizeof (candidate_arch_machine_name)) == 0)
712 goto done;
2dbe7597 713 if (!strlen(candidate_arch_machine_name))
212c9f43
PL
714 goto done;
715
2dbe7597 716 bs = strtol(candidate_arch_machine_name, 0, 16);
212c9f43
PL
717 if (bs == 0)
718 goto done;
719
720 bytes_skipped = 0;
721 do
722 {
723 lseek (fd, start+bs+bytes_skipped, SEEK_SET);
eb0cf671 724 if ((c = read (fd, buf, 8192)) <= 0)
212c9f43
PL
725 break;
726 lseek (fd, start+bytes_skipped, SEEK_SET);
727 if (write (fd, buf, c) < 0)
728 goto bail;
729 bytes_skipped += c;
730 }
731 while (c > 0);
732 lseek (fd, start+bytes_skipped, SEEK_SET);
733
734 done:
735 free (buf);
736 return FcTrue;
737
738 bail:
739 free (buf);
740 return FcFalse;
741}
742
55c8fa4f 743/* Does not check that the cache has the appropriate arch section. */
1b7be377 744FcBool
7410e40b 745FcDirCacheValid (const FcChar8 *dir, FcConfig *config)
1b7be377 746{
ea44e218 747 int fd;
1b7be377 748
7410e40b 749 fd = FcDirCacheOpen (config, dir, NULL);
ea44e218
PL
750
751 if (fd < 0)
c7490074 752 return FcFalse;
ea44e218 753 close (fd);
ea44e218 754
55c8fa4f
PL
755 return FcTrue;
756}
757
758/* Assumes that the cache file in 'dir' exists.
759 * Checks that the cache has the appropriate arch section. */
760FcBool
7410e40b 761FcDirCacheHasCurrentArch (const FcChar8 *dir, FcConfig *config)
55c8fa4f 762{
55c8fa4f
PL
763 int fd;
764 off_t current_arch_start;
765 char *current_arch_machine_name;
8c0d6921 766 FcCache metadata;
a68ce952 767 char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
55c8fa4f 768
7410e40b 769 fd = FcDirCacheOpen (config, dir, NULL);
ea44e218
PL
770 if (fd < 0)
771 goto bail;
772
773 current_arch_machine_name = FcCacheMachineSignature();
c60ec7cc 774 current_arch_start = FcCacheSkipToArch(fd, current_arch_machine_name);
8c0d6921
PL
775
776 if (current_arch_start >= 0)
777 {
a68ce952
PL
778 if (lseek (fd, current_arch_start, SEEK_SET) != current_arch_start)
779 goto bail1;
780
781 FcCacheSkipString (fd);
782
783 while (FcCacheReadString (fd, subdirName, sizeof (subdirName)) && strlen (subdirName) > 0)
784 ;
785
8c0d6921 786 if (read(fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
a68ce952 787 goto bail1;
8c0d6921
PL
788
789 if (metadata.magic != FC_CACHE_MAGIC)
a68ce952 790 goto bail1;
8c0d6921
PL
791 }
792
6bf23804
PL
793 close (fd);
794
795 if (current_arch_start < 0)
796 return FcFalse;
55c8fa4f
PL
797
798 return FcTrue;
ea44e218 799
a68ce952
PL
800 bail1:
801 close (fd);
ea44e218 802 bail:
ea44e218 803 return FcFalse;
55c8fa4f 804}
6bf23804 805
7410e40b
PL
806#define CACHEBASE_LEN (1 + 32 + sizeof (FC_CACHE_SUFFIX))
807
808static const char bin2hex[] = { '0', '1', '2', '3',
809 '4', '5', '6', '7',
810 '8', '9', 'a', 'b',
811 'c', 'd', 'e', 'f' };
812
813static FcChar8 *
814FcDirCacheBasename (const FcChar8 * dir, FcChar8 cache_base[CACHEBASE_LEN])
55c8fa4f 815{
7410e40b
PL
816 unsigned char hash[16];
817 FcChar8 *hex_hash;
818 int cnt;
819 struct MD5Context ctx;
55c8fa4f 820
7410e40b
PL
821 MD5Init (&ctx);
822 MD5Update (&ctx, (unsigned char *)dir, strlen ((char *) dir));
3bfae75d 823
7410e40b
PL
824 MD5Final (hash, &ctx);
825
826 cache_base[0] = '/';
827 hex_hash = cache_base + 1;
828 for (cnt = 0; cnt < 16; ++cnt)
1178b569 829 {
7410e40b
PL
830 hex_hash[2*cnt ] = bin2hex[hash[cnt] >> 4];
831 hex_hash[2*cnt+1] = bin2hex[hash[cnt] & 0xf];
832 }
833 hex_hash[2*cnt] = 0;
834 strcat ((char *) cache_base, FC_CACHE_SUFFIX);
6f9fcb51 835
7410e40b
PL
836 return cache_base;
837}
3bfae75d 838
7410e40b
PL
839FcBool
840FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config)
841{
842 int fd = -1;
843 FcChar8 *cache_hashed = NULL;
844 FcChar8 cache_base[CACHEBASE_LEN];
845 FcStrList *list;
846 FcChar8 *cache_dir;
847 char dir_buf[FC_MAX_FILE_LEN];
3bfae75d 848
7410e40b 849 dir = FcConfigNormalizeFontDir (config, dir);
3bfae75d 850
7410e40b 851 FcDirCacheBasename (dir, cache_base);
3bfae75d 852
7410e40b
PL
853 list = FcStrListCreate (config->cacheDirs);
854 if (!list)
855 return FcFalse;
856
857 while ((cache_dir = FcStrListNext (list)))
3bfae75d 858 {
7410e40b
PL
859 cache_hashed = FcStrPlus (cache_dir, cache_base);
860 if (!cache_hashed)
861 break;
862 fd = open((char *) cache_hashed, O_RDONLY | O_BINARY);
863 FcStrFree (cache_hashed);
864 if (fd >= 0)
865 {
866 if (FcCacheReadString (fd, dir_buf, sizeof (dir_buf)) &&
867 strcmp (dir_buf, (char *) dir) == 0)
868 {
869 close (fd);
870 if (unlink ((char *) cache_hashed) < 0)
871 break;
872 } else
873 close (fd);
874 }
1178b569 875 }
7410e40b
PL
876 FcStrListDone (list);
877 /* return FcFalse if something went wrong */
878 if (cache_dir)
879 return FcFalse;
1b7be377
PL
880 return FcTrue;
881}
882
4262e0b3 883static int
1b7be377 884FcCacheReadDirs (FcConfig * config, FcGlobalCache * cache,
8b413bb6 885 FcStrList *list, FcFontSet * set, FcStrSet *processed_dirs)
4262e0b3 886{
4262e0b3
PL
887 int ret = 0;
888 FcChar8 *dir;
4262e0b3
PL
889 FcStrSet *subdirs;
890 FcStrList *sublist;
891 struct stat statb;
fff5a5af 892 FcGlobalCacheDir *d;
4262e0b3
PL
893
894 /*
03a212e5 895 * Read in the results from 'list'.
4262e0b3
PL
896 */
897 while ((dir = FcStrListNext (list)))
898 {
9fad72ab
PL
899 if (!FcConfigAcceptFilename (config, dir))
900 continue;
901
fff5a5af
PL
902 /* Skip this directory if already updated
903 * to avoid the looped directories via symlinks
5c3deb29 904 * Clearly a dir not in fonts.conf shouldn't be globally cached.
fff5a5af 905 */
b10e7762 906 dir = (FcChar8 *)FcConfigNormalizeFontDir (config, dir);
5c3deb29
PL
907 if (!dir)
908 continue;
909
910 if (FcStrSetMember (processed_dirs, dir))
911 continue;
912 if (!FcStrSetAdd (processed_dirs, dir))
913 continue;
4262e0b3
PL
914
915 subdirs = FcStrSetCreate ();
916 if (!subdirs)
917 {
918 fprintf (stderr, "Can't create directory set\n");
919 ret++;
4262e0b3
PL
920 continue;
921 }
922
923 if (access ((char *) dir, X_OK) < 0)
924 {
925 switch (errno) {
926 case ENOENT:
927 case ENOTDIR:
928 case EACCES:
929 break;
930 default:
931 fprintf (stderr, "\"%s\": ", dir);
932 perror ("");
933 ret++;
934 }
935 FcStrSetDestroy (subdirs);
4262e0b3
PL
936 continue;
937 }
938 if (stat ((char *) dir, &statb) == -1)
939 {
940 fprintf (stderr, "\"%s\": ", dir);
941 perror ("");
942 FcStrSetDestroy (subdirs);
943 ret++;
4262e0b3
PL
944 continue;
945 }
946 if (!S_ISDIR (statb.st_mode))
947 {
948 fprintf (stderr, "\"%s\": not a directory, skipping\n", dir);
949 FcStrSetDestroy (subdirs);
4262e0b3
PL
950 continue;
951 }
d2f78684 952 if (FcDirCacheRead (set, subdirs, dir, config))
fff5a5af
PL
953 {
954 /* if an old entry is found in the global cache, disable it */
5c3deb29 955 if ((d = FcGlobalCacheDirFind (cache, (const char *)dir)) != NULL)
fff5a5af
PL
956 {
957 d->state = FcGCDirDisabled;
958 /* save the updated config later without this entry */
959 cache->updated = FcTrue;
960 }
961 }
962 else
4262e0b3 963 {
1b7be377 964 if (FcDebug () & FC_DBG_FONTSET)
03a212e5 965 printf ("cache scan dir %s\n", dir);
2304e38f 966
1b7be377
PL
967 FcDirScanConfig (set, subdirs, cache,
968 config->blanks, dir, FcFalse, config);
4262e0b3
PL
969 }
970 sublist = FcStrListCreate (subdirs);
971 FcStrSetDestroy (subdirs);
972 if (!sublist)
973 {
974 fprintf (stderr, "Can't create subdir list in \"%s\"\n", dir);
975 ret++;
4262e0b3
PL
976 continue;
977 }
8b413bb6 978 ret += FcCacheReadDirs (config, cache, sublist, set, processed_dirs);
4262e0b3
PL
979 }
980 FcStrListDone (list);
981 return ret;
982}
983
984FcFontSet *
1b7be377 985FcCacheRead (FcConfig *config, FcGlobalCache * cache)
4262e0b3 986{
8b413bb6
PL
987 FcFontSet *s = FcFontSetCreate();
988 FcStrSet *processed_dirs;
989
4262e0b3
PL
990 if (!s)
991 return 0;
992
8b413bb6
PL
993 processed_dirs = FcStrSetCreate();
994 if (!processed_dirs)
4262e0b3
PL
995 goto bail;
996
8b413bb6
PL
997 if (FcCacheReadDirs (config, cache, FcConfigGetConfigDirs (config), s, processed_dirs))
998 goto bail1;
999
1000 FcStrSetDestroy (processed_dirs);
4262e0b3
PL
1001 return s;
1002
8b413bb6
PL
1003 bail1:
1004 FcStrSetDestroy (processed_dirs);
4262e0b3
PL
1005 bail:
1006 FcFontSetDestroy (s);
1007 return 0;
1008}
1009
7410e40b
PL
1010/* Opens the cache file for 'dir' for reading.
1011 * This searches the list of cache dirs for the relevant cache file,
1012 * returning the first one found.
1013 */
ea44e218 1014static int
7410e40b 1015FcDirCacheOpen (FcConfig *config, const FcChar8 *dir, FcChar8 **cache_path)
ea44e218 1016{
7410e40b
PL
1017 int fd = -1;
1018 FcChar8 *cache_hashed = NULL;
1019 FcChar8 cache_base[CACHEBASE_LEN];
1020 FcStrList *list;
1021 FcChar8 *cache_dir;
c1c3ba06 1022 char dir_buf[FC_MAX_FILE_LEN];
d2f78684
KP
1023 struct stat file_stat, dir_stat;
1024
1025 if (stat ((char *) dir, &dir_stat) < 0)
1026 return -1;
df3efc11 1027
7410e40b 1028 FcDirCacheBasename (dir, cache_base);
ea44e218 1029
7410e40b
PL
1030 list = FcStrListCreate (config->cacheDirs);
1031 if (!list)
1032 return -1;
1033
1034 while ((cache_dir = FcStrListNext (list)))
ea44e218 1035 {
7410e40b
PL
1036 cache_hashed = FcStrPlus (cache_dir, cache_base);
1037 if (!cache_hashed)
d00c3cb5 1038 break;
7410e40b 1039 fd = open((char *) cache_hashed, O_RDONLY | O_BINARY);
d2f78684
KP
1040 if (fd >= 0) {
1041 if (fstat (fd, &file_stat) >= 0 &&
1042 dir_stat.st_mtime <= file_stat.st_mtime)
1043 {
1044 break;
1045 }
1046 close (fd);
1047 fd = -1;
1048 }
7410e40b 1049 FcStrFree (cache_hashed);
d2f78684 1050 cache_hashed = NULL;
7410e40b
PL
1051 }
1052 FcStrListDone (list);
df3efc11 1053
7410e40b
PL
1054 if (fd < 0)
1055 return -1;
1056
1057 if (!FcCacheReadString (fd, dir_buf, sizeof (dir_buf)) ||
1058 strcmp (dir_buf, (char *) dir) != 0)
1059 {
1060 close (fd);
1061 FcStrFree (cache_hashed);
1062 return -1;
1063 }
1064
1065 if (cache_path)
1066 *cache_path = cache_hashed;
1067 else
1068 FcStrFree (cache_hashed);
ea44e218 1069
d00c3cb5 1070 return fd;
ea44e218
PL
1071}
1072
212c9f43 1073/* read serialized state from the cache file */
2eb84374 1074FcBool
cd9bca69 1075FcDirCacheRead (FcFontSet * set, FcStrSet * dirs, const FcChar8 *dir, FcConfig *config)
212c9f43 1076{
ea44e218
PL
1077 int fd;
1078 char *current_arch_machine_name;
1079 char candidate_arch_machine_name[9+MACHINE_SIGNATURE_SIZE];
1080 off_t current_arch_start = 0;
1081 char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
212c9f43 1082
7410e40b 1083 fd = FcDirCacheOpen (config, dir, NULL);
ea44e218
PL
1084 if (fd < 0)
1085 goto bail;
212c9f43 1086
ea44e218
PL
1087 current_arch_machine_name = FcCacheMachineSignature();
1088 current_arch_start = FcCacheSkipToArch(fd,
c60ec7cc 1089 current_arch_machine_name);
212c9f43 1090 if (current_arch_start < 0)
4262e0b3 1091 goto bail1;
212c9f43
PL
1092
1093 lseek (fd, current_arch_start, SEEK_SET);
eb0cf671 1094 if (FcCacheReadString (fd, candidate_arch_machine_name,
212c9f43 1095 sizeof (candidate_arch_machine_name)) == 0)
4262e0b3 1096 goto bail1;
2304e38f 1097
c5411c4c 1098 while (FcCacheReadString (fd, subdirName, sizeof (subdirName)) && strlen (subdirName) > 0)
8245771d 1099 FcStrSetAdd (dirs, (FcChar8 *)subdirName);
2304e38f 1100
cd9bca69 1101 if (!FcDirCacheConsume (fd, (const char *)dir, set, config))
eb0cf671
PL
1102 goto bail1;
1103
1104 close(fd);
eb0cf671
PL
1105 return FcTrue;
1106
1107 bail1:
2304e38f 1108 close (fd);
eb0cf671 1109 bail:
eb0cf671
PL
1110 return FcFalse;
1111}
1112
1113static FcBool
cd9bca69 1114FcDirCacheConsume (int fd, const char * dir, FcFontSet *set, FcConfig *config)
eb0cf671
PL
1115{
1116 FcCache metadata;
1117 void * current_dir_block;
c001a192 1118 off_t pos, endpos;
212c9f43 1119
68355f38
PL
1120 if (read(fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
1121 return FcFalse;
212c9f43 1122 if (metadata.magic != FC_CACHE_MAGIC)
eb0cf671 1123 return FcFalse;
212c9f43 1124
2dbe7597 1125 if (!metadata.count)
05a98eaf
PL
1126 {
1127 pos = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
1128 lseek (fd, pos, SEEK_SET);
eadadf48
PL
1129 if (config)
1130 FcConfigAddFontDir (config, (FcChar8 *)dir);
eb0cf671 1131 return FcTrue;
05a98eaf 1132 }
2dbe7597 1133
fd77c154 1134 pos = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
c001a192
PL
1135
1136 /* This is not failsafe (multi-arches can break it),
1137 * but fd has got to have at least as many bytes as
1138 * metadata.count, or something's going to go horribly wrong. */
1139 if (pos == (off_t)-1)
1140 return FcFalse;
1141
1142 endpos = lseek (fd, 0, SEEK_END);
1143 if (endpos == (off_t)-1 || endpos - pos < metadata.count)
1144 return FcFalse;
1145 if (lseek (fd, pos, SEEK_SET) == -1)
1146 return FcFalse;
1147
d6217cc6 1148#if defined(HAVE_MMAP) || defined(__CYGWIN__)
2dbe7597
PL
1149 current_dir_block = mmap (0, metadata.count,
1150 PROT_READ, MAP_SHARED, fd, pos);
1151 if (current_dir_block == MAP_FAILED)
eb0cf671 1152 return FcFalse;
93f67dfc
PL
1153#elif defined(_WIN32)
1154 {
1155 HANDLE hFileMap;
1156
1157 hFileMap = CreateFileMapping((HANDLE) _get_osfhandle(fd), NULL, PAGE_READONLY, 0, 0, NULL);
1158 if (hFileMap == NULL)
1159 return FcFalse;
1160
1161 current_dir_block = MapViewOfFile (hFileMap, FILE_MAP_READ, 0, 0, metadata.count + pos);
1162 if (current_dir_block == NULL)
1163 {
1164 CloseHandle (hFileMap);
1165 return FcFalse;
1166 }
1167
1168 current_dir_block = (void *)((char *)current_dir_block + pos);
1169 }
d6217cc6
PL
1170#else
1171 current_dir_block = malloc (metadata.count);
1172 if (!current_dir_block)
1173 return FcFalse;
1174
1175 /* could also use CreateMappedViewOfFile under MinGW... */
1176 if (read (fd, current_dir_block, metadata.count) != metadata.count)
1177 goto bail;
1178#endif
1179 lseek (fd, pos+metadata.count, SEEK_SET);
eb0cf671 1180
e77c1718 1181 FcCacheAddBankDir (metadata.bank, dir);
cd9bca69
PL
1182 if (config)
1183 FcConfigAddFontDir (config, (FcChar8 *)dir);
e77c1718 1184
b8948e85 1185 if (!FcFontSetUnserialize (&metadata, set, current_dir_block))
d6217cc6 1186 goto bail;
b8948e85 1187
212c9f43 1188 return FcTrue;
d6217cc6
PL
1189 bail:
1190#if !(defined(HAVE_MMAP) || defined(__CYGWIN__))
1191 free (current_dir_block);
1192#endif
1193 return FcFalse;
eb0cf671
PL
1194}
1195
1196static void *
1197FcDirCacheProduce (FcFontSet *set, FcCache *metadata)
1198{
1199 void * current_dir_block, * final_dir_block;
8245771d 1200 static unsigned int rand_state = 0;
8e351527 1201 int bank, needed_bytes_no_align;
eb0cf671 1202
d6217cc6 1203#if defined (HAVE_RAND_R)
eb0cf671
PL
1204 if (!rand_state)
1205 rand_state = time(0L);
1206 bank = rand_r(&rand_state);
1207
1208 while (FcCacheHaveBank(bank))
1209 bank = rand_r(&rand_state);
d6217cc6
PL
1210#else
1211 if (!rand_state)
1212 {
1213 rand_state = 1;
1214 srand (time (0L));
1215 }
1216 bank = rand();
1217
1218 while (FcCacheHaveBank(bank))
1219 bank = rand();
1220#endif
eb0cf671
PL
1221
1222 memset (metadata, 0, sizeof(FcCache));
1223 FcFontSetNewBank();
8e351527
PL
1224 needed_bytes_no_align = FcFontSetNeededBytes (set);
1225 metadata->count = needed_bytes_no_align +
7fd7221e 1226 FcFontSetNeededBytesAlign ();
eb0cf671
PL
1227 metadata->magic = FC_CACHE_MAGIC;
1228 metadata->bank = bank;
1229
8e351527
PL
1230 if (!needed_bytes_no_align) /* not a failure, no fonts to write */
1231 {
1232 /* no, you don't really need to write any bytes at all. */
1233 metadata->count = 0;
eb0cf671 1234 return 0;
8e351527 1235 }
eb0cf671
PL
1236
1237 current_dir_block = malloc (metadata->count);
1238 if (!current_dir_block)
1239 goto bail;
bb6b1993 1240 /* shut up valgrind */
8e351527 1241 memset (current_dir_block, 0, metadata->count);
eb0cf671
PL
1242 final_dir_block = FcFontSetDistributeBytes (metadata, current_dir_block);
1243
8e351527 1244 if ((void *)((char *)current_dir_block+metadata->count) < final_dir_block)
eb0cf671
PL
1245 goto bail;
1246
1247 if (!FcFontSetSerialize (bank, set))
1248 goto bail;
1249
1250 return current_dir_block;
212c9f43 1251
4262e0b3 1252 bail:
eb0cf671
PL
1253 free (current_dir_block);
1254 return 0;
212c9f43
PL
1255}
1256
7410e40b
PL
1257static FcBool
1258FcMakeDirectory (const FcChar8 *dir)
1259{
1260 FcChar8 *parent;
1261 FcBool ret;
1262
1263 if (strlen ((char *) dir) == 0)
1264 return FcFalse;
1265
1266 parent = FcStrDirname (dir);
1267 if (!parent)
1268 return FcFalse;
1269 if (access ((char *) parent, W_OK|X_OK) == 0)
1270 ret = mkdir ((char *) dir, 0777) == 0;
1271 else if (access ((char *) parent, F_OK) == -1)
1272 ret = FcMakeDirectory (parent) && (mkdir ((char *) dir, 0777) == 0);
1273 else
1274 ret = FcFalse;
1275 FcStrFree (parent);
1276 return ret;
1277}
1278
212c9f43
PL
1279/* write serialized state to the cache file */
1280FcBool
7410e40b 1281FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir, FcConfig *config)
212c9f43 1282{
7410e40b
PL
1283 FcChar8 cache_base[CACHEBASE_LEN];
1284 FcChar8 *cache_hashed;
1d879de2
PL
1285 int fd, fd_orig, i, dirs_count;
1286 FcAtomic *atomic;
1287 FcCache metadata;
1288 off_t current_arch_start = 0, truncate_to;
7410e40b 1289 FcStrList *list;
1d879de2 1290 char *current_arch_machine_name, * header;
ea44e218 1291 void *current_dir_block = 0;
d2f78684
KP
1292 FcChar8 *cache_dir = NULL;
1293 FcChar8 *test_dir;
212c9f43 1294
cd9bca69
PL
1295 dir = FcConfigNormalizeFontDir (FcConfigGetCurrent(), dir);
1296 if (!dir)
1297 return FcFalse;
1298
7410e40b 1299 /*
d2f78684 1300 * Write it to the first directory in the list which is writable
7410e40b 1301 */
d2f78684
KP
1302
1303 list = FcStrListCreate (config->cacheDirs);
1304 if (!list)
1305 return FcFalse;
1306 while ((test_dir = FcStrListNext (list))) {
1307 if (access ((char *) test_dir, W_OK|X_OK) == 0)
1308 {
1309 cache_dir = test_dir;
1310 break;
1311 }
1312 else
1313 {
7410e40b
PL
1314 /*
1315 * If the directory doesn't exist, try to create it
1316 */
d2f78684
KP
1317 if (access ((char *) test_dir, F_OK) == -1) {
1318 if (FcMakeDirectory (test_dir))
1319 {
1320 cache_dir = test_dir;
7410e40b 1321 break;
d2f78684 1322 }
7410e40b
PL
1323 }
1324 }
7410e40b 1325 }
d2f78684
KP
1326 FcStrListDone (list);
1327 if (!cache_dir)
1328 return FcFalse;
1329 FcDirCacheBasename (dir, cache_base);
1330 cache_hashed = FcStrPlus (cache_dir, cache_base);
1331 if (!cache_hashed)
1332 return FcFalse;
ea44e218 1333
eb0cf671 1334 current_dir_block = FcDirCacheProduce (set, &metadata);
212c9f43 1335
a9698bed 1336 if (metadata.count && !current_dir_block)
ea44e218 1337 goto bail1;
212c9f43 1338
4262e0b3 1339 if (FcDebug () & FC_DBG_CACHE)
c1c3ba06
KP
1340 printf ("FcDirCacheWriteDir dir \"%s\" file \"%s\"\n",
1341 dir, cache_hashed);
4262e0b3 1342
3bfae75d 1343 atomic = FcAtomicCreate ((FcChar8 *)cache_hashed);
1d879de2 1344 if (!atomic)
ea44e218 1345 goto bail1;
212c9f43 1346
1d879de2 1347 if (!FcAtomicLock (atomic))
c1c3ba06 1348 goto bail2;
ec760b17 1349
c1c3ba06
KP
1350 /* open the original file to save relevant portions */
1351 fd_orig = open((char *)FcAtomicOrigFile (atomic), O_RDONLY | O_BINARY);
1d879de2 1352
879af706 1353 fd = open((char *)FcAtomicNewFile (atomic), O_RDWR | O_CREAT | O_BINARY, 0666);
1d879de2 1354 if (fd == -1)
ec760b17 1355 goto bail3;
ea44e218 1356
c1c3ba06 1357 FcCacheWriteString (fd, (char *) dir);
1d879de2 1358
eb0cf671 1359 current_arch_machine_name = FcCacheMachineSignature ();
1d879de2
PL
1360 current_arch_start = 0;
1361
1362 if (fd_orig != -1)
1363 current_arch_start =
c60ec7cc 1364 FcCacheSkipToArch(fd_orig, current_arch_machine_name);
1d879de2 1365
212c9f43 1366 if (current_arch_start < 0)
f468f568 1367 {
0d745819
PL
1368 off_t offset = lseek(fd_orig, 0, SEEK_END);
1369 current_arch_start = FcCacheNextOffset (offset);
f468f568 1370 }
212c9f43 1371
1d879de2 1372 if (fd_orig != -1 && !FcCacheCopyOld(fd, fd_orig, current_arch_start))
ea44e218 1373 goto bail4;
1d879de2
PL
1374
1375 if (fd_orig != -1)
1376 close (fd_orig);
212c9f43
PL
1377
1378 current_arch_start = lseek(fd, 0, SEEK_CUR);
d6217cc6 1379#if defined (HAVE_FTRUNCATE)
212c9f43 1380 if (ftruncate (fd, current_arch_start) == -1)
ea44e218 1381 goto bail4;
d6217cc6
PL
1382#else
1383#if defined (HAVE_CHSIZE)
1384 if (chsize (fd, current_arch_start) == -1)
1385 goto bail4;
1386#else
1387 goto bail4;
1388#endif
1389#endif
212c9f43 1390
6aee8c6f
PL
1391 /* allocate space for subdir names in this block */
1392 dirs_count = 0;
1393 for (i = 0; i < dirs->size; i++)
1394 dirs_count += strlen((char *)dirs->strs[i]) + 1;
1395 dirs_count ++;
1396
212c9f43 1397 /* now write the address of the next offset */
6aee8c6f 1398 truncate_to = FcCacheNextOffset (FcCacheNextOffset (current_arch_start + sizeof (FcCache) + dirs_count) + metadata.count) - current_arch_start;
2dbe7597 1399 header = malloc (10 + strlen (current_arch_machine_name));
eb0cf671 1400 if (!header)
ea44e218 1401 goto bail4;
2dbe7597
PL
1402 sprintf (header, "%8x ", (int)truncate_to);
1403 strcat (header, current_arch_machine_name);
eb0cf671 1404 if (!FcCacheWriteString (fd, header))
ea44e218 1405 goto bail5;
212c9f43 1406
2304e38f 1407 for (i = 0; i < dirs->size; i++)
8245771d 1408 FcCacheWriteString (fd, (char *)dirs->strs[i]);
2304e38f
PL
1409 FcCacheWriteString (fd, "");
1410
fff5a5af
PL
1411 if (write (fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
1412 {
68355f38
PL
1413 perror("write metadata");
1414 goto bail5;
1415 }
a9698bed
PL
1416 if (metadata.count)
1417 {
68355f38
PL
1418 off_t off = FcCacheNextOffset (lseek(fd, 0, SEEK_END));
1419 if (lseek (fd, off, SEEK_SET) != off)
1420 perror("lseek");
1421 else if (write (fd, current_dir_block, metadata.count) !=
1422 metadata.count)
1423 perror("write current_dir_block");
a9698bed 1424 free (current_dir_block);
f2fb985c 1425 current_dir_block = 0;
a9698bed 1426 }
4262e0b3 1427
2dbe7597 1428 /* this actually serves to pad out the cache file, if needed */
d6217cc6 1429#if defined (HAVE_FTRUNCATE)
212c9f43 1430 if (ftruncate (fd, current_arch_start + truncate_to) == -1)
ea44e218 1431 goto bail5;
d6217cc6
PL
1432#else
1433#if defined (HAVE_CHSIZE)
1434 if (chsize (fd, current_arch_start + truncate_to) == -1)
1435 goto bail5;
1436#else
1437 goto bail5;
1438#endif
1439#endif
212c9f43 1440
6f9fcb51 1441 free (header);
212c9f43 1442 close(fd);
1d879de2 1443 if (!FcAtomicReplaceOrig(atomic))
ae2aafe6 1444 goto bail3;
3bfae75d 1445 FcStrFree ((FcChar8 *)cache_hashed);
1d879de2
PL
1446 FcAtomicUnlock (atomic);
1447 FcAtomicDestroy (atomic);
212c9f43
PL
1448 return FcTrue;
1449
ea44e218 1450 bail5:
0230c9f8 1451 free (header);
ea44e218 1452 bail4:
1d879de2 1453 close (fd);
ea44e218 1454 bail3:
1d879de2 1455 FcAtomicUnlock (atomic);
ea44e218 1456 bail2:
1d879de2 1457 FcAtomicDestroy (atomic);
ea44e218 1458 bail1:
3bfae75d 1459 FcStrFree ((FcChar8 *)cache_hashed);
1d879de2
PL
1460 if (current_dir_block)
1461 free (current_dir_block);
212c9f43
PL
1462 return FcFalse;
1463}
1464
2dbe7597 1465static char *
eb0cf671 1466FcCacheMachineSignature ()
2dbe7597
PL
1467{
1468 static char buf[MACHINE_SIGNATURE_SIZE];
7fd7221e 1469 int32_t magic = ENDIAN_TEST;
2dbe7597
PL
1470 char * m = (char *)&magic;
1471
1472 sprintf (buf, "%2x%2x%2x%2x "
1473 "%4x %4x %4x %4x %4x %4x %4x %4x %4x %4x %4x %4x "
7fd7221e 1474 "%4x %4x %4x %4x %4x %4x %4x %4x\n",
2dbe7597 1475 m[0], m[1], m[2], m[3],
cd310911
PL
1476 (unsigned int)sizeof (char),
1477 (unsigned int)sizeof (char *),
1478 (unsigned int)sizeof (int),
1479 (unsigned int)sizeof (FcPattern),
1480 (unsigned int)sizeof (FcPatternEltPtr),
1481 (unsigned int)sizeof (struct _FcPatternElt *),
1482 (unsigned int)sizeof (FcPatternElt),
1483 (unsigned int)sizeof (FcObjectPtr),
1484 (unsigned int)sizeof (FcValueListPtr),
1485 (unsigned int)sizeof (FcValue),
1486 (unsigned int)sizeof (FcValueBinding),
1487 (unsigned int)sizeof (struct _FcValueList *),
1488 (unsigned int)sizeof (FcCharSet),
1489 (unsigned int)sizeof (FcCharLeaf **),
1490 (unsigned int)sizeof (FcChar16 *),
1491 (unsigned int)sizeof (FcChar16),
1492 (unsigned int)sizeof (FcCharLeaf),
1493 (unsigned int)sizeof (FcChar32),
7fd7221e 1494 (unsigned int)sizeof (FcCache),
d6217cc6 1495#if defined (HAVE_SYSCONF)
7fd7221e 1496 (unsigned int)sysconf(_SC_PAGESIZE));
d6217cc6
PL
1497#else
1498 (unsigned int)FC_HARDCODED_PAGESIZE);
1499#endif
2dbe7597
PL
1500
1501 return buf;
1502}
1503
4262e0b3 1504static int banks_ptr = 0, banks_alloc = 0;
b8948e85 1505int * _fcBankId = 0, * _fcBankIdx = 0;
e77c1718 1506static const char ** bankDirs = 0;
4262e0b3 1507
eb0cf671 1508static FcBool
4262e0b3
PL
1509FcCacheHaveBank (int bank)
1510{
1511 int i;
1512
1513 if (bank < FC_BANK_FIRST)
1514 return FcTrue;
1515
1516 for (i = 0; i < banks_ptr; i++)
b8948e85 1517 if (_fcBankId[i] == bank)
4262e0b3
PL
1518 return FcTrue;
1519
1520 return FcFalse;
1521}
1522
1523int
b8948e85 1524FcCacheBankToIndexMTF (int bank)
4262e0b3 1525{
751932dd 1526 int i, j;
4262e0b3
PL
1527
1528 for (i = 0; i < banks_ptr; i++)
b8948e85 1529 if (_fcBankId[_fcBankIdx[i]] == bank)
751932dd 1530 {
b8948e85 1531 int t = _fcBankIdx[i];
751932dd
PL
1532
1533 for (j = i; j > 0; j--)
b8948e85
PL
1534 _fcBankIdx[j] = _fcBankIdx[j-1];
1535 _fcBankIdx[0] = t;
751932dd
PL
1536 return t;
1537 }
4262e0b3 1538
2dbe7597 1539 if (banks_ptr >= banks_alloc)
4262e0b3 1540 {
751932dd 1541 int * b, * bidx;
e77c1718
PL
1542 const char ** bds;
1543
b8948e85 1544 b = realloc (_fcBankId, (banks_alloc + 4) * sizeof(int));
4262e0b3
PL
1545 if (!b)
1546 return -1;
b8948e85 1547 _fcBankId = b;
751932dd 1548
b8948e85 1549 bidx = realloc (_fcBankIdx, (banks_alloc + 4) * sizeof(int));
751932dd
PL
1550 if (!bidx)
1551 return -1;
b8948e85 1552 _fcBankIdx = bidx;
751932dd 1553
e77c1718
PL
1554 bds = realloc (bankDirs, (banks_alloc + 4) * sizeof (char *));
1555 if (!bds)
1556 return -1;
1557 bankDirs = bds;
1558
4262e0b3
PL
1559 banks_alloc += 4;
1560 }
1561
1562 i = banks_ptr++;
b8948e85
PL
1563 _fcBankId[i] = bank;
1564 _fcBankIdx[i] = i;
4262e0b3
PL
1565 return i;
1566}
e77c1718
PL
1567
1568static void
1569FcCacheAddBankDir (int bank, const char * dir)
1570{
b8948e85 1571 int bi = FcCacheBankToIndexMTF (bank);
e77c1718
PL
1572
1573 if (bi < 0)
1574 return;
1575
1576 bankDirs[bi] = (const char *)FcStrCopy ((FcChar8 *)dir);
1577}
1578
1579const char *
1580FcCacheFindBankDir (int bank)
1581{
1582 int bi = FcCacheBankToIndex (bank);
1583 return bankDirs[bi];
1584}
1585
ea44e218
PL
1586/*
1587 * This code implements the MD5 message-digest algorithm.
1588 * The algorithm is due to Ron Rivest. This code was
1589 * written by Colin Plumb in 1993, no copyright is claimed.
1590 * This code is in the public domain; do with it what you wish.
1591 *
1592 * Equivalent code is available from RSA Data Security, Inc.
1593 * This code has been tested against that, and is equivalent,
1594 * except that you don't need to include two pages of legalese
1595 * with every copy.
1596 *
1597 * To compute the message digest of a chunk of bytes, declare an
1598 * MD5Context structure, pass it to MD5Init, call MD5Update as
1599 * needed on buffers full of bytes, and then call MD5Final, which
1600 * will fill a supplied 16-byte array with the digest.
1601 */
1602
1603#ifndef HIGHFIRST
1604#define byteReverse(buf, len) /* Nothing */
1605#else
1606/*
1607 * Note: this code is harmless on little-endian machines.
1608 */
1609void byteReverse(unsigned char *buf, unsigned longs)
1610{
1611 FcChar32 t;
1612 do {
1613 t = (FcChar32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
1614 ((unsigned) buf[1] << 8 | buf[0]);
1615 *(FcChar32 *) buf = t;
1616 buf += 4;
1617 } while (--longs);
1618}
1619#endif
1620
1621/*
1622 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
1623 * initialization constants.
1624 */
1625static void MD5Init(struct MD5Context *ctx)
1626{
1627 ctx->buf[0] = 0x67452301;
1628 ctx->buf[1] = 0xefcdab89;
1629 ctx->buf[2] = 0x98badcfe;
1630 ctx->buf[3] = 0x10325476;
1631
1632 ctx->bits[0] = 0;
1633 ctx->bits[1] = 0;
1634}
1635
1636/*
1637 * Update context to reflect the concatenation of another buffer full
1638 * of bytes.
1639 */
1640static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len)
1641{
1642 FcChar32 t;
1643
1644 /* Update bitcount */
1645
1646 t = ctx->bits[0];
1647 if ((ctx->bits[0] = t + ((FcChar32) len << 3)) < t)
1648 ctx->bits[1]++; /* Carry from low to high */
1649 ctx->bits[1] += len >> 29;
1650
1651 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
1652
1653 /* Handle any leading odd-sized chunks */
1654
1655 if (t) {
1656 unsigned char *p = (unsigned char *) ctx->in + t;
1657
1658 t = 64 - t;
1659 if (len < t) {
1660 memcpy(p, buf, len);
1661 return;
1662 }
1663 memcpy(p, buf, t);
1664 byteReverse(ctx->in, 16);
1665 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1666 buf += t;
1667 len -= t;
1668 }
1669 /* Process data in 64-byte chunks */
1670
1671 while (len >= 64) {
1672 memcpy(ctx->in, buf, 64);
1673 byteReverse(ctx->in, 16);
1674 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1675 buf += 64;
1676 len -= 64;
1677 }
1678
1679 /* Handle any remaining bytes of data. */
1680
1681 memcpy(ctx->in, buf, len);
1682}
1683
1684/*
1685 * Final wrapup - pad to 64-byte boundary with the bit pattern
1686 * 1 0* (64-bit count of bits processed, MSB-first)
1687 */
1688static void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
1689{
1690 unsigned count;
1691 unsigned char *p;
1692
1693 /* Compute number of bytes mod 64 */
1694 count = (ctx->bits[0] >> 3) & 0x3F;
1695
1696 /* Set the first char of padding to 0x80. This is safe since there is
1697 always at least one byte free */
1698 p = ctx->in + count;
1699 *p++ = 0x80;
1700
1701 /* Bytes of padding needed to make 64 bytes */
1702 count = 64 - 1 - count;
1703
1704 /* Pad out to 56 mod 64 */
1705 if (count < 8) {
1706 /* Two lots of padding: Pad the first block to 64 bytes */
1707 memset(p, 0, count);
1708 byteReverse(ctx->in, 16);
1709 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1710
1711 /* Now fill the next block with 56 bytes */
1712 memset(ctx->in, 0, 56);
1713 } else {
1714 /* Pad block to 56 bytes */
1715 memset(p, 0, count - 8);
1716 }
1717 byteReverse(ctx->in, 14);
1718
1719 /* Append length in bits and transform */
1720 ((FcChar32 *) ctx->in)[14] = ctx->bits[0];
1721 ((FcChar32 *) ctx->in)[15] = ctx->bits[1];
1722
1723 MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
1724 byteReverse((unsigned char *) ctx->buf, 4);
1725 memcpy(digest, ctx->buf, 16);
1726 memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */
1727}
1728
1729
1730/* The four core functions - F1 is optimized somewhat */
1731
1732/* #define F1(x, y, z) (x & y | ~x & z) */
1733#define F1(x, y, z) (z ^ (x & (y ^ z)))
1734#define F2(x, y, z) F1(z, x, y)
1735#define F3(x, y, z) (x ^ y ^ z)
1736#define F4(x, y, z) (y ^ (x | ~z))
1737
1738/* This is the central step in the MD5 algorithm. */
1739#define MD5STEP(f, w, x, y, z, data, s) \
1740 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
1741
1742/*
1743 * The core of the MD5 algorithm, this alters an existing MD5 hash to
1744 * reflect the addition of 16 longwords of new data. MD5Update blocks
1745 * the data and converts bytes into longwords for this routine.
1746 */
1747static void MD5Transform(FcChar32 buf[4], FcChar32 in[16])
1748{
1749 register FcChar32 a, b, c, d;
1750
1751 a = buf[0];
1752 b = buf[1];
1753 c = buf[2];
1754 d = buf[3];
1755
1756 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
1757 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
1758 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
1759 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
1760 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
1761 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
1762 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
1763 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
1764 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
1765 MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
1766 MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
1767 MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
1768 MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
1769 MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
1770 MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
1771 MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
1772
1773 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
1774 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
1775 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
1776 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
1777 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
1778 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
1779 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
1780 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
1781 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
1782 MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
1783 MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
1784 MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
1785 MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
1786 MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
1787 MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
1788 MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
1789
1790 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
1791 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
1792 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
1793 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
1794 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
1795 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
1796 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
1797 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
1798 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
1799 MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
1800 MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
1801 MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
1802 MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
1803 MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
1804 MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
1805 MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
1806
1807 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
1808 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
1809 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
1810 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
1811 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
1812 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
1813 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
1814 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
1815 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
1816 MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
1817 MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
1818 MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
1819 MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
1820 MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
1821 MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
1822 MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
1823
1824 buf[0] += a;
1825 buf[1] += b;
1826 buf[2] += c;
1827 buf[3] += d;
1828}