Skip subdirs when skipping over stale bits of global cache. Introduce state
machine into FcGlobalCacheDir to avoid doing inappropriate operations on global dir entries, e.g. writing out an out-of-date cache entry. reviewed by: plam
This commit is contained in:
parent
98592bbb1d
commit
fff5a5af30
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
||||||
|
2006-02-06 Takashi Iwai <tiwai@suse.de>
|
||||||
|
reviewed by: plam
|
||||||
|
* src/fccache.c (FcGlobalCacheLoad, FcGlobalCacheReadDir,
|
||||||
|
FcGlobalCacheDirFind, FcGlobalCacheUpdate,
|
||||||
|
FcGlobalCacheSave, FcCacheReadDirs):
|
||||||
|
* src/fcint.h:
|
||||||
|
|
||||||
|
Skip subdirs when skipping over stale bits of global cache.
|
||||||
|
Introduce state machine into FcGlobalCacheDir to avoid
|
||||||
|
doing inappropriate operations on global dir entries, e.g.
|
||||||
|
writing out an out-of-date cache entry.
|
||||||
|
|
||||||
2006-02-06 Takashi Iwai <tiwai@suse.de>
|
2006-02-06 Takashi Iwai <tiwai@suse.de>
|
||||||
reviewed by: plam
|
reviewed by: plam
|
||||||
* src/fcdir.c (FcFileScanConfig):
|
* src/fcdir.c (FcFileScanConfig):
|
||||||
|
|
186
src/fccache.c
186
src/fccache.c
|
@ -254,13 +254,21 @@ FcGlobalCacheLoad (FcGlobalCache *cache,
|
||||||
off_t off;
|
off_t off;
|
||||||
|
|
||||||
FcStrSetAdd (staleDirs, FcStrCopy ((FcChar8 *)name_buf));
|
FcStrSetAdd (staleDirs, FcStrCopy ((FcChar8 *)name_buf));
|
||||||
|
|
||||||
|
/* skip subdirs */
|
||||||
|
while (FcCacheReadString (cache->fd, subdirName,
|
||||||
|
sizeof (subdirName)) &&
|
||||||
|
strlen (subdirName))
|
||||||
|
;
|
||||||
|
|
||||||
if (read (cache->fd, &md, sizeof (FcCache)) != sizeof(FcCache))
|
if (read (cache->fd, &md, sizeof (FcCache)) != sizeof(FcCache))
|
||||||
{
|
{
|
||||||
perror ("read metadata");
|
perror ("read metadata");
|
||||||
goto bail1;
|
goto bail1;
|
||||||
}
|
}
|
||||||
off = FcCacheNextOffset (lseek(cache->fd, 0, SEEK_CUR)) + md.count;
|
off = FcCacheNextOffset (lseek(cache->fd, 0, SEEK_CUR)) + md.count;
|
||||||
if (lseek (cache->fd, off, SEEK_SET) != off) {
|
if (lseek (cache->fd, off, SEEK_SET) != off)
|
||||||
|
{
|
||||||
perror ("lseek");
|
perror ("lseek");
|
||||||
goto bail1;
|
goto bail1;
|
||||||
}
|
}
|
||||||
|
@ -276,6 +284,7 @@ FcGlobalCacheLoad (FcGlobalCache *cache,
|
||||||
|
|
||||||
d->name = (char *)FcStrCopy ((FcChar8 *)name_buf);
|
d->name = (char *)FcStrCopy ((FcChar8 *)name_buf);
|
||||||
d->ent = 0;
|
d->ent = 0;
|
||||||
|
d->state = FcGCDirFileRead;
|
||||||
|
|
||||||
d->subdirs = FcStrSetCreate();
|
d->subdirs = FcStrSetCreate();
|
||||||
do
|
do
|
||||||
|
@ -323,7 +332,6 @@ FcBool
|
||||||
FcGlobalCacheReadDir (FcFontSet *set, FcStrSet *dirs, FcGlobalCache * cache, const char *dir, FcConfig *config)
|
FcGlobalCacheReadDir (FcFontSet *set, FcStrSet *dirs, FcGlobalCache * cache, const char *dir, FcConfig *config)
|
||||||
{
|
{
|
||||||
FcGlobalCacheDir *d;
|
FcGlobalCacheDir *d;
|
||||||
FcBool ret = FcFalse;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (cache->fd == -1)
|
if (cache->fd == -1)
|
||||||
|
@ -334,42 +342,64 @@ FcGlobalCacheReadDir (FcFontSet *set, FcStrSet *dirs, FcGlobalCache * cache, con
|
||||||
|
|
||||||
for (d = cache->dirs; d; d = d->next)
|
for (d = cache->dirs; d; d = d->next)
|
||||||
{
|
{
|
||||||
if (strncmp (d->name, dir, strlen(dir)) == 0)
|
if (strcmp (d->name, dir) == 0)
|
||||||
{
|
{
|
||||||
lseek (cache->fd, d->offset, SEEK_SET);
|
if (d->state == FcGCDirDisabled)
|
||||||
if (!FcDirCacheConsume (cache->fd, d->name, set, config))
|
|
||||||
return FcFalse;
|
return FcFalse;
|
||||||
|
|
||||||
if (strcmp (d->name, dir) == 0)
|
if (d->state == FcGCDirFileRead)
|
||||||
{
|
{
|
||||||
|
lseek (cache->fd, d->offset, SEEK_SET);
|
||||||
|
if (!FcDirCacheConsume (cache->fd, d->name, set, config))
|
||||||
|
return FcFalse;
|
||||||
|
|
||||||
for (i = 0; i < d->subdirs->num; i++)
|
for (i = 0; i < d->subdirs->num; i++)
|
||||||
FcStrSetAdd (dirs, (FcChar8 *)d->subdirs->strs[i]);
|
FcStrSetAdd (dirs, (FcChar8 *)d->subdirs->strs[i]);
|
||||||
|
|
||||||
ret = FcTrue;
|
d->state = FcGCDirConsumed;
|
||||||
}
|
}
|
||||||
|
return FcTrue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return FcFalse;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static FcGlobalCacheDir *
|
||||||
|
FcGlobalCacheDirFind (FcGlobalCache *cache, const char *name)
|
||||||
|
{
|
||||||
|
FcGlobalCacheDir * d;
|
||||||
|
|
||||||
|
if (!cache || !name)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
for (d = cache->dirs; d; d = d->next)
|
||||||
|
if (strcmp((const char *)d->name, (const char *)name) == 0)
|
||||||
|
return d;
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
FcBool
|
FcBool
|
||||||
FcGlobalCacheUpdate (FcGlobalCache *cache,
|
FcGlobalCacheUpdate (FcGlobalCache *cache,
|
||||||
FcStrSet *dirs,
|
FcStrSet *dirs,
|
||||||
const char *name,
|
const char *orig_name,
|
||||||
FcFontSet *set,
|
FcFontSet *set,
|
||||||
FcConfig *config)
|
FcConfig *config)
|
||||||
{
|
{
|
||||||
FcGlobalCacheDir *d;
|
FcGlobalCacheDir *d;
|
||||||
int i;
|
int i;
|
||||||
|
const char *name;
|
||||||
|
|
||||||
name = (char *)FcConfigNormalizeFontDir (config, (FcChar8 *)name);
|
name = (char *)FcConfigNormalizeFontDir (config, (FcChar8 *)orig_name);
|
||||||
for (d = cache->dirs; d; d = d->next)
|
if (!name)
|
||||||
{
|
{
|
||||||
if (strcmp(d->name, name) == 0)
|
fprintf(stderr, "Invalid directory name %s\n", orig_name);
|
||||||
break;
|
return FcFalse;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
d = FcGlobalCacheDirFind (cache, name);
|
||||||
|
|
||||||
if (!d)
|
if (!d)
|
||||||
{
|
{
|
||||||
d = malloc (sizeof (FcGlobalCacheDir));
|
d = malloc (sizeof (FcGlobalCacheDir));
|
||||||
|
@ -377,6 +407,11 @@ FcGlobalCacheUpdate (FcGlobalCache *cache,
|
||||||
return FcFalse;
|
return FcFalse;
|
||||||
d->next = cache->dirs;
|
d->next = cache->dirs;
|
||||||
cache->dirs = d;
|
cache->dirs = d;
|
||||||
|
} else {
|
||||||
|
/* free old resources */
|
||||||
|
FcStrFree ((FcChar8 *)d->name);
|
||||||
|
free (d->ent);
|
||||||
|
FcStrSetDestroy (d->subdirs);
|
||||||
}
|
}
|
||||||
|
|
||||||
cache->updated = FcTrue;
|
cache->updated = FcTrue;
|
||||||
|
@ -385,6 +420,7 @@ FcGlobalCacheUpdate (FcGlobalCache *cache,
|
||||||
d->ent = FcDirCacheProduce (set, &d->metadata);
|
d->ent = FcDirCacheProduce (set, &d->metadata);
|
||||||
d->offset = 0;
|
d->offset = 0;
|
||||||
d->subdirs = FcStrSetCreate();
|
d->subdirs = FcStrSetCreate();
|
||||||
|
d->state = FcGCDirUpdated;
|
||||||
for (i = 0; i < dirs->num; i++)
|
for (i = 0; i < dirs->num; i++)
|
||||||
FcStrSetAdd (d->subdirs, dirs->strs[i]);
|
FcStrSetAdd (d->subdirs, dirs->strs[i]);
|
||||||
return FcTrue;
|
return FcTrue;
|
||||||
|
@ -442,9 +478,6 @@ FcGlobalCacheSave (FcGlobalCache *cache,
|
||||||
if (!FcCacheCopyOld(fd, fd_orig, current_arch_start))
|
if (!FcCacheCopyOld(fd, fd_orig, current_arch_start))
|
||||||
goto bail3;
|
goto bail3;
|
||||||
|
|
||||||
close (fd_orig);
|
|
||||||
fd_orig = -1;
|
|
||||||
|
|
||||||
current_arch_start = lseek(fd, 0, SEEK_CUR);
|
current_arch_start = lseek(fd, 0, SEEK_CUR);
|
||||||
if (ftruncate (fd, current_arch_start) == -1)
|
if (ftruncate (fd, current_arch_start) == -1)
|
||||||
goto bail3;
|
goto bail3;
|
||||||
|
@ -456,6 +489,8 @@ FcGlobalCacheSave (FcGlobalCache *cache,
|
||||||
truncate_to = current_arch_start + strlen(current_arch_machine_name) + 11;
|
truncate_to = current_arch_start + strlen(current_arch_machine_name) + 11;
|
||||||
for (dir = cache->dirs; dir; dir = dir->next)
|
for (dir = cache->dirs; dir; dir = dir->next)
|
||||||
{
|
{
|
||||||
|
if (dir->state == FcGCDirDisabled)
|
||||||
|
continue;
|
||||||
truncate_to += strlen(dir->name) + 1;
|
truncate_to += strlen(dir->name) + 1;
|
||||||
truncate_to += sizeof (FcCache);
|
truncate_to += sizeof (FcCache);
|
||||||
truncate_to = FcCacheNextOffset (truncate_to);
|
truncate_to = FcCacheNextOffset (truncate_to);
|
||||||
|
@ -474,43 +509,82 @@ FcGlobalCacheSave (FcGlobalCache *cache,
|
||||||
|
|
||||||
for (dir = cache->dirs; dir; dir = dir->next)
|
for (dir = cache->dirs; dir; dir = dir->next)
|
||||||
{
|
{
|
||||||
if (dir->name)
|
const char * d;
|
||||||
{
|
off_t off;
|
||||||
const char * d = (const char *)FcConfigNormalizeFontDir (config, (const FcChar8 *)dir->name);
|
|
||||||
off_t off;
|
|
||||||
|
|
||||||
FcCacheWriteString (fd, d);
|
if (!dir->name || dir->state == FcGCDirDisabled)
|
||||||
|
continue;
|
||||||
for (i = 0; i < dir->subdirs->size; i++)
|
d = (const char *)FcConfigNormalizeFontDir (config, (const FcChar8 *)dir->name);
|
||||||
FcCacheWriteString (fd, (char *)dir->subdirs->strs[i]);
|
if (!d)
|
||||||
FcCacheWriteString (fd, "");
|
continue;
|
||||||
|
|
||||||
if (write (fd, &dir->metadata, sizeof(FcCache)) != sizeof(FcCache))
|
if (dir->metadata.count && !dir->ent)
|
||||||
|
{
|
||||||
|
if (dir->state == FcGCDirUpdated || fd_orig < 0)
|
||||||
{
|
{
|
||||||
perror ("write metadata");
|
fprintf(stderr, "Invalid metadata entry for %s, skipping...\n", d);
|
||||||
free (dir->ent);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
off = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
|
/* copy the old content */
|
||||||
if (lseek (fd, off, SEEK_SET) != off)
|
dir->ent = malloc (dir->metadata.count);
|
||||||
|
if (!dir->ent)
|
||||||
{
|
{
|
||||||
perror ("lseek");
|
perror("malloc error");
|
||||||
free (dir->ent);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
off = FcCacheNextOffset (dir->offset + sizeof(FcCache));
|
||||||
|
if (lseek (fd_orig, off, SEEK_SET) != off)
|
||||||
|
{
|
||||||
|
perror("lseek");
|
||||||
|
free(dir->ent);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (read (fd_orig, dir->ent, dir->metadata.count)
|
||||||
|
!= dir->metadata.count)
|
||||||
|
{
|
||||||
|
perror("read");
|
||||||
|
free(dir->ent);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
FcCacheWriteString (fd, d);
|
||||||
|
|
||||||
|
for (i = 0; i < dir->subdirs->size; i++)
|
||||||
|
FcCacheWriteString (fd, (char *)dir->subdirs->strs[i]);
|
||||||
|
FcCacheWriteString (fd, "");
|
||||||
|
|
||||||
|
if (write (fd, &dir->metadata, sizeof(FcCache)) != sizeof(FcCache))
|
||||||
|
{
|
||||||
|
perror ("write metadata");
|
||||||
|
free (dir->ent);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
off = FcCacheNextOffset (lseek(fd, 0, SEEK_CUR));
|
||||||
|
if (lseek (fd, off, SEEK_SET) != off)
|
||||||
|
{
|
||||||
|
perror ("lseek");
|
||||||
|
free (dir->ent);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (dir->metadata.count)
|
||||||
|
{
|
||||||
if (write (fd, dir->ent, dir->metadata.count) != dir->metadata.count)
|
if (write (fd, dir->ent, dir->metadata.count) != dir->metadata.count)
|
||||||
{
|
{
|
||||||
perror ("write dirent");
|
perror ("write dirent");
|
||||||
free (dir->ent);
|
free (dir->ent);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
free (dir->ent);
|
|
||||||
}
|
}
|
||||||
|
free (dir->ent);
|
||||||
}
|
}
|
||||||
FcCacheWriteString (fd, "");
|
FcCacheWriteString (fd, "");
|
||||||
|
|
||||||
if (close (fd) == -1)
|
if (close (fd) == -1)
|
||||||
goto bail25;
|
goto bail25;
|
||||||
|
|
||||||
|
close (fd_orig);
|
||||||
|
fd_orig = -1;
|
||||||
|
|
||||||
if (!FcAtomicReplaceOrig (atomic))
|
if (!FcAtomicReplaceOrig (atomic))
|
||||||
goto bail25;
|
goto bail25;
|
||||||
|
@ -793,10 +867,11 @@ FcCacheReadDirs (FcConfig * config, FcGlobalCache * cache,
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
FcChar8 *dir;
|
FcChar8 *dir;
|
||||||
FcChar8 *file, *base;
|
const FcChar8 *name;
|
||||||
FcStrSet *subdirs;
|
FcStrSet *subdirs;
|
||||||
FcStrList *sublist;
|
FcStrList *sublist;
|
||||||
struct stat statb;
|
struct stat statb;
|
||||||
|
FcGlobalCacheDir *d;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Read in the results from 'list'.
|
* Read in the results from 'list'.
|
||||||
|
@ -806,21 +881,22 @@ FcCacheReadDirs (FcConfig * config, FcGlobalCache * cache,
|
||||||
if (!FcConfigAcceptFilename (config, dir))
|
if (!FcConfigAcceptFilename (config, dir))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* freed below */
|
/* Skip this directory if already updated
|
||||||
file = (FcChar8 *) malloc (strlen ((char *) dir) + 1 + FC_MAX_FILE_LEN + 1);
|
* to avoid the looped directories via symlinks
|
||||||
if (!file)
|
*/
|
||||||
return FcFalse;
|
name = FcConfigNormalizeFontDir (config, dir);
|
||||||
|
if (name)
|
||||||
strcpy ((char *) file, (char *) dir);
|
{
|
||||||
strcat ((char *) file, "/");
|
if ((d = FcGlobalCacheDirFind (cache, (const char *)name)) != NULL &&
|
||||||
base = file + strlen ((char *) file);
|
d->state == FcGCDirUpdated)
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
subdirs = FcStrSetCreate ();
|
subdirs = FcStrSetCreate ();
|
||||||
if (!subdirs)
|
if (!subdirs)
|
||||||
{
|
{
|
||||||
fprintf (stderr, "Can't create directory set\n");
|
fprintf (stderr, "Can't create directory set\n");
|
||||||
ret++;
|
ret++;
|
||||||
free (file);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -837,7 +913,6 @@ FcCacheReadDirs (FcConfig * config, FcGlobalCache * cache,
|
||||||
ret++;
|
ret++;
|
||||||
}
|
}
|
||||||
FcStrSetDestroy (subdirs);
|
FcStrSetDestroy (subdirs);
|
||||||
free (file);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (stat ((char *) dir, &statb) == -1)
|
if (stat ((char *) dir, &statb) == -1)
|
||||||
|
@ -846,17 +921,25 @@ FcCacheReadDirs (FcConfig * config, FcGlobalCache * cache,
|
||||||
perror ("");
|
perror ("");
|
||||||
FcStrSetDestroy (subdirs);
|
FcStrSetDestroy (subdirs);
|
||||||
ret++;
|
ret++;
|
||||||
free (file);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (!S_ISDIR (statb.st_mode))
|
if (!S_ISDIR (statb.st_mode))
|
||||||
{
|
{
|
||||||
fprintf (stderr, "\"%s\": not a directory, skipping\n", dir);
|
fprintf (stderr, "\"%s\": not a directory, skipping\n", dir);
|
||||||
FcStrSetDestroy (subdirs);
|
FcStrSetDestroy (subdirs);
|
||||||
free (file);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (!FcDirCacheValid (dir) || !FcDirCacheRead (set, subdirs, dir, config))
|
if (FcDirCacheValid (dir) && FcDirCacheRead (set, subdirs, dir, config))
|
||||||
|
{
|
||||||
|
/* if an old entry is found in the global cache, disable it */
|
||||||
|
if ((d = FcGlobalCacheDirFind (cache, (const char *)name)) != NULL)
|
||||||
|
{
|
||||||
|
d->state = FcGCDirDisabled;
|
||||||
|
/* save the updated config later without this entry */
|
||||||
|
cache->updated = FcTrue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
if (FcDebug () & FC_DBG_FONTSET)
|
if (FcDebug () & FC_DBG_FONTSET)
|
||||||
printf ("cache scan dir %s\n", dir);
|
printf ("cache scan dir %s\n", dir);
|
||||||
|
@ -870,11 +953,9 @@ FcCacheReadDirs (FcConfig * config, FcGlobalCache * cache,
|
||||||
{
|
{
|
||||||
fprintf (stderr, "Can't create subdir list in \"%s\"\n", dir);
|
fprintf (stderr, "Can't create subdir list in \"%s\"\n", dir);
|
||||||
ret++;
|
ret++;
|
||||||
free (file);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
ret += FcCacheReadDirs (config, cache, sublist, set);
|
ret += FcCacheReadDirs (config, cache, sublist, set);
|
||||||
free (file);
|
|
||||||
}
|
}
|
||||||
FcStrListDone (list);
|
FcStrListDone (list);
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -1265,7 +1346,8 @@ FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir)
|
||||||
FcCacheWriteString (fd, (char *)dirs->strs[i]);
|
FcCacheWriteString (fd, (char *)dirs->strs[i]);
|
||||||
FcCacheWriteString (fd, "");
|
FcCacheWriteString (fd, "");
|
||||||
|
|
||||||
if (write (fd, &metadata, sizeof(FcCache)) != sizeof(FcCache)) {
|
if (write (fd, &metadata, sizeof(FcCache)) != sizeof(FcCache))
|
||||||
|
{
|
||||||
perror("write metadata");
|
perror("write metadata");
|
||||||
goto bail5;
|
goto bail5;
|
||||||
}
|
}
|
||||||
|
|
|
@ -328,6 +328,9 @@ typedef struct _FcCaseFold {
|
||||||
|
|
||||||
typedef struct _FcGlobalCacheDir FcGlobalCacheDir;
|
typedef struct _FcGlobalCacheDir FcGlobalCacheDir;
|
||||||
|
|
||||||
|
enum FcGCDirState {
|
||||||
|
FcGCDirDisabled, FcGCDirFileRead, FcGCDirConsumed, FcGCDirUpdated
|
||||||
|
};
|
||||||
struct _FcGlobalCacheDir {
|
struct _FcGlobalCacheDir {
|
||||||
struct _FcGlobalCacheDir *next;
|
struct _FcGlobalCacheDir *next;
|
||||||
char *name;
|
char *name;
|
||||||
|
@ -335,6 +338,7 @@ struct _FcGlobalCacheDir {
|
||||||
off_t offset;
|
off_t offset;
|
||||||
FcStrSet *subdirs;
|
FcStrSet *subdirs;
|
||||||
void *ent;
|
void *ent;
|
||||||
|
enum FcGCDirState state;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct _FcGlobalCache {
|
typedef struct _FcGlobalCache {
|
||||||
|
|
Loading…
Reference in New Issue