Hide private functions in shared library. Export functionality for utilities.
[platform/upstream/fontconfig.git] / src / fccache.c
1 /*
2  * Copyright © 2000 Keith Packard
3  * Copyright © 2005 Patrick Lam
4  *
5  * Permission to use, copy, modify, distribute, and sell this software and its
6  * documentation for any purpose is hereby granted without fee, provided that
7  * the above copyright notice appear in all copies and that both that
8  * copyright notice and this permission notice appear in supporting
9  * documentation, and that the name of Keith Packard not be used in
10  * advertising or publicity pertaining to distribution of the software without
11  * specific, written prior permission.  Keith Packard makes no
12  * representations about the suitability of this software for any purpose.  It
13  * is provided "as is" without express or implied warranty.
14  *
15  * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
17  * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
19  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
20  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
21  * PERFORMANCE OF THIS SOFTWARE.
22  */
23
24 #include "fcint.h"
25 #include "../fc-arch/fcarch.h"
26 #include <stdio.h>
27 #include <fcntl.h>
28 #include <dirent.h>
29 #include <string.h>
30 #include <sys/types.h>
31 #if defined(HAVE_MMAP) || defined(__CYGWIN__)
32 #  include <unistd.h>
33 #  include <sys/mman.h>
34 #elif defined(_WIN32)
35 #  include <windows.h>
36 #endif
37
38 #ifndef O_BINARY
39 #define O_BINARY 0
40 #endif
41
42 struct MD5Context {
43         FcChar32 buf[4];
44         FcChar32 bits[2];
45         unsigned char in[64];
46 };
47
48 static void MD5Init(struct MD5Context *ctx);
49 static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len);
50 static void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
51 static void MD5Transform(FcChar32 buf[4], FcChar32 in[16]);
52
53 #define CACHEBASE_LEN (1 + 32 + 1 + sizeof (FC_ARCHITECTURE) + sizeof (FC_CACHE_SUFFIX))
54
55 static const char bin2hex[] = { '0', '1', '2', '3',
56                                 '4', '5', '6', '7',
57                                 '8', '9', 'a', 'b',
58                                 'c', 'd', 'e', 'f' };
59
60 static FcChar8 *
61 FcDirCacheBasename (const FcChar8 * dir, FcChar8 cache_base[CACHEBASE_LEN])
62 {
63     unsigned char       hash[16];
64     FcChar8             *hex_hash;
65     int                 cnt;
66     struct MD5Context   ctx;
67
68     MD5Init (&ctx);
69     MD5Update (&ctx, (unsigned char *)dir, strlen ((char *) dir));
70
71     MD5Final (hash, &ctx);
72
73     cache_base[0] = '/';
74     hex_hash = cache_base + 1;
75     for (cnt = 0; cnt < 16; ++cnt)
76     {
77         hex_hash[2*cnt  ] = bin2hex[hash[cnt] >> 4];
78         hex_hash[2*cnt+1] = bin2hex[hash[cnt] & 0xf];
79     }
80     hex_hash[2*cnt] = 0;
81     strcat ((char *) cache_base, "-" FC_ARCHITECTURE FC_CACHE_SUFFIX);
82
83     return cache_base;
84 }
85
86 FcBool
87 FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config)
88 {
89     FcChar8     *cache_hashed = NULL;
90     FcChar8     cache_base[CACHEBASE_LEN];
91     FcStrList   *list;
92     FcChar8     *cache_dir;
93
94     FcDirCacheBasename (dir, cache_base);
95
96     list = FcStrListCreate (config->cacheDirs);
97     if (!list)
98         return FcFalse;
99         
100     while ((cache_dir = FcStrListNext (list)))
101     {
102         cache_hashed = FcStrPlus (cache_dir, cache_base);
103         if (!cache_hashed)
104             break;
105         (void) unlink ((char *) cache_hashed);
106     }
107     FcStrListDone (list);
108     /* return FcFalse if something went wrong */
109     if (cache_dir)
110         return FcFalse;
111     return FcTrue;
112 }
113
114 static int
115 FcDirCacheOpenFile (const FcChar8 *cache_file, struct stat *file_stat)
116 {
117     int fd;
118
119     fd = open((char *) cache_file, O_RDONLY | O_BINARY);
120     if (fd < 0)
121         return fd;
122     if (fstat (fd, file_stat) < 0)
123     {
124         close (fd);
125         return -1;
126     }
127     return fd;
128 }
129
130 /* 
131  * Look for a cache file for the specified dir. Attempt
132  * to use each one we find, stopping when the callback
133  * indicates success
134  */
135 static FcBool
136 FcDirCacheProcess (FcConfig *config, const FcChar8 *dir, 
137                    FcBool (*callback) (int fd, off_t size, void *closure),
138                    void *closure, FcChar8 **cache_file_ret)
139 {
140     int         fd = -1;
141     FcChar8     cache_base[CACHEBASE_LEN];
142     FcStrList   *list;
143     FcChar8     *cache_dir;
144     struct stat file_stat, dir_stat;
145     FcBool      ret = FcFalse;
146
147     if (stat ((char *) dir, &dir_stat) < 0)
148         return FcFalse;
149
150     FcDirCacheBasename (dir, cache_base);
151
152     list = FcStrListCreate (config->cacheDirs);
153     if (!list)
154         return FcFalse;
155         
156     while ((cache_dir = FcStrListNext (list)))
157     {
158         FcChar8 *cache_hashed = FcStrPlus (cache_dir, cache_base);
159         if (!cache_hashed)
160             break;
161         fd = FcDirCacheOpenFile (cache_hashed, &file_stat);
162         if (fd >= 0) {
163             if (dir_stat.st_mtime <= file_stat.st_mtime)
164             {
165                 ret = (*callback) (fd, file_stat.st_size, closure);
166                 if (ret)
167                 {
168                     if (cache_file_ret)
169                         *cache_file_ret = cache_hashed;
170                     else
171                         FcStrFree (cache_hashed);
172                     close (fd);
173                     break;
174                 }
175             }
176             close (fd);
177         }
178         FcStrFree (cache_hashed);
179     }
180     FcStrListDone (list);
181     
182     return ret;
183 }
184
185 #define FC_CACHE_MIN_MMAP   1024
186
187 /*
188  * Map a cache file into memory
189  */
190 static FcCache *
191 FcDirCacheMapFd (int fd, off_t size)
192 {
193     FcCache     *cache = NULL;
194     FcBool      allocated = FcFalse;
195
196     if (size < sizeof (FcCache))
197         return NULL;
198     /*
199      * For small cache files, just read them into memory
200      */
201     if (size >= FC_CACHE_MIN_MMAP)
202     {
203 #if defined(HAVE_MMAP) || defined(__CYGWIN__)
204         cache = mmap (0, size, PROT_READ, MAP_SHARED, fd, 0);
205 #elif defined(_WIN32)
206         {
207             HANDLE hFileMap;
208
209             cache = NULL;
210             hFileMap = CreateFileMapping((HANDLE) _get_osfhandle(fd), NULL,
211                                          PAGE_READONLY, 0, 0, NULL);
212             if (hFileMap != NULL)
213             {
214                 cache = MapViewOfFile (hFileMap, FILE_MAP_READ, 0, 0, size);
215                 CloseHandle (hFileMap);
216             }
217         }
218 #endif
219     }
220     if (!cache)
221     {
222         cache = malloc (size);
223         if (!cache)
224             return NULL;
225
226         if (read (fd, cache, size) != size)
227         {
228             free (cache);
229             return NULL;
230         }
231         allocated = FcTrue;
232     } 
233     if (cache->magic != FC_CACHE_MAGIC_MMAP || 
234         cache->version < FC_CACHE_CONTENT_VERSION ||
235         cache->size != size)
236     {
237         if (allocated)
238             free (cache);
239         else
240         {
241 #if defined(HAVE_MMAP) || defined(__CYGWIN__)
242             munmap (cache, size);
243 #elif defined(_WIN32)
244             UnmapViewOfFile (cache);
245 #endif
246         }
247         return NULL;
248     }
249
250     /* Mark allocated caches so they're freed rather than unmapped */
251     if (allocated)
252         cache->magic = FC_CACHE_MAGIC_ALLOC;
253         
254     return cache;
255 }
256
257 void
258 FcDirCacheUnload (FcCache *cache)
259 {
260     switch (cache->magic) {
261     case FC_CACHE_MAGIC_ALLOC:
262         free (cache);
263         break;
264     case FC_CACHE_MAGIC_MMAP:
265 #if defined(HAVE_MMAP) || defined(__CYGWIN__)
266         munmap (cache, cache->size);
267 #elif defined(_WIN32)
268         UnmapViewOfFile (cache);
269 #endif
270         break;
271     }
272 }
273
274 static FcBool
275 FcDirCacheMapHelper (int fd, off_t size, void *closure)
276 {
277     FcCache *cache = FcDirCacheMapFd (fd, size);
278
279     if (!cache)
280         return FcFalse;
281     *((FcCache **) closure) = cache;
282     return FcTrue;
283 }
284
285 FcCache *
286 FcDirCacheLoad (const FcChar8 *dir, FcConfig *config, FcChar8 **cache_file)
287 {
288     FcCache *cache = NULL;
289
290     if (!FcDirCacheProcess (config, dir,
291                             FcDirCacheMapHelper,
292                             &cache, cache_file))
293         return NULL;
294     return cache;
295 }
296
297 FcCache *
298 FcDirCacheLoadFile (const FcChar8 *cache_file, struct stat *file_stat)
299 {
300     int fd;
301     FcCache *cache;
302
303     fd = FcDirCacheOpenFile (cache_file, file_stat);
304     if (fd < 0)
305         return NULL;
306     cache = FcDirCacheMapFd (fd, file_stat->st_size);
307     close (fd);
308     return cache;
309 }
310
311 /*
312  * Validate a cache file by reading the header and checking
313  * the magic number and the size field
314  */
315 static FcBool
316 FcDirCacheValidateHelper (int fd, off_t size, void *closure)
317 {
318     FcBool  ret = FcTrue;
319     FcCache     c;
320     struct stat file_stat;
321     
322     if (read (fd, &c, sizeof (FcCache)) != sizeof (FcCache))
323         ret = FcFalse;
324     else if (c.magic != FC_CACHE_MAGIC_MMAP)
325         ret = FcFalse;
326     else if (c.version < FC_CACHE_CONTENT_VERSION)
327         ret = FcFalse;
328     else if (fstat (fd, &file_stat) < 0)
329         ret = FcFalse;
330     else if (file_stat.st_size != c.size)
331         ret = FcFalse;
332     return ret;
333 }
334
335 static FcBool
336 FcDirCacheValidConfig (const FcChar8 *dir, FcConfig *config)
337 {
338     return FcDirCacheProcess (config, dir, 
339                               FcDirCacheValidateHelper,
340                               NULL, NULL);
341 }
342
343 FcBool
344 FcDirCacheValid (const FcChar8 *dir)
345 {
346     FcConfig    *config;
347     
348     config = FcConfigGetCurrent ();
349     if (!config)
350         return FcFalse;
351
352     return FcDirCacheValidConfig (dir, config);
353 }
354
355 /*
356  * Build a cache structure from the given contents
357  */
358 FcCache *
359 FcDirCacheBuild (FcFontSet *set, const FcChar8 *dir, FcStrSet *dirs)
360 {
361     FcSerialize *serialize = FcSerializeCreate ();
362     FcCache *cache;
363     int i;
364     intptr_t    cache_offset;
365     intptr_t    dirs_offset;
366     FcChar8     *dir_serialize;
367     intptr_t    *dirs_serialize;
368     FcFontSet   *set_serialize;
369     
370     if (!serialize)
371         return NULL;
372     /*
373      * Space for cache structure
374      */
375     cache_offset = FcSerializeReserve (serialize, sizeof (FcCache));
376     /*
377      * Directory name
378      */
379     if (!FcStrSerializeAlloc (serialize, dir))
380         goto bail1;
381     /*
382      * Subdirs
383      */
384     dirs_offset = FcSerializeAlloc (serialize, dirs, dirs->num * sizeof (FcChar8 *));
385     for (i = 0; i < dirs->num; i++)
386         if (!FcStrSerializeAlloc (serialize, dirs->strs[i]))
387             goto bail1;
388
389     /*
390      * Patterns
391      */
392     if (!FcFontSetSerializeAlloc (serialize, set))
393         goto bail1;
394     
395     /* Serialize layout complete. Now allocate space and fill it */
396     cache = malloc (serialize->size);
397     if (!cache)
398         goto bail1;
399     /* shut up valgrind */
400     memset (cache, 0, serialize->size);
401
402     serialize->linear = cache;
403
404     cache->magic = FC_CACHE_MAGIC_ALLOC;
405     cache->version = FC_CACHE_CONTENT_VERSION;
406     cache->size = serialize->size;
407
408     /*
409      * Serialize directory name
410      */
411     dir_serialize = FcStrSerialize (serialize, dir);
412     if (!dir_serialize)
413         goto bail2;
414     cache->dir = FcPtrToOffset (cache, dir_serialize);
415     
416     /*
417      * Serialize sub dirs
418      */
419     dirs_serialize = FcSerializePtr (serialize, dirs);
420     if (!dirs_serialize)
421         goto bail2;
422     cache->dirs = FcPtrToOffset (cache, dirs_serialize);
423     cache->dirs_count = dirs->num;
424     for (i = 0; i < dirs->num; i++) 
425     {
426         FcChar8 *d_serialize = FcStrSerialize (serialize, dirs->strs[i]);
427         if (!d_serialize)
428             goto bail2;
429         dirs_serialize[i] = FcPtrToOffset (dirs_serialize, d_serialize);
430     }
431     
432     /*
433      * Serialize font set
434      */
435     set_serialize = FcFontSetSerialize (serialize, set);
436     if (!set_serialize)
437         goto bail2;
438     cache->set = FcPtrToOffset (cache, set_serialize);
439
440     FcSerializeDestroy (serialize);
441     
442     return cache;
443
444 bail2:
445     free (cache);
446 bail1:
447     FcSerializeDestroy (serialize);
448     return NULL;
449 }
450
451 static FcBool
452 FcMakeDirectory (const FcChar8 *dir)
453 {
454     FcChar8 *parent;
455     FcBool  ret;
456     
457     if (strlen ((char *) dir) == 0)
458         return FcFalse;
459     
460     parent = FcStrDirname (dir);
461     if (!parent)
462         return FcFalse;
463     if (access ((char *) parent, W_OK|X_OK) == 0)
464         ret = mkdir ((char *) dir, 0777) == 0;
465     else if (access ((char *) parent, F_OK) == -1)
466         ret = FcMakeDirectory (parent) && (mkdir ((char *) dir, 0777) == 0);
467     else
468         ret = FcFalse;
469     FcStrFree (parent);
470     return ret;
471 }
472
473 /* write serialized state to the cache file */
474 FcBool
475 FcDirCacheWrite (FcCache *cache, FcConfig *config)
476 {
477     FcChar8         *dir = FcCacheDir (cache);
478     FcChar8         cache_base[CACHEBASE_LEN];
479     FcChar8         *cache_hashed;
480     int             fd;
481     FcAtomic        *atomic;
482     FcStrList       *list;
483     FcChar8         *cache_dir = NULL;
484     FcChar8         *test_dir;
485     int             magic;
486     int             written;
487
488     /*
489      * Write it to the first directory in the list which is writable
490      */
491     
492     list = FcStrListCreate (config->cacheDirs);
493     if (!list)
494         return FcFalse;
495     while ((test_dir = FcStrListNext (list))) {
496         if (access ((char *) test_dir, W_OK|X_OK) == 0)
497         {
498             cache_dir = test_dir;
499             break;
500         }
501         else
502         {
503             /*
504              * If the directory doesn't exist, try to create it
505              */
506             if (access ((char *) test_dir, F_OK) == -1) {
507                 if (FcMakeDirectory (test_dir))
508                 {
509                     cache_dir = test_dir;
510                     break;
511                 }
512             }
513         }
514     }
515     FcStrListDone (list);
516     if (!cache_dir)
517         return FcFalse;
518
519     FcDirCacheBasename (dir, cache_base);
520     cache_hashed = FcStrPlus (cache_dir, cache_base);
521     if (!cache_hashed)
522         return FcFalse;
523
524     if (FcDebug () & FC_DBG_CACHE)
525         printf ("FcDirCacheWriteDir dir \"%s\" file \"%s\"\n",
526                 dir, cache_hashed);
527
528     atomic = FcAtomicCreate ((FcChar8 *)cache_hashed);
529     if (!atomic)
530         goto bail1;
531
532     if (!FcAtomicLock (atomic))
533         goto bail3;
534
535     fd = open((char *)FcAtomicNewFile (atomic), O_RDWR | O_CREAT | O_BINARY, 0666);
536     if (fd == -1)
537         goto bail4;
538     
539     /* Temporarily switch magic to MMAP while writing to file */
540     magic = cache->magic;
541     if (magic != FC_CACHE_MAGIC_MMAP)
542         cache->magic = FC_CACHE_MAGIC_MMAP;
543     
544     /*
545      * Write cache contents to file
546      */
547     written = write (fd, cache, cache->size);
548     
549     /* Switch magic back */
550     if (magic != FC_CACHE_MAGIC_MMAP)
551         cache->magic = magic;
552     
553     if (written != cache->size)
554     {
555         perror ("write cache");
556         goto bail5;
557     }
558
559     close(fd);
560     if (!FcAtomicReplaceOrig(atomic))
561         goto bail4;
562     FcStrFree (cache_hashed);
563     FcAtomicUnlock (atomic);
564     FcAtomicDestroy (atomic);
565     return FcTrue;
566
567  bail5:
568     close (fd);
569  bail4:
570     FcAtomicUnlock (atomic);
571  bail3:
572     FcAtomicDestroy (atomic);
573  bail1:
574     FcStrFree (cache_hashed);
575     return FcFalse;
576 }
577
578 /*
579  * Hokey little macro trick to permit the definitions of C functions
580  * with the same name as CPP macros
581  */
582 #define args(x...)          (x)
583
584 const FcChar8 *
585 FcCacheDir args(const FcCache *c)
586 {
587     return FcCacheDir (c);
588 }
589
590 FcFontSet *
591 FcCacheCopySet args(const FcCache *c)
592 {
593     FcFontSet   *old = FcCacheSet (c);
594     FcFontSet   *new = FcFontSetCreate ();
595     int         i;
596     
597     if (!new)
598         return NULL;
599     for (i = 0; i < old->nfont; i++)
600         if (!FcFontSetAdd (new, FcFontSetFont (old, i)))
601         {
602             FcFontSetDestroy (new);
603             return NULL;
604         }
605     return new;
606 }
607
608 const FcChar8 *
609 FcCacheSubdir args(const FcCache *c, int i)
610 {
611     return FcCacheSubdir (c, i);
612 }
613
614 int
615 FcCacheNumSubdir args(const FcCache *c)
616 {
617     return c->dirs_count;
618 }
619
620 int
621 FcCacheNumFont args(const FcCache *c)
622 {
623     return FcCacheSet(c)->nfont;
624 }
625
626 /*
627  * This code implements the MD5 message-digest algorithm.
628  * The algorithm is due to Ron Rivest.  This code was
629  * written by Colin Plumb in 1993, no copyright is claimed.
630  * This code is in the public domain; do with it what you wish.
631  *
632  * Equivalent code is available from RSA Data Security, Inc.
633  * This code has been tested against that, and is equivalent,
634  * except that you don't need to include two pages of legalese
635  * with every copy.
636  *
637  * To compute the message digest of a chunk of bytes, declare an
638  * MD5Context structure, pass it to MD5Init, call MD5Update as
639  * needed on buffers full of bytes, and then call MD5Final, which
640  * will fill a supplied 16-byte array with the digest.
641  */
642
643 #ifndef HIGHFIRST
644 #define byteReverse(buf, len)   /* Nothing */
645 #else
646 /*
647  * Note: this code is harmless on little-endian machines.
648  */
649 void byteReverse(unsigned char *buf, unsigned longs)
650 {
651     FcChar32 t;
652     do {
653         t = (FcChar32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
654             ((unsigned) buf[1] << 8 | buf[0]);
655         *(FcChar32 *) buf = t;
656         buf += 4;
657     } while (--longs);
658 }
659 #endif
660
661 /*
662  * Start MD5 accumulation.  Set bit count to 0 and buffer to mysterious
663  * initialization constants.
664  */
665 static void MD5Init(struct MD5Context *ctx)
666 {
667     ctx->buf[0] = 0x67452301;
668     ctx->buf[1] = 0xefcdab89;
669     ctx->buf[2] = 0x98badcfe;
670     ctx->buf[3] = 0x10325476;
671
672     ctx->bits[0] = 0;
673     ctx->bits[1] = 0;
674 }
675
676 /*
677  * Update context to reflect the concatenation of another buffer full
678  * of bytes.
679  */
680 static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len)
681 {
682     FcChar32 t;
683
684     /* Update bitcount */
685
686     t = ctx->bits[0];
687     if ((ctx->bits[0] = t + ((FcChar32) len << 3)) < t)
688         ctx->bits[1]++;         /* Carry from low to high */
689     ctx->bits[1] += len >> 29;
690
691     t = (t >> 3) & 0x3f;        /* Bytes already in shsInfo->data */
692
693     /* Handle any leading odd-sized chunks */
694
695     if (t) {
696         unsigned char *p = (unsigned char *) ctx->in + t;
697
698         t = 64 - t;
699         if (len < t) {
700             memcpy(p, buf, len);
701             return;
702         }
703         memcpy(p, buf, t);
704         byteReverse(ctx->in, 16);
705         MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
706         buf += t;
707         len -= t;
708     }
709     /* Process data in 64-byte chunks */
710
711     while (len >= 64) {
712         memcpy(ctx->in, buf, 64);
713         byteReverse(ctx->in, 16);
714         MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
715         buf += 64;
716         len -= 64;
717     }
718
719     /* Handle any remaining bytes of data. */
720
721     memcpy(ctx->in, buf, len);
722 }
723
724 /*
725  * Final wrapup - pad to 64-byte boundary with the bit pattern 
726  * 1 0* (64-bit count of bits processed, MSB-first)
727  */
728 static void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
729 {
730     unsigned count;
731     unsigned char *p;
732
733     /* Compute number of bytes mod 64 */
734     count = (ctx->bits[0] >> 3) & 0x3F;
735
736     /* Set the first char of padding to 0x80.  This is safe since there is
737        always at least one byte free */
738     p = ctx->in + count;
739     *p++ = 0x80;
740
741     /* Bytes of padding needed to make 64 bytes */
742     count = 64 - 1 - count;
743
744     /* Pad out to 56 mod 64 */
745     if (count < 8) {
746         /* Two lots of padding:  Pad the first block to 64 bytes */
747         memset(p, 0, count);
748         byteReverse(ctx->in, 16);
749         MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
750
751         /* Now fill the next block with 56 bytes */
752         memset(ctx->in, 0, 56);
753     } else {
754         /* Pad block to 56 bytes */
755         memset(p, 0, count - 8);
756     }
757     byteReverse(ctx->in, 14);
758
759     /* Append length in bits and transform */
760     ((FcChar32 *) ctx->in)[14] = ctx->bits[0];
761     ((FcChar32 *) ctx->in)[15] = ctx->bits[1];
762
763     MD5Transform(ctx->buf, (FcChar32 *) ctx->in);
764     byteReverse((unsigned char *) ctx->buf, 4);
765     memcpy(digest, ctx->buf, 16);
766     memset(ctx, 0, sizeof(ctx));        /* In case it's sensitive */
767 }
768
769
770 /* The four core functions - F1 is optimized somewhat */
771
772 /* #define F1(x, y, z) (x & y | ~x & z) */
773 #define F1(x, y, z) (z ^ (x & (y ^ z)))
774 #define F2(x, y, z) F1(z, x, y)
775 #define F3(x, y, z) (x ^ y ^ z)
776 #define F4(x, y, z) (y ^ (x | ~z))
777
778 /* This is the central step in the MD5 algorithm. */
779 #define MD5STEP(f, w, x, y, z, data, s) \
780         ( w += f(x, y, z) + data,  w = w<<s | w>>(32-s),  w += x )
781
782 /*
783  * The core of the MD5 algorithm, this alters an existing MD5 hash to
784  * reflect the addition of 16 longwords of new data.  MD5Update blocks
785  * the data and converts bytes into longwords for this routine.
786  */
787 static void MD5Transform(FcChar32 buf[4], FcChar32 in[16])
788 {
789     register FcChar32 a, b, c, d;
790
791     a = buf[0];
792     b = buf[1];
793     c = buf[2];
794     d = buf[3];
795
796     MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
797     MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
798     MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
799     MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
800     MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
801     MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
802     MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
803     MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
804     MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
805     MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
806     MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
807     MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
808     MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
809     MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
810     MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
811     MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
812
813     MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
814     MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
815     MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
816     MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
817     MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
818     MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
819     MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
820     MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
821     MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
822     MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
823     MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
824     MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
825     MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
826     MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
827     MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
828     MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
829
830     MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
831     MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
832     MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
833     MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
834     MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
835     MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
836     MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
837     MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
838     MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
839     MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
840     MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
841     MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
842     MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
843     MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
844     MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
845     MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
846
847     MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
848     MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
849     MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
850     MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
851     MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
852     MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
853     MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
854     MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
855     MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
856     MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
857     MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
858     MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
859     MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
860     MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
861     MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
862     MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
863
864     buf[0] += a;
865     buf[1] += b;
866     buf[2] += c;
867     buf[3] += d;
868 }