Imported Upstream version 2.12.1
[platform/upstream/fontconfig.git] / src / fccache.c
index 25538bd..02ec301 100644 (file)
@@ -27,6 +27,7 @@
 #include <fcntl.h>
 #include <dirent.h>
 #include <string.h>
+#include <limits.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <assert.h>
@@ -34,6 +35,9 @@
 #  include <unistd.h>
 #  include <sys/mman.h>
 #endif
+#if defined(_WIN32)
+#include <sys/locking.h>
+#endif
 
 #ifndef O_BINARY
 #define O_BINARY 0
@@ -253,6 +257,7 @@ struct _FcCacheSkip {
     dev_t          cache_dev;
     ino_t          cache_ino;
     time_t         cache_mtime;
+    long           cache_mtime_nano;
     FcCacheSkip            *next[1];
 };
 
@@ -380,12 +385,18 @@ FcCacheInsert (FcCache *cache, struct stat *cache_stat)
        s->cache_dev = cache_stat->st_dev;
        s->cache_ino = cache_stat->st_ino;
        s->cache_mtime = cache_stat->st_mtime;
+#ifdef HAVE_STRUCT_STAT_ST_MTIM
+       s->cache_mtime_nano = cache_stat->st_mtim.tv_nsec;
+#else
+       s->cache_mtime_nano = 0;
+#endif
     }
     else
     {
        s->cache_dev = 0;
        s->cache_ino = 0;
        s->cache_mtime = 0;
+       s->cache_mtime_nano = 0;
     }
 
     /*
@@ -473,6 +484,10 @@ FcCacheFindByStat (struct stat *cache_stat)
            s->cache_ino == cache_stat->st_ino &&
            s->cache_mtime == cache_stat->st_mtime)
        {
+#ifdef HAVE_STRUCT_STAT_ST_MTIM
+           if (s->cache_mtime != cache_stat->st_mtim.tv_nsec)
+               continue;
+#endif
            FcRefInc (&s->ref);
            unlock_cache ();
            return s->cache;
@@ -540,6 +555,7 @@ static FcBool
 FcCacheTimeValid (FcConfig *config, FcCache *cache, struct stat *dir_stat)
 {
     struct stat        dir_static;
+    FcBool fnano = FcTrue;
 
     if (!dir_stat)
     {
@@ -558,37 +574,94 @@ FcCacheTimeValid (FcConfig *config, FcCache *cache, struct stat *dir_stat)
        FcStrFree (d);
        dir_stat = &dir_static;
     }
+#ifdef HAVE_STRUCT_STAT_ST_MTIM
+    fnano = (cache->checksum_nano == dir_stat->st_mtim.tv_nsec);
+    if (FcDebug () & FC_DBG_CACHE)
+       printf ("FcCacheTimeValid dir \"%s\" cache checksum %d.%ld dir checksum %d.%ld\n",
+               FcCacheDir (cache), cache->checksum, (long)cache->checksum_nano, (int) dir_stat->st_mtime, dir_stat->st_mtim.tv_nsec);
+#else
     if (FcDebug () & FC_DBG_CACHE)
        printf ("FcCacheTimeValid dir \"%s\" cache checksum %d dir checksum %d\n",
                FcCacheDir (cache), cache->checksum, (int) dir_stat->st_mtime);
-    return cache->checksum == (int) dir_stat->st_mtime;
+#endif
+
+    return cache->checksum == (int) dir_stat->st_mtime && fnano;
 }
 
 static FcBool
-FcCacheDirsValid (FcConfig *config, FcCache *cache)
+FcCacheOffsetsValid (FcCache *cache)
 {
-    FcStrSet *dirs = FcStrSetCreate ();
-    FcBool ret = FcFalse;
-    const FcChar8 *sysroot = FcConfigGetSysRoot (config);
-    FcChar8 *d;
+    char               *base = (char *)cache;
+    char               *end = base + cache->size;
+    intptr_t           *dirs;
+    FcFontSet          *fs;
+    int                         i, j;
+
+    if (cache->dir < 0 || cache->dir > cache->size - sizeof (intptr_t) ||
+        memchr (base + cache->dir, '\0', cache->size - cache->dir) == NULL)
+        return FcFalse;
 
-    if (!dirs)
-       goto bail;
-    if (sysroot)
-       d = FcStrBuildFilename (sysroot, FcCacheDir (cache), NULL);
-    else
-       d = FcStrdup (FcCacheDir (cache));
-    if (!FcDirScanOnly (dirs, d, config))
-       goto bail1;
-    ret = cache->dirs_count == dirs->num;
-    if (FcDebug () & FC_DBG_CACHE)
-       printf ("%s: cache: %d, fs: %d\n", d, cache->dirs_count, dirs->num);
+    if (cache->dirs < 0 || cache->dirs >= cache->size ||
+        cache->dirs_count < 0 ||
+        cache->dirs_count > (cache->size - cache->dirs) / sizeof (intptr_t))
+        return FcFalse;
 
-bail1:
-    FcStrSetDestroy (dirs);
-    FcStrFree (d);
-bail:
-    return ret;
+    dirs = FcCacheDirs (cache);
+    if (dirs)
+    {
+        for (i = 0; i < cache->dirs_count; i++)
+        {
+            FcChar8    *dir;
+
+            if (dirs[i] < 0 ||
+                dirs[i] > end - (char *) dirs - sizeof (intptr_t))
+                return FcFalse;
+
+            dir = FcOffsetToPtr (dirs, dirs[i], FcChar8);
+            if (memchr (dir, '\0', end - (char *) dir) == NULL)
+                return FcFalse;
+         }
+    }
+
+    if (cache->set < 0 || cache->set > cache->size - sizeof (FcFontSet))
+        return FcFalse;
+
+    fs = FcCacheSet (cache);
+    if (fs)
+    {
+        if (fs->nfont > (end - (char *) fs) / sizeof (FcPattern))
+            return FcFalse;
+
+        if (fs->fonts != 0 && !FcIsEncodedOffset(fs->fonts))
+            return FcFalse;
+
+        for (i = 0; i < fs->nfont; i++)
+        {
+            FcPattern          *font = FcFontSetFont (fs, i);
+            FcPatternElt       *e;
+            FcValueListPtr      l;
+
+            if ((char *) font < base ||
+                (char *) font > end - sizeof (FcFontSet) ||
+                font->elts_offset < 0 ||
+                font->elts_offset > end - (char *) font ||
+                font->num > (end - (char *) font - font->elts_offset) / sizeof (FcPatternElt))
+                return FcFalse;
+
+
+            e = FcPatternElts(font);
+            if (e->values != 0 && !FcIsEncodedOffset(e->values))
+                return FcFalse;
+
+            for (j = font->num, l = FcPatternEltValues(e); j >= 0 && l; j--, l = FcValueListNext(l))
+                if (l->next != NULL && !FcIsEncodedOffset(l->next))
+                    break;
+            if (j < 0)
+                return FcFalse;
+        }
+    }
+
+    return FcTrue;
 }
 
 /*
@@ -600,13 +673,13 @@ FcDirCacheMapFd (FcConfig *config, int fd, struct stat *fd_stat, struct stat *di
     FcCache    *cache;
     FcBool     allocated = FcFalse;
 
-    if (fd_stat->st_size < (int) sizeof (FcCache))
+    if (fd_stat->st_size > INTPTR_MAX ||
+        fd_stat->st_size < (int) sizeof (FcCache))
        return NULL;
     cache = FcCacheFindByStat (fd_stat);
     if (cache)
     {
-       if (FcCacheTimeValid (config, cache, dir_stat) &&
-           FcCacheDirsValid (config, cache))
+       if (FcCacheTimeValid (config, cache, dir_stat))
            return cache;
        FcDirCacheUnload (cache);
        cache = NULL;
@@ -655,10 +728,10 @@ FcDirCacheMapFd (FcConfig *config, int fd, struct stat *fd_stat, struct stat *di
        allocated = FcTrue;
     }
     if (cache->magic != FC_CACHE_MAGIC_MMAP ||
-       cache->version < FC_CACHE_CONTENT_VERSION ||
+       cache->version < FC_CACHE_VERSION_NUMBER ||
        cache->size != (intptr_t) fd_stat->st_size ||
+        !FcCacheOffsetsValid (cache) ||
        !FcCacheTimeValid (config, cache, dir_stat) ||
-       !FcCacheDirsValid (config, cache) ||
        !FcCacheInsert (cache, fd_stat))
     {
        if (allocated)
@@ -751,12 +824,16 @@ FcDirCacheValidateHelper (FcConfig *config, int fd, struct stat *fd_stat, struct
        ret = FcFalse;
     else if (c.magic != FC_CACHE_MAGIC_MMAP)
        ret = FcFalse;
-    else if (c.version < FC_CACHE_CONTENT_VERSION)
+    else if (c.version < FC_CACHE_VERSION_NUMBER)
        ret = FcFalse;
     else if (fd_stat->st_size != c.size)
        ret = FcFalse;
     else if (c.checksum != (int) dir_stat->st_mtime)
        ret = FcFalse;
+#ifdef HAVE_STRUCT_STAT_ST_MTIM
+    else if (c.checksum_nano != dir_stat->st_mtim.tv_nsec)
+       ret = FcFalse;
+#endif
     return ret;
 }
 
@@ -828,9 +905,12 @@ FcDirCacheBuild (FcFontSet *set, const FcChar8 *dir, struct stat *dir_stat, FcSt
     serialize->linear = cache;
 
     cache->magic = FC_CACHE_MAGIC_ALLOC;
-    cache->version = FC_CACHE_CONTENT_VERSION;
+    cache->version = FC_CACHE_VERSION_NUMBER;
     cache->size = serialize->size;
     cache->checksum = (int) dir_stat->st_mtime;
+#ifdef HAVE_STRUCT_STAT_ST_MTIM
+    cache->checksum_nano = dir_stat->st_mtim.tv_nsec;
+#endif
 
     /*
      * Serialize directory name
@@ -1018,6 +1098,11 @@ FcDirCacheWrite (FcCache *cache, FcConfig *config)
            skip->cache_dev = cache_stat.st_dev;
            skip->cache_ino = cache_stat.st_ino;
            skip->cache_mtime = cache_stat.st_mtime;
+#ifdef HAVE_STRUCT_STAT_ST_MTIM
+           skip->cache_mtime_nano = cache_stat.st_mtim.tv_nsec;
+#else
+           skip->cache_mtime_nano = 0;
+#endif
        }
        unlock_cache ();
     }
@@ -1142,6 +1227,82 @@ FcDirCacheClean (const FcChar8 *cache_dir, FcBool verbose)
     return ret;
 }
 
+int
+FcDirCacheLock (const FcChar8 *dir,
+               FcConfig      *config)
+{
+    FcChar8 *cache_hashed = NULL;
+    FcChar8 cache_base[CACHEBASE_LEN];
+    FcStrList *list;
+    FcChar8 *cache_dir;
+    const FcChar8 *sysroot = FcConfigGetSysRoot (config);
+    int fd = -1;
+
+    FcDirCacheBasename (dir, cache_base);
+    list = FcStrListCreate (config->cacheDirs);
+    if (!list)
+       return -1;
+
+    while ((cache_dir = FcStrListNext (list)))
+    {
+       if (sysroot)
+           cache_hashed = FcStrBuildFilename (sysroot, cache_dir, cache_base, NULL);
+       else
+           cache_hashed = FcStrBuildFilename (cache_dir, cache_base, NULL);
+       if (!cache_hashed)
+           break;
+       fd = FcOpen ((const char *)cache_hashed, O_RDWR);
+       FcStrFree (cache_hashed);
+       /* No caches in that directory. simply retry with another one */
+       if (fd != -1)
+       {
+#if defined(_WIN32)
+           if (_locking (fd, _LK_LOCK, 1) == -1)
+               goto bail;
+#else
+           struct flock fl;
+
+           fl.l_type = F_WRLCK;
+           fl.l_whence = SEEK_SET;
+           fl.l_start = 0;
+           fl.l_len = 0;
+           fl.l_pid = getpid ();
+           if (fcntl (fd, F_SETLKW, &fl) == -1)
+               goto bail;
+#endif
+           break;
+       }
+    }
+    FcStrListDone (list);
+    return fd;
+bail:
+    FcStrListDone (list);
+    if (fd != -1)
+       close (fd);
+    return -1;
+}
+
+void
+FcDirCacheUnlock (int fd)
+{
+    if (fd != -1)
+    {
+#if defined(_WIN32)
+       _locking (fd, _LK_UNLCK, 1);
+#else
+       struct flock fl;
+
+       fl.l_type = F_UNLCK;
+       fl.l_whence = SEEK_SET;
+       fl.l_start = 0;
+       fl.l_len = 0;
+       fl.l_pid = getpid ();
+       fcntl (fd, F_SETLK, &fl);
+#endif
+       close (fd);
+    }
+}
+
 /*
  * Hokey little macro trick to permit the definitions of C functions
  * with the same name as CPP macros