1 #include "../common/tdb_private.h"
2 #include "lock-tracking.h"
4 static ssize_t
pwrite_check(int fd
, const void *buf
, size_t count
, off_t offset
);
5 static ssize_t
write_check(int fd
, const void *buf
, size_t count
);
6 static int ftruncate_check(int fd
, off_t length
);
8 #define pwrite pwrite_check
9 #define write write_check
10 #define fcntl fcntl_with_lockcheck
11 #define ftruncate ftruncate_check
13 #include "../common/io.c"
14 #include "../common/tdb.c"
15 #include "../common/lock.c"
16 #include "../common/freelist.c"
17 #include "../common/traverse.c"
18 #include "../common/transaction.c"
19 #include "../common/error.c"
20 #include "../common/open.c"
21 #include "../common/check.c"
22 #include "../common/hash.c"
23 #include "tap-interface.h"
28 #include "external-agent.h"
31 static struct agent
*agent
;
33 static int errors
= 0;
34 static bool clear_if_first
;
35 #define TEST_DBNAME "run-open-during-transaction.tdb"
42 static bool is_same(const char *snapshot
, const char *latest
, off_t len
)
46 for (i
= 0; i
< len
; i
++) {
47 if (snapshot
[i
] != latest
[i
])
53 static bool compare_file(int fd
, const char *snapshot
, off_t snapshot_len
)
58 /* over-length read serves as length check. */
59 contents
= malloc(snapshot_len
+1);
60 same
= pread(fd
, contents
, snapshot_len
+1, 0) == snapshot_len
61 && is_same(snapshot
, contents
, snapshot_len
);
66 static void check_file_intact(int fd
)
68 enum agent_return ret
;
73 contents
= malloc(st
.st_size
);
74 if (pread(fd
, contents
, st
.st_size
, 0) != st
.st_size
) {
80 /* Ask agent to open file. */
81 ret
= external_agent_operation(agent
, clear_if_first
?
82 OPEN_WITH_CLEAR_IF_FIRST
:
86 /* It's OK to open it, but it must not have changed! */
87 if (!compare_file(fd
, contents
, st
.st_size
)) {
88 diag("Agent changed file after opening %s",
89 agent_return_name(ret
));
94 ret
= external_agent_operation(agent
, CLOSE
, NULL
);
96 diag("Agent failed to close tdb: %s",
97 agent_return_name(ret
));
100 } else if (ret
!= WOULD_HAVE_BLOCKED
) {
101 diag("Agent opening file gave %s",
102 agent_return_name(ret
));
109 static void after_unlock(int fd
)
112 check_file_intact(fd
);
115 static ssize_t
pwrite_check(int fd
,
116 const void *buf
, size_t count
, off_t offset
)
119 check_file_intact(fd
);
121 return pwrite(fd
, buf
, count
, offset
);
124 static ssize_t
write_check(int fd
, const void *buf
, size_t count
)
127 check_file_intact(fd
);
129 return write(fd
, buf
, count
);
132 static int ftruncate_check(int fd
, off_t length
)
135 check_file_intact(fd
);
137 return ftruncate(fd
, length
);
141 int main(int argc
, char *argv
[])
143 const int flags
[] = { TDB_DEFAULT
,
146 TDB_CLEAR_IF_FIRST
| TDB_NOMMAP
};
148 struct tdb_context
*tdb
;
152 agent
= prepare_external_agent();
154 err(1, "preparing agent");
156 unlock_callback
= after_unlock
;
157 for (i
= 0; i
< sizeof(flags
)/sizeof(flags
[0]); i
++) {
158 clear_if_first
= (flags
[i
] & TDB_CLEAR_IF_FIRST
);
159 diag("Test with %s and %s\n",
160 clear_if_first
? "CLEAR" : "DEFAULT",
161 (flags
[i
] & TDB_NOMMAP
) ? "no mmap" : "mmap");
163 tdb
= tdb_open_ex(TEST_DBNAME
, 1024, flags
[i
],
164 O_CREAT
|O_TRUNC
|O_RDWR
, 0600,
169 ok1(tdb_transaction_start(tdb
) == 0);
170 key
.dsize
= strlen("hi");
171 key
.dptr
= (void *)"hi";
172 data
.dptr
= (void *)"world";
173 data
.dsize
= strlen("world");
175 ok1(tdb_store(tdb
, key
, data
, TDB_INSERT
) == 0);
176 ok1(tdb_transaction_commit(tdb
) == 0);
177 ok(!errors
, "We had %u open errors", errors
);
183 return exit_status();