|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h> |
|
|
#include <sys/stat.h> |
|
|
#include <unistd.h> |
|
|
#include <fcntl.h> |
|
|
#include <string.h> |
|
|
#include <stdio.h> |
|
|
#include <stdlib.h> |
|
|
#include <errno.h> |
|
|
|
|
|
static void usage(const char *argv0){ |
|
|
fprintf(stderr, "Usage: %s database\n", argv0); |
|
|
exit(1); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int isLocked( |
|
|
int h, |
|
|
int type, |
|
|
unsigned int iOfst, |
|
|
unsigned int iCnt, |
|
|
const char *zType |
|
|
){ |
|
|
struct flock lk; |
|
|
|
|
|
memset(&lk, 0, sizeof(lk)); |
|
|
lk.l_type = type; |
|
|
lk.l_whence = SEEK_SET; |
|
|
lk.l_start = iOfst; |
|
|
lk.l_len = iCnt; |
|
|
if( fcntl(h, F_GETLK, &lk)==(-1) ){ |
|
|
fprintf(stderr, "fcntl(%d) failed: errno=%d\n", h, errno); |
|
|
exit(1); |
|
|
} |
|
|
if( lk.l_type==F_UNLCK ) return 0; |
|
|
printf("%s lock held by %d\n", zType, (int)lk.l_pid); |
|
|
return 1; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define PENDING_BYTE (0x40000000) |
|
|
#define RESERVED_BYTE (PENDING_BYTE+1) |
|
|
#define SHARED_FIRST (PENDING_BYTE+2) |
|
|
#define SHARED_SIZE 510 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define SHM_BASE 120 |
|
|
#define SHM_WRITE SHM_BASE |
|
|
#define SHM_CHECKPOINT (SHM_BASE+1) |
|
|
#define SHM_RECOVER (SHM_BASE+2) |
|
|
#define SHM_READ_FIRST (SHM_BASE+3) |
|
|
#define SHM_READ_SIZE 5 |
|
|
|
|
|
|
|
|
int main(int argc, char **argv){ |
|
|
int hDb; |
|
|
int hShm; |
|
|
char *zShm; |
|
|
ssize_t got; |
|
|
int isWal; |
|
|
int nName; |
|
|
unsigned char aHdr[100]; |
|
|
int nLock = 0; |
|
|
int i; |
|
|
|
|
|
if( argc!=2 ) usage(argv[0]); |
|
|
hDb = open(argv[1], O_RDONLY, 0); |
|
|
if( hDb<0 ){ |
|
|
fprintf(stderr, "cannot open %s\n", argv[1]); |
|
|
return 1; |
|
|
} |
|
|
|
|
|
|
|
|
got = read(hDb, aHdr, 100); |
|
|
if( got!=100 || memcmp(aHdr, "SQLite format 3",16)!=0 ){ |
|
|
fprintf(stderr, "not an SQLite database: %s\n", argv[1]); |
|
|
exit(1); |
|
|
} |
|
|
|
|
|
|
|
|
if( isLocked(hDb, F_RDLCK, SHARED_FIRST, SHARED_SIZE, "EXCLUSIVE") ){ |
|
|
return 0; |
|
|
} |
|
|
isWal = aHdr[18]==2; |
|
|
if( isWal==0 ){ |
|
|
|
|
|
if( isLocked(hDb, F_RDLCK, PENDING_BYTE, 1, "PENDING") ) return 0; |
|
|
if( isLocked(hDb, F_RDLCK, RESERVED_BYTE, 1, "RESERVED") ) return 0; |
|
|
if( isLocked(hDb, F_WRLCK, SHARED_FIRST, SHARED_SIZE, "SHARED") ){ |
|
|
return 0; |
|
|
} |
|
|
}else{ |
|
|
|
|
|
nName = (int)strlen(argv[1]); |
|
|
zShm = malloc( nName + 100 ); |
|
|
if( zShm==0 ){ |
|
|
fprintf(stderr, "out of memory\n"); |
|
|
exit(1); |
|
|
} |
|
|
memcpy(zShm, argv[1], nName); |
|
|
memcpy(&zShm[nName], "-shm", 5); |
|
|
hShm = open(zShm, O_RDONLY, 0); |
|
|
if( hShm<0 ){ |
|
|
fprintf(stderr, "cannot open %s\n", zShm); |
|
|
return 1; |
|
|
} |
|
|
if( isLocked(hShm, F_RDLCK, SHM_RECOVER, 1, "WAL-RECOVERY") ){ |
|
|
return 0; |
|
|
} |
|
|
nLock += isLocked(hShm, F_RDLCK, SHM_CHECKPOINT, 1, "WAL-CHECKPOINT"); |
|
|
nLock += isLocked(hShm, F_RDLCK, SHM_WRITE, 1, "WAL-WRITE"); |
|
|
for(i=0; i<SHM_READ_SIZE; i++){ |
|
|
nLock += isLocked(hShm, F_WRLCK, SHM_READ_FIRST+i, 1, "WAL-READ"); |
|
|
} |
|
|
} |
|
|
if( nLock==0 ){ |
|
|
printf("file is not locked\n"); |
|
|
} |
|
|
return 0; |
|
|
} |
|
|
|