Updates for new fdb code
This commit is contained in:
parent
75b991af56
commit
7aa6f678c2
19
lib/dbfdb.c
19
lib/dbfdb.c
@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Open files database Area number, with path. Do some checks and abort
|
* Open files database Area number. Do some checks and abort
|
||||||
* if they fail.
|
* if they fail.
|
||||||
*/
|
*/
|
||||||
struct _fdbarea *mbsedb_OpenFDB(long Area, int Timeout)
|
struct _fdbarea *mbsedb_OpenFDB(long Area, int Timeout)
|
||||||
@ -68,12 +68,27 @@ struct _fdbarea *mbsedb_OpenFDB(long Area, int Timeout)
|
|||||||
msleep(250);
|
msleep(250);
|
||||||
Syslog('f', "Open file area %ld, try %d", Area, Tries);
|
Syslog('f', "Open file area %ld, try %d", Area, Tries);
|
||||||
}
|
}
|
||||||
|
if (fp == NULL) {
|
||||||
|
if (errno == ENOENT) {
|
||||||
|
Syslog('+', "Create empty FDB for area %ld", Area);
|
||||||
|
fdbhdr.hdrsize = sizeof(fdbhdr);
|
||||||
|
fdbhdr.recsize = sizeof(fdb);
|
||||||
|
if ((fp = fopen(temp, "w+"))) {
|
||||||
|
fwrite(&fdbhdr, sizeof(fdbhdr), 1, fp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
fread(&fdbhdr, sizeof(fdbhdr), 1, fp);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If still not open, it's fatal.
|
||||||
|
*/
|
||||||
if (fp == NULL) {
|
if (fp == NULL) {
|
||||||
WriteError("$Can't open %s", temp);
|
WriteError("$Can't open %s", temp);
|
||||||
free(temp);
|
free(temp);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
fread(&fdbhdr, sizeof(fdbhdr), 1, fp);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Fix attributes if needed
|
* Fix attributes if needed
|
||||||
|
@ -200,9 +200,8 @@ void Check(long AreaNr)
|
|||||||
|
|
||||||
void CheckArea(long Area)
|
void CheckArea(long Area)
|
||||||
{
|
{
|
||||||
FILE *pFile;
|
|
||||||
int j, Fix, inArea, rc;
|
int j, Fix, inArea, rc;
|
||||||
char *fAreas, *newdir, *temp, *mname, *tname;
|
char *newdir, *temp, *mname, *tname;
|
||||||
DIR *dp;
|
DIR *dp;
|
||||||
struct dirent *de;
|
struct dirent *de;
|
||||||
int Found, Update;
|
int Found, Update;
|
||||||
@ -210,8 +209,14 @@ void CheckArea(long Area)
|
|||||||
struct stat stb;
|
struct stat stb;
|
||||||
struct passwd *pw;
|
struct passwd *pw;
|
||||||
struct group *gr;
|
struct group *gr;
|
||||||
|
#ifdef USE_EXPERIMENT
|
||||||
|
struct _fdbarea *fdb_area = NULL;
|
||||||
|
#else
|
||||||
|
FILE *pFile;
|
||||||
|
char *fAreas;
|
||||||
|
|
||||||
fAreas = calloc(PATH_MAX, sizeof(char));
|
fAreas = calloc(PATH_MAX, sizeof(char));
|
||||||
|
#endif
|
||||||
newdir = calloc(PATH_MAX, sizeof(char));
|
newdir = calloc(PATH_MAX, sizeof(char));
|
||||||
temp = calloc(PATH_MAX, sizeof(char));
|
temp = calloc(PATH_MAX, sizeof(char));
|
||||||
mname = calloc(PATH_MAX, sizeof(char));
|
mname = calloc(PATH_MAX, sizeof(char));
|
||||||
@ -289,282 +294,334 @@ void CheckArea(long Area)
|
|||||||
WriteError("Can't stat %s", area.Path);
|
WriteError("Can't stat %s", area.Path);
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf(fAreas, "%s/fdb/file%ld.data", getenv("MBSE_ROOT"), Area);
|
#ifdef USE_EXPERIMENT
|
||||||
|
if ((fdb_area = mbsedb_OpenFDB(Area, 30)) == NULL)
|
||||||
|
return;
|
||||||
|
#else
|
||||||
|
sprintf(fAreas, "%s/fdb/file%ld.data", getenv("MBSE_ROOT"), Area);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Open the file database, if it doesn't exist,
|
||||||
|
* create an empty one.
|
||||||
|
*/
|
||||||
|
if ((pFile = fopen(fAreas, "r+")) == NULL) {
|
||||||
|
Syslog('!', "Creating new %s", fAreas);
|
||||||
|
if ((pFile = fopen(fAreas, "a+")) == NULL) {
|
||||||
|
WriteError("$Can't create %s", fAreas);
|
||||||
|
die(MBERR_GENERAL);
|
||||||
|
}
|
||||||
|
fdbhdr.hdrsize = sizeof(fdbhdr);
|
||||||
|
fdbhdr.recsize = sizeof(fdb);
|
||||||
|
fwrite(&fdbhdr, sizeof(fdbhdr), 1, pFile);
|
||||||
|
} else {
|
||||||
|
fread(&fdbhdr, sizeof(fdbhdr), 1, pFile);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We don't do any upgrade, so the header must be correct.
|
||||||
|
*/
|
||||||
|
if (fdbhdr.hdrsize != sizeof(fdbhdr)) {
|
||||||
|
Syslog('+', "fAreas hdrsize is corrupt: %d", fdbhdr.hdrsize);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (fdbhdr.recsize != sizeof(fdb)) {
|
||||||
|
Syslog('+', "fAreas recordsize is corrupt: %d, expected %d", fdbhdr.recsize, sizeof(fdbhdr));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Now start checking the files in the filedatabase
|
||||||
|
* against the contents of the directory.
|
||||||
|
*/
|
||||||
|
inArea = 0;
|
||||||
|
#ifdef USE_EXPERIMENT
|
||||||
|
while (fread(&fdb, fdbhdr.recsize, 1, fdb_area->fp) == 1) {
|
||||||
|
#else
|
||||||
|
while (fread(&fdb, fdbhdr.recsize, 1, pFile) == 1) {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
iTotal++;
|
||||||
|
inArea++;
|
||||||
|
sprintf(newdir, "%s/%s", area.Path, fdb.LName);
|
||||||
|
sprintf(mname, "%s/%s", area.Path, fdb.Name);
|
||||||
|
|
||||||
|
if (file_exist(newdir, R_OK) && file_exist(mname, R_OK)) {
|
||||||
|
Syslog('+', "File %s area %ld not on disk.", newdir, Area);
|
||||||
|
if (!fdb.NoKill) {
|
||||||
|
fdb.Deleted = TRUE;
|
||||||
|
do_pack = TRUE;
|
||||||
|
}
|
||||||
|
iErrors++;
|
||||||
|
#ifdef USE_EXPERIMENT
|
||||||
|
if (mbsedb_LockFDB(fdb_area, 30)) {
|
||||||
|
fseek(fdb_area->fp, - fdbhdr.recsize, SEEK_CUR);
|
||||||
|
fwrite(&fdb, fdbhdr.recsize, 1, fdb_area->fp);
|
||||||
|
mbsedb_UnlockFDB(fdb_area);
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
fseek(pFile, - fdbhdr.recsize, SEEK_CUR);
|
||||||
|
fwrite(&fdb, fdbhdr.recsize, 1, pFile);
|
||||||
|
#endif
|
||||||
|
} else {
|
||||||
|
/*
|
||||||
|
* File exists, now check the file.
|
||||||
|
*/
|
||||||
|
Marker();
|
||||||
|
Update = FALSE;
|
||||||
|
|
||||||
|
strcpy(temp, fdb.LName);
|
||||||
|
name_mangle(temp);
|
||||||
|
sprintf(mname, "%s/%s", area.Path, temp);
|
||||||
|
if (strcmp(fdb.Name, temp)) {
|
||||||
|
Syslog('!', "Converted %s to %s", fdb.Name, temp);
|
||||||
|
tname = calloc(PATH_MAX, sizeof(char));
|
||||||
|
sprintf(tname, "%s/%s", area.Path, fdb.Name);
|
||||||
|
rename(tname, mname);
|
||||||
|
sprintf(tname, "%s/%s", area.Path, fdb.LName);
|
||||||
|
unlink(tname);
|
||||||
|
symlink(mname, tname);
|
||||||
|
free(tname);
|
||||||
|
strncpy(fdb.Name, temp, 12);
|
||||||
|
iErrors++;
|
||||||
|
Update = TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Open the file database, if it doesn't exist,
|
* If 8.3 and LFN are the same, try to rename the LFN to lowercase.
|
||||||
* create an empty one.
|
|
||||||
*/
|
*/
|
||||||
if ((pFile = fopen(fAreas, "r+")) == NULL) {
|
if (strcmp(fdb.Name, fdb.LName) == 0) {
|
||||||
Syslog('!', "Creating new %s", fAreas);
|
/*
|
||||||
if ((pFile = fopen(fAreas, "a+")) == NULL) {
|
* 8.3 and LFN are the same.
|
||||||
WriteError("$Can't create %s", fAreas);
|
*/
|
||||||
die(MBERR_GENERAL);
|
tname = calloc(PATH_MAX, sizeof(char));
|
||||||
}
|
sprintf(tname, "%s/%s", area.Path, fdb.LName);
|
||||||
fdbhdr.hdrsize = sizeof(fdbhdr);
|
for (j = 0; j < strlen(fdb.LName); j++)
|
||||||
fdbhdr.recsize = sizeof(fdb);
|
fdb.LName[j] = tolower(fdb.LName[j]);
|
||||||
fwrite(&fdbhdr, sizeof(fdbhdr), 1, pFile);
|
sprintf(newdir, "%s/%s", area.Path, fdb.LName);
|
||||||
|
if (strcmp(tname, newdir)) {
|
||||||
|
Syslog('+', "Rename LFN from %s to %s", fdb.Name, fdb.LName);
|
||||||
|
rename(tname, newdir);
|
||||||
|
Update = TRUE;
|
||||||
|
}
|
||||||
|
free(tname);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* At this point we may have (depending on the upgrade level)
|
||||||
|
* a real file with a long name or a real file with a short name
|
||||||
|
* or both. One of them may also be a symbolic link or not exist
|
||||||
|
* at all. Whatever it was, make it good.
|
||||||
|
*/
|
||||||
|
if ((lstat(newdir, &stb) == 0) && ((stb.st_mode & S_IFLNK) != S_IFLNK)) {
|
||||||
|
/*
|
||||||
|
* Long filename is a regular file and not a symbolic link.
|
||||||
|
*/
|
||||||
|
if (lstat(mname, &stb) == 0) {
|
||||||
|
/*
|
||||||
|
* 8.3 name exists, is it a real file?
|
||||||
|
*/
|
||||||
|
if ((stb.st_mode & S_IFLNK) != S_IFLNK) {
|
||||||
|
unlink(newdir);
|
||||||
|
symlink(mname, newdir);
|
||||||
|
Syslog('+', "%s changed into symbolic link", newdir);
|
||||||
|
iErrors++;
|
||||||
|
} else {
|
||||||
|
/*
|
||||||
|
* 8.3 is a symbolic link.
|
||||||
|
*/
|
||||||
|
unlink(mname);
|
||||||
|
rename(newdir, mname);
|
||||||
|
symlink(mname, newdir);
|
||||||
|
Syslog('+', "%s changed to real file", mname);
|
||||||
|
iErrors++;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/*
|
||||||
|
* No 8.3 name on disk.
|
||||||
|
*/
|
||||||
|
rename(newdir, mname);
|
||||||
|
symlink(mname, newdir);
|
||||||
|
Syslog('+', "%s changed to real file and created symbolic link", mname);
|
||||||
|
iErrors++;
|
||||||
|
}
|
||||||
|
} else if ((lstat(mname, &stb) == 0) && ((stb.st_mode & S_IFLNK) != S_IFLNK)) {
|
||||||
|
/*
|
||||||
|
* Short filename is a real file.
|
||||||
|
*/
|
||||||
|
if (lstat(newdir, &stb) == 0) {
|
||||||
|
/*
|
||||||
|
* LFN exists, is it a real file?
|
||||||
|
*/
|
||||||
|
if ((stb.st_mode & S_IFLNK) != S_IFLNK) {
|
||||||
|
/*
|
||||||
|
* LFN is a real filename too.
|
||||||
|
*/
|
||||||
|
unlink(newdir);
|
||||||
|
symlink(mname, newdir);
|
||||||
|
Syslog('+', "%s changed into symbolic link", newdir);
|
||||||
|
iErrors++;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/*
|
||||||
|
* No LFN, create symbolic link
|
||||||
|
*/
|
||||||
|
symlink(mname, newdir);
|
||||||
|
Syslog('+', "%s created symbolic link", newdir);
|
||||||
|
iErrors++;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
fread(&fdbhdr, sizeof(fdbhdr), 1, pFile);
|
/*
|
||||||
|
* Weird, could not happen
|
||||||
|
*/
|
||||||
|
Syslog('!', "Weird problem, %s is no regular file", newdir);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We don't do any upgrade, so the header must be correct.
|
* It could be that there is a thumbnail made of the LFN.
|
||||||
*/
|
*/
|
||||||
if (fdbhdr.hdrsize != sizeof(fdbhdr)) {
|
tname = calloc(PATH_MAX, sizeof(char));
|
||||||
Syslog('+', "fAreas hdrsize is corrupt: %d", fdbhdr.hdrsize);
|
sprintf(tname, "%s/.%s", area.Path, fdb.LName);
|
||||||
return;
|
if (file_exist(tname, R_OK) == 0) {
|
||||||
}
|
Syslog('+', "Removing thumbnail %s", tname);
|
||||||
if (fdbhdr.recsize != sizeof(fdb)) {
|
iErrors++;
|
||||||
Syslog('+', "fAreas recordsize is corrupt: %d, expected %d", fdbhdr.recsize, sizeof(fdbhdr));
|
unlink(tname);
|
||||||
return;
|
}
|
||||||
}
|
free(tname);
|
||||||
|
|
||||||
/*
|
|
||||||
* Now start checking the files in the filedatabase
|
|
||||||
* against the contents of the directory.
|
|
||||||
*/
|
|
||||||
inArea = 0;
|
|
||||||
while (fread(&fdb, fdbhdr.recsize, 1, pFile) == 1) {
|
|
||||||
|
|
||||||
iTotal++;
|
|
||||||
inArea++;
|
|
||||||
sprintf(newdir, "%s/%s", area.Path, fdb.LName);
|
|
||||||
sprintf(mname, "%s/%s", area.Path, fdb.Name);
|
|
||||||
|
|
||||||
if (file_exist(newdir, R_OK) && file_exist(mname, R_OK)) {
|
|
||||||
Syslog('+', "File %s area %ld not on disk.", newdir, Area);
|
|
||||||
if (!fdb.NoKill) {
|
|
||||||
fdb.Deleted = TRUE;
|
|
||||||
do_pack = TRUE;
|
|
||||||
}
|
|
||||||
iErrors++;
|
|
||||||
fseek(pFile, - fdbhdr.recsize, SEEK_CUR);
|
|
||||||
fwrite(&fdb, fdbhdr.recsize, 1, pFile);
|
|
||||||
} else {
|
|
||||||
/*
|
|
||||||
* File exists, now check the file.
|
|
||||||
*/
|
|
||||||
Marker();
|
|
||||||
Update = FALSE;
|
|
||||||
|
|
||||||
strcpy(temp, fdb.LName);
|
|
||||||
name_mangle(temp);
|
|
||||||
sprintf(mname, "%s/%s", area.Path, temp);
|
|
||||||
if (strcmp(fdb.Name, temp)) {
|
|
||||||
Syslog('!', "Converted %s to %s", fdb.Name, temp);
|
|
||||||
tname = calloc(PATH_MAX, sizeof(char));
|
|
||||||
sprintf(tname, "%s/%s", area.Path, fdb.Name);
|
|
||||||
rename(tname, mname);
|
|
||||||
sprintf(tname, "%s/%s", area.Path, fdb.LName);
|
|
||||||
unlink(tname);
|
|
||||||
symlink(mname, tname);
|
|
||||||
free(tname);
|
|
||||||
strncpy(fdb.Name, temp, 12);
|
|
||||||
iErrors++;
|
|
||||||
Update = TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* If 8.3 and LFN are the same, try to rename the LFN to lowercase.
|
|
||||||
*/
|
|
||||||
if (strcmp(fdb.Name, fdb.LName) == 0) {
|
|
||||||
/*
|
|
||||||
* 8.3 and LFN are the same.
|
|
||||||
*/
|
|
||||||
tname = calloc(PATH_MAX, sizeof(char));
|
|
||||||
sprintf(tname, "%s/%s", area.Path, fdb.LName);
|
|
||||||
for (j = 0; j < strlen(fdb.LName); j++)
|
|
||||||
fdb.LName[j] = tolower(fdb.LName[j]);
|
|
||||||
sprintf(newdir, "%s/%s", area.Path, fdb.LName);
|
|
||||||
if (strcmp(tname, newdir)) {
|
|
||||||
Syslog('+', "Rename LFN from %s to %s", fdb.Name, fdb.LName);
|
|
||||||
rename(tname, newdir);
|
|
||||||
Update = TRUE;
|
|
||||||
}
|
|
||||||
free(tname);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* At this point we may have (depending on the upgrade level)
|
|
||||||
* a real file with a long name or a real file with a short name
|
|
||||||
* or both. One of them may also be a symbolic link or not exist
|
|
||||||
* at all. Whatever it was, make it good.
|
|
||||||
*/
|
|
||||||
if ((lstat(newdir, &stb) == 0) && ((stb.st_mode & S_IFLNK) != S_IFLNK)) {
|
|
||||||
/*
|
|
||||||
* Long filename is a regular file and not a symbolic link.
|
|
||||||
*/
|
|
||||||
if (lstat(mname, &stb) == 0) {
|
|
||||||
/*
|
|
||||||
* 8.3 name exists, is it a real file?
|
|
||||||
*/
|
|
||||||
if ((stb.st_mode & S_IFLNK) != S_IFLNK) {
|
|
||||||
unlink(newdir);
|
|
||||||
symlink(mname, newdir);
|
|
||||||
Syslog('+', "%s changed into symbolic link", newdir);
|
|
||||||
iErrors++;
|
|
||||||
} else {
|
|
||||||
/*
|
|
||||||
* 8.3 is a symbolic link.
|
|
||||||
*/
|
|
||||||
unlink(mname);
|
|
||||||
rename(newdir, mname);
|
|
||||||
symlink(mname, newdir);
|
|
||||||
Syslog('+', "%s changed to real file", mname);
|
|
||||||
iErrors++;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
/*
|
|
||||||
* No 8.3 name on disk.
|
|
||||||
*/
|
|
||||||
rename(newdir, mname);
|
|
||||||
symlink(mname, newdir);
|
|
||||||
Syslog('+', "%s changed to real file and created symbolic link", mname);
|
|
||||||
iErrors++;
|
|
||||||
}
|
|
||||||
} else if ((lstat(mname, &stb) == 0) && ((stb.st_mode & S_IFLNK) != S_IFLNK)) {
|
|
||||||
/*
|
|
||||||
* Short filename is a real file.
|
|
||||||
*/
|
|
||||||
if (lstat(newdir, &stb) == 0) {
|
|
||||||
/*
|
|
||||||
* LFN exists, is it a real file?
|
|
||||||
*/
|
|
||||||
if ((stb.st_mode & S_IFLNK) != S_IFLNK) {
|
|
||||||
/*
|
|
||||||
* LFN is a real filename too.
|
|
||||||
*/
|
|
||||||
unlink(newdir);
|
|
||||||
symlink(mname, newdir);
|
|
||||||
Syslog('+', "%s changed into symbolic link", newdir);
|
|
||||||
iErrors++;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
/*
|
|
||||||
* No LFN, create symbolic link
|
|
||||||
*/
|
|
||||||
symlink(mname, newdir);
|
|
||||||
Syslog('+', "%s created symbolic link", newdir);
|
|
||||||
iErrors++;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
/*
|
|
||||||
* Weird, could not happen
|
|
||||||
*/
|
|
||||||
Syslog('!', "Weird problem, %s is no regular file", newdir);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* It could be that there is a thumbnail made of the LFN.
|
|
||||||
*/
|
|
||||||
tname = calloc(PATH_MAX, sizeof(char));
|
|
||||||
sprintf(tname, "%s/.%s", area.Path, fdb.LName);
|
|
||||||
if (file_exist(tname, R_OK) == 0) {
|
|
||||||
Syslog('+', "Removing thumbnail %s", tname);
|
|
||||||
iErrors++;
|
|
||||||
unlink(tname);
|
|
||||||
}
|
|
||||||
free(tname);
|
|
||||||
|
|
||||||
|
|
||||||
if (file_time(newdir) != fdb.FileDate) {
|
if (file_time(newdir) != fdb.FileDate) {
|
||||||
Syslog('!', "Date mismatch area %ld file %s", Area, fdb.LName);
|
Syslog('!', "Date mismatch area %ld file %s", Area, fdb.LName);
|
||||||
fdb.FileDate = file_time(newdir);
|
fdb.FileDate = file_time(newdir);
|
||||||
iErrors++;
|
iErrors++;
|
||||||
Update = TRUE;
|
Update = TRUE;
|
||||||
}
|
}
|
||||||
if (file_size(newdir) != fdb.Size) {
|
if (file_size(newdir) != fdb.Size) {
|
||||||
Syslog('!', "Size mismatch area %ld file %s", Area, fdb.LName);
|
Syslog('!', "Size mismatch area %ld file %s", Area, fdb.LName);
|
||||||
fdb.Size = file_size(newdir);
|
fdb.Size = file_size(newdir);
|
||||||
iErrors++;
|
iErrors++;
|
||||||
Update = TRUE;
|
Update = TRUE;
|
||||||
}
|
}
|
||||||
if (file_crc(newdir, CFG.slow_util && do_quiet) != fdb.Crc32) {
|
if (file_crc(newdir, CFG.slow_util && do_quiet) != fdb.Crc32) {
|
||||||
Syslog('!', "CRC error area %ld, file %s", Area, fdb.LName);
|
Syslog('!', "CRC error area %ld, file %s", Area, fdb.LName);
|
||||||
fdb.Crc32 = file_crc(newdir, CFG.slow_util && do_quiet);
|
fdb.Crc32 = file_crc(newdir, CFG.slow_util && do_quiet);
|
||||||
iErrors++;
|
iErrors++;
|
||||||
Update = TRUE;
|
Update = TRUE;
|
||||||
}
|
}
|
||||||
Marker();
|
Marker();
|
||||||
if (Update) {
|
if (Update) {
|
||||||
fseek(pFile, - fdbhdr.recsize, SEEK_CUR);
|
#ifdef USE_EXPERIMENT
|
||||||
fwrite(&fdb, fdbhdr.recsize, 1, pFile);
|
if (mbsedb_LockFDB(fdb_area, 30)) {
|
||||||
}
|
fseek(fdb_area->fp, - fdbhdr.recsize, SEEK_CUR);
|
||||||
}
|
fwrite(&fdb, fdbhdr.recsize, 1, fdb_area->fp);
|
||||||
if (strlen(fdb.Magic)) {
|
mbsedb_UnlockFDB(fdb_area);
|
||||||
rc = magic_check(fdb.Magic, fdb.Name);
|
|
||||||
if (rc == -1) {
|
|
||||||
Syslog('+', "Area %ld magic alias %s file %s is invalid", Area, fdb.Magic, fdb.Name);
|
|
||||||
memset(&fdb.Magic, 0, sizeof(fdb.Magic));
|
|
||||||
fseek(pFile, - fdbhdr.recsize, SEEK_CUR);
|
|
||||||
fwrite(&fdb, fdbhdr.recsize, 1, pFile);
|
|
||||||
iErrors++;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
fseek(pFile, - fdbhdr.recsize, SEEK_CUR);
|
||||||
|
fwrite(&fdb, fdbhdr.recsize, 1, pFile);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
if (inArea == 0)
|
}
|
||||||
Syslog('+', "Warning: area %ld (%s) is empty", Area, area.Name);
|
|
||||||
|
|
||||||
/*
|
if (strlen(fdb.Magic)) {
|
||||||
* Check files in the directory against the database.
|
rc = magic_check(fdb.Magic, fdb.Name);
|
||||||
* This test is skipped for CD-rom.
|
if (rc == -1) {
|
||||||
*/
|
Syslog('+', "Area %ld magic alias %s file %s is invalid", Area, fdb.Magic, fdb.Name);
|
||||||
if (!area.CDrom) {
|
memset(&fdb.Magic, 0, sizeof(fdb.Magic));
|
||||||
if ((dp = opendir(area.Path)) != NULL) {
|
#ifdef USE_EXPERIMENT
|
||||||
while ((de = readdir(dp)) != NULL) {
|
if (mbsedb_LockFDB(fdb_area, 30)) {
|
||||||
if (de->d_name[0] != '.') {
|
fseek(fdb_area->fp, - fdbhdr.recsize, SEEK_CUR);
|
||||||
Marker();
|
fwrite(&fdb, fdbhdr.recsize, 1, fdb_area->fp);
|
||||||
Found = FALSE;
|
mbsedb_UnlockFDB(fdb_area);
|
||||||
fseek(pFile, fdbhdr.hdrsize, SEEK_SET);
|
}
|
||||||
while (fread(&fdb, fdbhdr.recsize, 1, pFile) == 1) {
|
#else
|
||||||
if ((strcmp(fdb.LName, de->d_name) == 0) || (strcmp(fdb.Name, de->d_name) == 0)) {
|
fseek(pFile, - fdbhdr.recsize, SEEK_CUR);
|
||||||
if (!Found) {
|
fwrite(&fdb, fdbhdr.recsize, 1, pFile);
|
||||||
Found = TRUE;
|
#endif
|
||||||
} else {
|
iErrors++;
|
||||||
/*
|
}
|
||||||
* Record has been found before, so this must be
|
}
|
||||||
* a double record.
|
}
|
||||||
*/
|
|
||||||
Syslog('!', "Double file record area %ld file %s", Area, fdb.LName);
|
if (inArea == 0)
|
||||||
iErrors++;
|
Syslog('+', "Warning: area %ld (%s) is empty", Area, area.Name);
|
||||||
fdb.Double = TRUE;
|
|
||||||
do_pack = TRUE;
|
/*
|
||||||
fseek(pFile, - fdbhdr.recsize, SEEK_CUR);
|
* Check files in the directory against the database.
|
||||||
fwrite(&fdb, fdbhdr.recsize, 1, pFile);
|
* This test is skipped for CD-rom.
|
||||||
}
|
*/
|
||||||
|
if (!area.CDrom) {
|
||||||
|
if ((dp = opendir(area.Path)) != NULL) {
|
||||||
|
while ((de = readdir(dp)) != NULL) {
|
||||||
|
if (de->d_name[0] != '.') {
|
||||||
|
Marker();
|
||||||
|
Found = FALSE;
|
||||||
|
#ifdef USE_EXPERIMENT
|
||||||
|
fseek(fdb_area->fp, fdbhdr.hdrsize, SEEK_SET);
|
||||||
|
while (fread(&fdb, fdbhdr.recsize, 1, fdb_area->fp) == 1) {
|
||||||
|
#else
|
||||||
|
fseek(pFile, fdbhdr.hdrsize, SEEK_SET);
|
||||||
|
while (fread(&fdb, fdbhdr.recsize, 1, pFile) == 1) {
|
||||||
|
#endif
|
||||||
|
if ((strcmp(fdb.LName, de->d_name) == 0) || (strcmp(fdb.Name, de->d_name) == 0)) {
|
||||||
|
if (!Found) {
|
||||||
|
Found = TRUE;
|
||||||
|
} else {
|
||||||
|
/*
|
||||||
|
* Record has been found before, so this must be
|
||||||
|
* a double record.
|
||||||
|
*/
|
||||||
|
Syslog('!', "Double file record area %ld file %s", Area, fdb.LName);
|
||||||
|
iErrors++;
|
||||||
|
fdb.Double = TRUE;
|
||||||
|
do_pack = TRUE;
|
||||||
|
#ifdef USE_EXPERIMENT
|
||||||
|
if (mbsedb_LockFDB(fdb_area, 30)) {
|
||||||
|
fseek(fdb_area->fp, - fdbhdr.recsize, SEEK_CUR);
|
||||||
|
fwrite(&fdb, fdbhdr.recsize, 1, fdb_area->fp);
|
||||||
|
mbsedb_UnlockFDB(fdb_area);
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
fseek(pFile, - fdbhdr.recsize, SEEK_CUR);
|
||||||
|
fwrite(&fdb, fdbhdr.recsize, 1, pFile);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
if ((!Found) && (strncmp(de->d_name, "files.bbs", 9)) &&
|
}
|
||||||
(strncmp(de->d_name, "files.bak", 9)) &&
|
}
|
||||||
(strncmp(de->d_name, "00index", 7)) &&
|
if ((!Found) && (strncmp(de->d_name, "files.bbs", 9)) &&
|
||||||
(strncmp(de->d_name, "header", 6)) &&
|
(strncmp(de->d_name, "files.bak", 9)) &&
|
||||||
(strncmp(de->d_name, "index", 5)) &&
|
(strncmp(de->d_name, "00index", 7)) &&
|
||||||
(strncmp(de->d_name, "readme", 6))) {
|
(strncmp(de->d_name, "header", 6)) &&
|
||||||
sprintf(fn, "%s/%s", area.Path, de->d_name);
|
(strncmp(de->d_name, "index", 5)) &&
|
||||||
if (stat(fn, &stb) == 0)
|
(strncmp(de->d_name, "readme", 6))) {
|
||||||
if (S_ISREG(stb.st_mode)) {
|
sprintf(fn, "%s/%s", area.Path, de->d_name);
|
||||||
if (unlink(fn) == 0) {
|
if (stat(fn, &stb) == 0)
|
||||||
Syslog('!', "%s not in fdb, deleted from disk", fn);
|
if (S_ISREG(stb.st_mode)) {
|
||||||
iErrors++;
|
if (unlink(fn) == 0) {
|
||||||
} else {
|
Syslog('!', "%s not in fdb, deleted from disk", fn);
|
||||||
WriteError("$%s not in fdb, cannot delete", fn);
|
iErrors++;
|
||||||
}
|
} else {
|
||||||
}
|
WriteError("$%s not in fdb, cannot delete", fn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
closedir(dp);
|
}
|
||||||
} else {
|
}
|
||||||
WriteError("Can't open %s", area.Path);
|
closedir(dp);
|
||||||
}
|
} else {
|
||||||
}
|
WriteError("Can't open %s", area.Path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fclose(pFile);
|
#ifdef USE_EXPERIMENT
|
||||||
chmod(fAreas, 0660);
|
mbsedb_CloseFDB(fdb_area);
|
||||||
iAreasNew++;
|
#else
|
||||||
|
fclose(pFile);
|
||||||
|
chmod(fAreas, 0660);
|
||||||
free(fAreas);
|
free(fAreas);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
iAreasNew++;
|
||||||
free(newdir);
|
free(newdir);
|
||||||
free(temp);
|
free(temp);
|
||||||
free(mname);
|
free(mname);
|
||||||
|
Reference in New Issue
Block a user