]> git.ozlabs.org Git - ccan/blob - ccan/tdb/tools/replay_trace.c
124b7458dfa7688b0f3dbd9d7df976a8870f5ed8
[ccan] / ccan / tdb / tools / replay_trace.c
1 #include <ccan/tdb/tdb.h>
2 #include <ccan/grab_file/grab_file.h>
3 #include <ccan/hash/hash.h>
4 #include <ccan/talloc/talloc.h>
5 #include <ccan/str_talloc/str_talloc.h>
6 #include <ccan/str/str.h>
7 #include <ccan/list/list.h>
8 #include <err.h>
9 #include <ctype.h>
10 #include <string.h>
11 #include <unistd.h>
12 #include <sys/types.h>
13 #include <sys/wait.h>
14 #include <sys/time.h>
15 #include <errno.h>
16 #include <signal.h>
17 #include <assert.h>
18
19 #define STRINGIFY2(x) #x
20 #define STRINGIFY(x) STRINGIFY2(x)
21
22 /* Avoid mod by zero */
23 static unsigned int total_keys = 1;
24
25 #define DEBUG_DEPS 1
26
27 /* Traversals block transactions in the current implementation. */
28 #define TRAVERSALS_TAKE_TRANSACTION_LOCK 1
29
30 struct pipe {
31         int fd[2];
32 };
33 static struct pipe *pipes;
34
35 static void __attribute__((noreturn)) fail(const char *filename,
36                                            unsigned int line,
37                                            const char *fmt, ...)
38 {
39         va_list ap;
40
41         va_start(ap, fmt);
42         fprintf(stderr, "%s:%u: FAIL: ", filename, line);
43         vfprintf(stderr, fmt, ap);
44         fprintf(stderr, "\n");
45         va_end(ap);
46         exit(1);
47 }
48         
49 /* Try or die. */
50 #define try(expr, expect)                                               \
51         do {                                                            \
52                 int ret = (expr);                                       \
53                 if (ret != (expect))                                    \
54                         fail(filename[file], i+1,                       \
55                              STRINGIFY(expr) "= %i", ret);              \
56         } while (0)
57
58 /* Try or imitate results. */
59 #define unreliable(expr, expect, force, undo)                           \
60         do {                                                            \
61                 int ret = expr;                                         \
62                 if (ret != expect) {                                    \
63                         fprintf(stderr, "%s:%u: %s gave %i not %i",     \
64                                 filename[file], i+1, STRINGIFY(expr),   \
65                                 ret, expect);                           \
66                         if (expect == 0)                                \
67                                 force;                                  \
68                         else                                            \
69                                 undo;                                   \
70                 }                                                       \
71         } while (0)
72
73 static bool key_eq(TDB_DATA a, TDB_DATA b)
74 {
75         if (a.dsize != b.dsize)
76                 return false;
77         return memcmp(a.dptr, b.dptr, a.dsize) == 0;
78 }
79
80 /* This is based on the hash algorithm from gdbm */
81 static unsigned int hash_key(TDB_DATA *key)
82 {
83         uint32_t value; /* Used to compute the hash value.  */
84         uint32_t   i;   /* Used to cycle through random values. */
85
86         /* Set the initial value from the key size. */
87         for (value = 0x238F13AF ^ key->dsize, i=0; i < key->dsize; i++)
88                 value = (value + (key->dptr[i] << (i*5 % 24)));
89
90         return (1103515243 * value + 12345);  
91 }
92
93 enum op_type {
94         OP_TDB_LOCKALL,
95         OP_TDB_LOCKALL_MARK,
96         OP_TDB_LOCKALL_UNMARK,
97         OP_TDB_LOCKALL_NONBLOCK,
98         OP_TDB_UNLOCKALL,
99         OP_TDB_LOCKALL_READ,
100         OP_TDB_LOCKALL_READ_NONBLOCK,
101         OP_TDB_UNLOCKALL_READ,
102         OP_TDB_CHAINLOCK,
103         OP_TDB_CHAINLOCK_NONBLOCK,
104         OP_TDB_CHAINLOCK_MARK,
105         OP_TDB_CHAINLOCK_UNMARK,
106         OP_TDB_CHAINUNLOCK,
107         OP_TDB_CHAINLOCK_READ,
108         OP_TDB_CHAINUNLOCK_READ,
109         OP_TDB_PARSE_RECORD,
110         OP_TDB_EXISTS,
111         OP_TDB_STORE,
112         OP_TDB_APPEND,
113         OP_TDB_GET_SEQNUM,
114         OP_TDB_WIPE_ALL,
115         OP_TDB_TRANSACTION_START,
116         OP_TDB_TRANSACTION_CANCEL,
117         OP_TDB_TRANSACTION_COMMIT,
118         OP_TDB_TRAVERSE_READ_START,
119         OP_TDB_TRAVERSE_START,
120         OP_TDB_TRAVERSE_END,
121         OP_TDB_TRAVERSE,
122         OP_TDB_FIRSTKEY,
123         OP_TDB_NEXTKEY,
124         OP_TDB_FETCH,
125         OP_TDB_DELETE,
126 };
127
128 struct op {
129         unsigned int serial;
130         enum op_type op;
131         TDB_DATA key;
132         TDB_DATA data;
133         int ret;
134
135         /* Who is waiting for us? */
136         struct list_head post;
137         /* What are we waiting for? */
138         struct list_head pre;
139
140         /* If I'm part of a group (traverse/transaction) where is
141          * start?  (Otherwise, 0) */
142         unsigned int group_start;
143
144         union {
145                 int flag; /* open and store */
146                 struct {  /* append */
147                         TDB_DATA pre;
148                         TDB_DATA post;
149                 } append;
150                 unsigned int group_len; /* transaction/traverse start */
151         };
152 };
153
154 static unsigned char hex_char(const char *filename, unsigned int line, char c)
155 {
156         c = toupper(c);
157         if (c >= 'A' && c <= 'F')
158                 return c - 'A' + 10;
159         if (c >= '0' && c <= '9')
160                 return c - '0';
161         fail(filename, line, "invalid hex character '%c'", c);
162 }
163
164 /* TDB data is <size>:<%02x>* */
165 static TDB_DATA make_tdb_data(const void *ctx,
166                               const char *filename, unsigned int line,
167                               const char *word)
168 {
169         TDB_DATA data;
170         unsigned int i;
171         const char *p;
172
173         if (streq(word, "NULL"))
174                 return tdb_null;
175
176         data.dsize = atoi(word);
177         data.dptr = talloc_array(ctx, unsigned char, data.dsize);
178         p = strchr(word, ':');
179         if (!p)
180                 fail(filename, line, "invalid tdb data '%s'", word);
181         p++;
182         for (i = 0; i < data.dsize; i++)
183                 data.dptr[i] = hex_char(filename, line, p[i*2])*16
184                         + hex_char(filename, line, p[i*2+1]);
185
186         return data;
187 }
188
189 static void add_op(const char *filename, struct op **op, unsigned int i,
190                    unsigned int serial, enum op_type type)
191 {
192         struct op *new;
193         *op = talloc_realloc(NULL, *op, struct op, i+1);
194         new = (*op) + i;
195         new->op = type;
196         new->serial = serial;
197         new->ret = 0;
198         new->group_start = 0;
199 }
200
201 static void op_add_nothing(const char *filename,
202                            struct op op[], unsigned int op_num, char *words[])
203 {
204         if (words[2])
205                 fail(filename, op_num+1, "Expected no arguments");
206         op[op_num].key = tdb_null;
207 }
208
209 static void op_add_key(const char *filename,
210                        struct op op[], unsigned int op_num, char *words[])
211 {
212         if (words[2] == NULL || words[3])
213                 fail(filename, op_num+1, "Expected just a key");
214
215         op[op_num].key = make_tdb_data(op, filename, op_num+1, words[2]);
216         if (op[op_num].op != OP_TDB_TRAVERSE)
217                 total_keys++;
218 }
219
220 static void op_add_key_ret(const char *filename,
221                            struct op op[], unsigned int op_num, char *words[])
222 {
223         if (!words[2] || !words[3] || !words[4] || words[5]
224             || !streq(words[3], "="))
225                 fail(filename, op_num+1, "Expected <key> = <ret>");
226         op[op_num].ret = atoi(words[4]);
227         op[op_num].key = make_tdb_data(op, filename, op_num+1, words[2]);
228         /* May only be a unique key if it fails */
229         if (op[op_num].ret != 0)
230                 total_keys++;
231 }
232
233 static void op_add_key_data(const char *filename,
234                             struct op op[], unsigned int op_num, char *words[])
235 {
236         if (!words[2] || !words[3] || !words[4] || words[5]
237             || !streq(words[3], "="))
238                 fail(filename, op_num+1, "Expected <key> = <data>");
239         op[op_num].key = make_tdb_data(op, filename, op_num+1, words[2]);
240         op[op_num].data = make_tdb_data(op, filename, op_num+1, words[4]);
241         /* May only be a unique key if it fails */
242         if (!op[op_num].data.dptr)
243                 total_keys++;
244 }
245
246 /* <serial> tdb_store <rec> <rec> <flag> = <ret> */
247 static void op_add_store(const char *filename,
248                          struct op op[], unsigned int op_num, char *words[])
249 {
250         if (!words[2] || !words[3] || !words[4] || !words[5] || !words[6]
251             || words[7] || !streq(words[5], "="))
252                 fail(filename, op_num+1, "Expect <key> <data> <flag> = <ret>");
253
254         op[op_num].flag = strtoul(words[4], NULL, 0);
255         op[op_num].ret = atoi(words[6]);
256         op[op_num].key = make_tdb_data(op, filename, op_num+1, words[2]);
257         op[op_num].data = make_tdb_data(op, filename, op_num+1, words[3]);
258         total_keys++;
259 }
260
261 /* <serial> tdb_append <rec> <rec> = <rec> */
262 static void op_add_append(const char *filename,
263                           struct op op[], unsigned int op_num, char *words[])
264 {
265         if (!words[2] || !words[3] || !words[4] || !words[5] || words[6]
266             || !streq(words[4], "="))
267                 fail(filename, op_num+1, "Expect <key> <data> = <rec>");
268
269         op[op_num].key = make_tdb_data(op, filename, op_num+1, words[2]);
270         op[op_num].data = make_tdb_data(op, filename, op_num+1, words[3]);
271
272         op[op_num].append.post
273                 = make_tdb_data(op, filename, op_num+1, words[5]);
274
275         /* By subtraction, figure out what previous data was. */
276         op[op_num].append.pre.dptr = op[op_num].append.post.dptr;
277         op[op_num].append.pre.dsize
278                 = op[op_num].append.post.dsize - op[op_num].data.dsize;
279         total_keys++;
280 }
281
282 /* <serial> tdb_get_seqnum = <ret> */
283 static void op_add_seqnum(const char *filename,
284                           struct op op[], unsigned int op_num, char *words[])
285 {
286         if (!words[2] || !words[3] || words[4] || !streq(words[2], "="))
287                 fail(filename, op_num+1, "Expect = <ret>");
288
289         op[op_num].key = tdb_null;
290         op[op_num].ret = atoi(words[3]);
291 }
292
293 static void op_add_traverse(const char *filename,
294                             struct op op[], unsigned int op_num, char *words[])
295 {
296         if (words[2])
297                 fail(filename, op_num+1, "Expect no arguments");
298
299         op[op_num].key = tdb_null;
300         op[op_num].group_len = 0;
301 }
302
303 static void op_add_transaction(const char *filename, struct op op[],
304                                unsigned int op_num, char *words[])
305 {
306         if (words[2])
307                 fail(filename, op_num+1, "Expect no arguments");
308
309         op[op_num].key = tdb_null;
310         op[op_num].group_len = 0;
311 }
312
313 static int op_transaction_start(struct op op[], unsigned int op_num)
314 {
315         unsigned int i;
316
317         for (i = op_num-1; i > 0; i--) {
318                 if (op[i].op == OP_TDB_TRANSACTION_START && !op[i].group_len)
319                         return i;
320         }
321         return 0;
322 }
323
324 static void op_analyze_transaction(const char *filename,
325                                    struct op op[], unsigned int op_num,
326                                    char *words[])
327 {
328         unsigned int start, i;
329
330         op[op_num].key = tdb_null;
331
332         if (words[2])
333                 fail(filename, op_num+1, "Expect no arguments");
334
335         start = op_transaction_start(op, op_num);
336         if (!start)
337                 fail(filename, op_num+1, "no transaction start found");
338
339         op[start].group_len = op_num - start;
340
341         /* This rolls in nested transactions.  I think that's right. */
342         for (i = start; i <= op_num; i++)
343                 op[i].group_start = start;
344 }
345
346 struct traverse_hash {
347         TDB_DATA key;
348         unsigned int index;
349 };
350
351 static void op_analyze_traverse(const char *filename,
352                                 struct op op[], unsigned int op_num,
353                                 char *words[])
354 {
355         int i, start;
356
357         op[op_num].key = tdb_null;
358
359         /* = %u means traverse function terminated. */
360         if (words[2]) {
361                 if (!streq(words[2], "=") || !words[3] || words[4])
362                         fail(filename, op_num+1, "expect = <num>");
363                 op[op_num].ret = atoi(words[3]);
364         } else
365                 op[op_num].ret = 0;
366
367         for (i = op_num-1; i >= 0; i--) {
368                 if (op[i].op != OP_TDB_TRAVERSE_READ_START
369                     && op[i].op != OP_TDB_TRAVERSE_START)
370                         continue;
371                 if (op[i].group_len)
372                         continue;
373                 break;
374         }
375
376         if (i < 0)
377                 fail(filename, op_num+1, "no traversal start found");
378
379         start = i;
380         op[start].group_len = op_num - start;
381
382         for (i = start; i <= op_num; i++)
383                 op[i].group_start = start;
384 }
385
386 /* Keep -Wmissing-declarations happy: */
387 const struct op_table *
388 find_keyword (register const char *str, register unsigned int len);
389
390 #include "keywords.c"
391
392 struct depend {
393         /* We can have more than one */
394         struct list_node pre_list;
395         struct list_node post_list;
396         unsigned int needs_file;
397         unsigned int needs_opnum;
398         unsigned int satisfies_file;
399         unsigned int satisfies_opnum;
400 };
401
402 static void check_deps(const char *filename, struct op op[], unsigned int num)
403 {
404 #ifdef DEBUG_DEPS
405         unsigned int i;
406
407         for (i = 1; i < num; i++)
408                 if (!list_empty(&op[i].pre))
409                         fail(filename, i+1, "Still has dependencies");
410 #endif
411 }
412
413 static void dump_pre(char *filename[], struct op *op[],
414                      unsigned int file, unsigned int i)
415 {
416         struct depend *dep;
417
418         printf("%s:%u (%u) still waiting for:\n", filename[file], i+1,
419                 op[file][i].serial);
420         list_for_each(&op[file][i].pre, dep, pre_list)
421                 printf("    %s:%u (%u)\n",
422                        filename[dep->satisfies_file], dep->satisfies_opnum+1,
423                        op[dep->satisfies_file][dep->satisfies_opnum].serial);
424         check_deps(filename[file], op[file], i);
425 }
426
427 /* We simply read/write pointers, since we all are children. */
428 static void do_pre(struct tdb_context *tdb,
429                    char *filename[], struct op *op[],
430                    unsigned int file, int pre_fd, unsigned int i)
431 {
432         while (!list_empty(&op[file][i].pre)) {
433                 struct depend *dep;
434
435 #if DEBUG_DEPS
436                 printf("%s:%u:waiting for pre\n", filename[file], i+1);
437                 fflush(stdout);
438 #endif
439                 alarm(10);
440                 while (read(pre_fd, &dep, sizeof(dep)) != sizeof(dep)) {
441                         if (errno == EINTR) {
442                                 dump_pre(filename, op, file, i);
443                                 exit(1);
444                         } else
445                                 errx(1, "Reading from pipe");
446                 }
447                 alarm(0);
448
449 #if DEBUG_DEPS
450                 printf("%s:%u:got pre %u from %s:%u\n", filename[file], i+1,
451                        dep->needs_opnum+1, filename[dep->satisfies_file],
452                        dep->satisfies_opnum+1);
453                 fflush(stdout);
454 #endif
455                 /* This could be any op, not just this one. */
456                 talloc_free(dep);
457         }
458 }
459
460 static void do_post(char *filename[], struct op *op[],
461                     unsigned int file, unsigned int i)
462 {
463         struct depend *dep;
464
465         list_for_each(&op[file][i].post, dep, post_list) {
466 #if DEBUG_DEPS
467                 printf("%s:%u:sending to file %s:%u\n", filename[file], i+1,
468                        filename[dep->needs_file], dep->needs_opnum+1);
469 #endif
470                 if (write(pipes[dep->needs_file].fd[1], &dep, sizeof(dep))
471                     != sizeof(dep))
472                         err(1, "%s:%u failed to tell file %s",
473                             filename[file], i+1, filename[dep->needs_file]);
474         }
475 }
476
477 static int get_len(TDB_DATA key, TDB_DATA data, void *private_data)
478 {
479         return data.dsize;
480 }
481
482 static unsigned run_ops(struct tdb_context *tdb,
483                         int pre_fd,
484                         char *filename[],
485                         struct op *op[],
486                         unsigned int file,
487                         unsigned int start, unsigned int stop);
488
489 struct traverse_info {
490         struct op **op;
491         char **filename;
492         unsigned file;
493         int pre_fd;
494         unsigned int start;
495         unsigned int i;
496 };
497
498 /* More complex.  Just do whatever's they did at the n'th entry. */
499 static int nontrivial_traverse(struct tdb_context *tdb,
500                                TDB_DATA key, TDB_DATA data,
501                                void *_tinfo)
502 {
503         struct traverse_info *tinfo = _tinfo;
504         unsigned int trav_len = tinfo->op[tinfo->file][tinfo->start].group_len;
505
506         if (tinfo->i == tinfo->start + trav_len) {
507                 /* This can happen if traverse expects to be empty. */
508                 if (trav_len == 1)
509                         return 1;
510                 fail(tinfo->filename[tinfo->file], tinfo->start + 1,
511                      "traverse did not terminate");
512         }
513
514         if (tinfo->op[tinfo->file][tinfo->i].op != OP_TDB_TRAVERSE)
515                 fail(tinfo->filename[tinfo->file], tinfo->start + 1,
516                      "%s:%u:traverse terminated early");
517
518         /* Run any normal ops. */
519         tinfo->i = run_ops(tdb, tinfo->pre_fd, tinfo->filename, tinfo->op,
520                            tinfo->file, tinfo->i+1, tinfo->start + trav_len);
521
522         if (tinfo->i == tinfo->start + trav_len)
523                 return 1;
524
525         return 0;
526 }
527
528 static unsigned op_traverse(struct tdb_context *tdb,
529                             int pre_fd,
530                             char *filename[],
531                             unsigned int file,
532                             int (*traversefn)(struct tdb_context *,
533                                               tdb_traverse_func, void *),
534                             struct op *op[],
535                             unsigned int start)
536 {
537         struct traverse_info tinfo = { op, filename, file, pre_fd,
538                                        start, start+1 };
539
540         traversefn(tdb, nontrivial_traverse, &tinfo);
541
542         /* Traversing in wrong order can have strange effects: eg. if
543          * original traverse went A (delete A), B, we might do B
544          * (delete A).  So if we have ops left over, we do it now. */
545         while (tinfo.i != start + op[file][start].group_len) {
546                 if (op[file][tinfo.i].op == OP_TDB_TRAVERSE)
547                         tinfo.i++;
548                 else
549                         tinfo.i = run_ops(tdb, pre_fd, filename, op, file,
550                                           tinfo.i,
551                                           start + op[file][start].group_len);
552         }
553
554         return tinfo.i;
555 }
556
557 static void break_out(int sig)
558 {
559 }
560
561 static __attribute__((noinline))
562 unsigned run_ops(struct tdb_context *tdb,
563                  int pre_fd,
564                  char *filename[],
565                  struct op *op[],
566                  unsigned int file,
567                  unsigned int start, unsigned int stop)
568 {
569         unsigned int i;
570         struct sigaction sa;
571
572         sa.sa_handler = break_out;
573         sa.sa_flags = 0;
574
575         sigaction(SIGALRM, &sa, NULL);
576         for (i = start; i < stop; i++) {
577                 do_pre(tdb, filename, op, file, pre_fd, i);
578
579                 switch (op[file][i].op) {
580                 case OP_TDB_LOCKALL:
581                         try(tdb_lockall(tdb), op[file][i].ret);
582                         break;
583                 case OP_TDB_LOCKALL_MARK:
584                         try(tdb_lockall_mark(tdb), op[file][i].ret);
585                         break;
586                 case OP_TDB_LOCKALL_UNMARK:
587                         try(tdb_lockall_unmark(tdb), op[file][i].ret);
588                         break;
589                 case OP_TDB_LOCKALL_NONBLOCK:
590                         unreliable(tdb_lockall_nonblock(tdb), op[file][i].ret,
591                                    tdb_lockall(tdb), tdb_unlockall(tdb));
592                         break;
593                 case OP_TDB_UNLOCKALL:
594                         try(tdb_unlockall(tdb), op[file][i].ret);
595                         break;
596                 case OP_TDB_LOCKALL_READ:
597                         try(tdb_lockall_read(tdb), op[file][i].ret);
598                         break;
599                 case OP_TDB_LOCKALL_READ_NONBLOCK:
600                         unreliable(tdb_lockall_read_nonblock(tdb),
601                                    op[file][i].ret,
602                                    tdb_lockall_read(tdb),
603                                    tdb_unlockall_read(tdb));
604                         break;
605                 case OP_TDB_UNLOCKALL_READ:
606                         try(tdb_unlockall_read(tdb), op[file][i].ret);
607                         break;
608                 case OP_TDB_CHAINLOCK:
609                         try(tdb_chainlock(tdb, op[file][i].key),
610                             op[file][i].ret);
611                         break;
612                 case OP_TDB_CHAINLOCK_NONBLOCK:
613                         unreliable(tdb_chainlock_nonblock(tdb, op[file][i].key),
614                                    op[file][i].ret,
615                                    tdb_chainlock(tdb, op[file][i].key),
616                                    tdb_chainunlock(tdb, op[file][i].key));
617                         break;
618                 case OP_TDB_CHAINLOCK_MARK:
619                         try(tdb_chainlock_mark(tdb, op[file][i].key),
620                             op[file][i].ret);
621                         break;
622                 case OP_TDB_CHAINLOCK_UNMARK:
623                         try(tdb_chainlock_unmark(tdb, op[file][i].key),
624                             op[file][i].ret);
625                         break;
626                 case OP_TDB_CHAINUNLOCK:
627                         try(tdb_chainunlock(tdb, op[file][i].key),
628                             op[file][i].ret);
629                         break;
630                 case OP_TDB_CHAINLOCK_READ:
631                         try(tdb_chainlock_read(tdb, op[file][i].key),
632                             op[file][i].ret);
633                         break;
634                 case OP_TDB_CHAINUNLOCK_READ:
635                         try(tdb_chainunlock_read(tdb, op[file][i].key),
636                             op[file][i].ret);
637                         break;
638                 case OP_TDB_PARSE_RECORD:
639                         try(tdb_parse_record(tdb, op[file][i].key, get_len,
640                                              NULL),
641                             op[file][i].ret);
642                         break;
643                 case OP_TDB_EXISTS:
644                         try(tdb_exists(tdb, op[file][i].key), op[file][i].ret);
645                         break;
646                 case OP_TDB_STORE:
647                         try(tdb_store(tdb, op[file][i].key, op[file][i].data,
648                                       op[file][i].flag),
649                             op[file][i].ret);
650                         break;
651                 case OP_TDB_APPEND:
652                         try(tdb_append(tdb, op[file][i].key, op[file][i].data),
653                             op[file][i].ret);
654                         break;
655                 case OP_TDB_GET_SEQNUM:
656                         try(tdb_get_seqnum(tdb), op[file][i].ret);
657                         break;
658                 case OP_TDB_WIPE_ALL:
659                         try(tdb_wipe_all(tdb), op[file][i].ret);
660                         break;
661                 case OP_TDB_TRANSACTION_START:
662                         try(tdb_transaction_start(tdb), op[file][i].ret);
663                         break;
664                 case OP_TDB_TRANSACTION_CANCEL:
665                         try(tdb_transaction_cancel(tdb), op[file][i].ret);
666                         break;
667                 case OP_TDB_TRANSACTION_COMMIT:
668                         try(tdb_transaction_commit(tdb), op[file][i].ret);
669                         break;
670                 case OP_TDB_TRAVERSE_READ_START:
671                         i = op_traverse(tdb, pre_fd, filename, file,
672                                         tdb_traverse_read, op, i);
673                         break;
674                 case OP_TDB_TRAVERSE_START:
675                         i = op_traverse(tdb, pre_fd, filename, file,
676                                         tdb_traverse, op, i);
677                         break;
678                 case OP_TDB_TRAVERSE:
679                         /* Terminate: we're in a traverse, and we've
680                          * done our ops. */
681                         return i;
682                 case OP_TDB_TRAVERSE_END:
683                         fail(filename[file], i+1, "unexpected end traverse");
684                 /* FIXME: These must be treated like traverse. */
685                 case OP_TDB_FIRSTKEY:
686                         if (!key_eq(tdb_firstkey(tdb), op[file][i].data))
687                                 fail(filename[file], i+1, "bad firstkey");
688                         break;
689                 case OP_TDB_NEXTKEY:
690                         if (!key_eq(tdb_nextkey(tdb, op[file][i].key),
691                                     op[file][i].data))
692                                 fail(filename[file], i+1, "bad nextkey");
693                         break;
694                 case OP_TDB_FETCH: {
695                         TDB_DATA f = tdb_fetch(tdb, op[file][i].key);
696                         if (!key_eq(f, op[file][i].data))
697                                 fail(filename[file], i+1, "bad fetch %u",
698                                      f.dsize);
699                         break;
700                 }
701                 case OP_TDB_DELETE:
702                         try(tdb_delete(tdb, op[file][i].key), op[file][i].ret);
703                         break;
704                 }
705                 do_post(filename, op, file, i);
706         }
707         return i;
708 }
709
710 /* tdbtorture, in particular, can do a tdb_close with a transaction in
711  * progress. */
712 static struct op *maybe_cancel_transaction(const char *filename,
713                                            struct op *op, unsigned int *num)
714 {
715         unsigned int start = op_transaction_start(op, *num);
716
717         if (start) {
718                 char *words[] = { "<unknown>", "tdb_close", NULL };
719                 add_op(filename, &op, *num, op[start].serial,
720                        OP_TDB_TRANSACTION_CANCEL);
721                 op_analyze_transaction(filename, op, *num, words);
722                 (*num)++;
723         }
724         return op;
725 }
726
727 static struct op *load_tracefile(const char *filename, unsigned int *num,
728                                  unsigned int *hashsize,
729                                  unsigned int *tdb_flags,
730                                  unsigned int *open_flags)
731 {
732         unsigned int i;
733         struct op *op = talloc_array(NULL, struct op, 1);
734         char **words;
735         char **lines;
736         char *file;
737
738         file = grab_file(NULL, filename, NULL);
739         if (!file)
740                 err(1, "Reading %s", filename);
741
742         lines = strsplit(file, file, "\n", NULL);
743         if (!lines[0])
744                 errx(1, "%s is empty", filename);
745
746         words = strsplit(lines, lines[0], " ", NULL);
747         if (!streq(words[1], "tdb_open"))
748                 fail(filename, 1, "does not start with tdb_open");
749
750         *hashsize = atoi(words[2]);
751         *tdb_flags = strtoul(words[3], NULL, 0);
752         *open_flags = strtoul(words[4], NULL, 0);
753
754         for (i = 1; lines[i]; i++) {
755                 const struct op_table *opt;
756
757                 words = strsplit(lines, lines[i], " ", NULL);
758                 if (!words[0] || !words[1])
759                         fail(filename, i+1, "Expected serial number and op");
760                
761                 opt = find_keyword(words[1], strlen(words[1]));
762                 if (!opt) {
763                         if (streq(words[1], "tdb_close")) {
764                                 if (lines[i+1])
765                                         fail(filename, i+2,
766                                              "lines after tdb_close");
767                                 *num = i;
768                                 talloc_free(lines);
769                                 return maybe_cancel_transaction(filename,
770                                                                 op, num);
771                         }
772                         fail(filename, i+1, "Unknown operation '%s'", words[1]);
773                 }
774
775                 add_op(filename, &op, i, atoi(words[0]), opt->type);
776                 opt->enhance_op(filename, op, i, words);
777         }
778
779         fprintf(stderr, "%s:%u:last operation is not tdb_close: incomplete?",
780               filename, i);
781         talloc_free(lines);
782         *num = i - 1;
783         return maybe_cancel_transaction(filename, op, num);
784 }
785
786 /* We remember all the keys we've ever seen, and who has them. */
787 struct key_user {
788         unsigned int file;
789         unsigned int op_num;
790 };
791
792 struct keyinfo {
793         TDB_DATA key;
794         unsigned int num_users;
795         struct key_user *user;
796 };
797
798 static const TDB_DATA must_not_exist;
799 static const TDB_DATA must_exist;
800 static const TDB_DATA not_exists_or_empty;
801
802 /* NULL means doesn't care if it exists or not, &must_exist means
803  * it must exist but we don't care what, &must_not_exist means it must
804  * not exist, otherwise the data it needs. */
805 static const TDB_DATA *needs(const struct op *op)
806 {
807         switch (op->op) {
808         /* FIXME: Pull forward deps, since we can deadlock */
809         case OP_TDB_CHAINLOCK:
810         case OP_TDB_CHAINLOCK_NONBLOCK:
811         case OP_TDB_CHAINLOCK_MARK:
812         case OP_TDB_CHAINLOCK_UNMARK:
813         case OP_TDB_CHAINUNLOCK:
814         case OP_TDB_CHAINLOCK_READ:
815         case OP_TDB_CHAINUNLOCK_READ:
816                 return NULL;
817
818         case OP_TDB_APPEND:
819                 if (op->append.pre.dsize == 0)
820                         return &not_exists_or_empty;
821                 return &op->append.pre;
822
823         case OP_TDB_STORE:
824                 if (op->flag == TDB_INSERT) {
825                         if (op->ret < 0)
826                                 return &must_exist;
827                         else
828                                 return &must_not_exist;
829                 } else if (op->flag == TDB_MODIFY) {
830                         if (op->ret < 0)
831                                 return &must_not_exist;
832                         else
833                                 return &must_exist;
834                 }
835                 /* No flags?  Don't care */
836                 return NULL;
837
838         case OP_TDB_EXISTS:
839                 if (op->ret == 1)
840                         return &must_exist;
841                 else
842                         return &must_not_exist;
843
844         case OP_TDB_PARSE_RECORD:
845                 if (op->ret < 0)
846                         return &must_not_exist;
847                 return &must_exist;
848
849         /* FIXME: handle these. */
850         case OP_TDB_WIPE_ALL:
851         case OP_TDB_FIRSTKEY:
852         case OP_TDB_NEXTKEY:
853         case OP_TDB_GET_SEQNUM:
854         case OP_TDB_TRAVERSE:
855         case OP_TDB_TRANSACTION_COMMIT:
856         case OP_TDB_TRANSACTION_CANCEL:
857         case OP_TDB_TRANSACTION_START:
858                 return NULL;
859
860         case OP_TDB_FETCH:
861                 if (!op->data.dptr)
862                         return &must_not_exist;
863                 return &op->data;
864
865         case OP_TDB_DELETE:
866                 if (op->ret < 0)
867                         return &must_not_exist;
868                 return &must_exist;
869
870         default:
871                 errx(1, "Unexpected op %i", op->op);
872         }
873         
874 }
875
876 static bool is_transaction(const struct op *op)
877 {
878         return op->op == OP_TDB_TRANSACTION_START;
879 }
880
881 /* What's the data after this op?  pre if nothing changed. */
882 static const TDB_DATA *gives(const TDB_DATA *key, const TDB_DATA *pre,
883                              const struct op *op)
884 {
885         if (is_transaction(op)) {
886                 unsigned int i;
887
888                 /* Cancelled transactions don't change anything. */
889                 if (op[op->group_len].op == OP_TDB_TRANSACTION_CANCEL)
890                         return pre;
891                 assert(op[op->group_len].op == OP_TDB_TRANSACTION_COMMIT);
892
893                 for (i = 1; i < op->group_len; i++) {
894                         /* This skips nested transactions, too */
895                         if (op[i].op != OP_TDB_TRAVERSE
896                             && key_eq(op[i].key, *key))
897                                 pre = gives(key, pre, &op[i]);
898                 }
899                 return pre;
900         }
901
902         /* Failed ops don't change state of db. */
903         if (op->ret < 0)
904                 return pre;
905
906         if (op->op == OP_TDB_DELETE || op->op == OP_TDB_WIPE_ALL)
907                 return &tdb_null;
908
909         if (op->op == OP_TDB_APPEND)
910                 return &op->append.post;
911
912         if (op->op == OP_TDB_STORE)
913                 return &op->data;
914
915         return pre;
916 }
917
918 static bool in_transaction(const struct op op[], unsigned int i)
919 {
920         return op[i].group_start && is_transaction(&op[op[i].group_start]);
921 }
922
923 static bool in_traverse(const struct op op[], unsigned int i)
924 {
925         return op[i].group_start && !is_transaction(&op[op[i].group_start]);
926 }
927
928 static struct keyinfo *hash_ops(struct op *op[], unsigned int num_ops[],
929                                 unsigned int num)
930 {
931         unsigned int i, j, h;
932         struct keyinfo *hash;
933
934         hash = talloc_zero_array(op[0], struct keyinfo, total_keys*2);
935         for (i = 0; i < num; i++) {
936                 for (j = 1; j < num_ops[i]; j++) {
937                         /* We can't do this on allocation, due to realloc. */
938                         list_head_init(&op[i][j].post);
939                         list_head_init(&op[i][j].pre);
940
941                         if (!op[i][j].key.dptr)
942                                 continue;
943
944                         /* We don't wait for traverse keys */
945                         /* FIXME: We should, for trivial traversals. */
946                         if (op[i][j].op == OP_TDB_TRAVERSE)
947                                 continue;
948
949                         h = hash_key(&op[i][j].key) % (total_keys * 2);
950                         while (!key_eq(hash[h].key, op[i][j].key)) {
951                                 if (!hash[h].key.dptr) {
952                                         hash[h].key = op[i][j].key;
953                                         break;
954                                 }
955                                 h = (h + 1) % (total_keys * 2);
956                         }
957                         /* Might as well save some memory if we can. */
958                         if (op[i][j].key.dptr != hash[h].key.dptr) {
959                                 talloc_free(op[i][j].key.dptr);
960                                 op[i][j].key.dptr = hash[h].key.dptr;
961                         }
962                         hash[h].user = talloc_realloc(hash, hash[h].user,
963                                                      struct key_user,
964                                                      hash[h].num_users+1);
965
966                         /* If it's in a transaction, it's the transaction which
967                          * matters from an analysis POV. */
968                         if (in_transaction(op[i], j)) {
969                                 unsigned start = op[i][j].group_start;
970
971                                 /* Don't include twice. */
972                                 if (hash[h].num_users
973                                     && hash[h].user[hash[h].num_users-1].file
974                                         == i
975                                     && hash[h].user[hash[h].num_users-1].op_num
976                                         == start)
977                                         continue;
978
979                                 hash[h].user[hash[h].num_users].op_num = start;
980                         } else
981                                 hash[h].user[hash[h].num_users].op_num = j;
982                         hash[h].user[hash[h].num_users].file = i;
983                         hash[h].num_users++;
984                 }
985         }
986
987         return hash;
988 }
989
990 static bool satisfies(const TDB_DATA *key, const TDB_DATA *data,
991                       const struct op *op)
992 {
993         const TDB_DATA *need = NULL;
994
995         if (is_transaction(op)) {
996                 unsigned int i;
997
998                 /* Look through for an op in this transaction which
999                  * needs this key. */
1000                 for (i = 1; i < op->group_len; i++) {
1001                         if (op[i].op != OP_TDB_TRAVERSE
1002                             && key_eq(op[i].key, *key)) {
1003                                 need = needs(&op[i]);
1004                                 /* tdb_exists() is special: there might be
1005                                  * something in the transaction with more
1006                                  * specific requirements.  Other ops don't have
1007                                  * specific requirements (eg. store or delete),
1008                                  * but they change the value so we can't get
1009                                  * more information from future ops. */
1010                                 if (op[i].op != OP_TDB_EXISTS)
1011                                         break;
1012                         }
1013                 }
1014         } else
1015                 need = needs(op);
1016
1017         /* Don't need anything?  Cool. */
1018         if (!need)
1019                 return true;
1020
1021         /* This should be tdb_null or a real value. */
1022         assert(data != &must_exist);
1023         assert(data != &must_not_exist);
1024         assert(data != &not_exists_or_empty);
1025
1026         /* Must not exist?  data must not exist. */
1027         if (need == &must_not_exist)
1028                 return data == &tdb_null;
1029
1030         /* Must exist? */
1031         if (need == &must_exist)
1032                 return data != &tdb_null;
1033
1034         /* Either noexist or empty. */
1035         if (need == &not_exists_or_empty)
1036                 return data->dsize == 0;
1037
1038         /* Needs something specific. */
1039         return key_eq(*data, *need);
1040 }
1041
1042 static void move_to_front(struct key_user res[], unsigned off, unsigned elem)
1043 {
1044         if (elem != off) {
1045                 struct key_user tmp = res[elem];
1046                 memmove(res + off + 1, res + off, (elem - off)*sizeof(res[0]));
1047                 res[off] = tmp;
1048         }
1049 }
1050
1051 static void restore_to_pos(struct key_user res[], unsigned off, unsigned elem)
1052 {
1053         if (elem != off) {
1054                 struct key_user tmp = res[off];
1055                 memmove(res + off, res + off + 1, (elem - off)*sizeof(res[0]));
1056                 res[elem] = tmp;
1057         }
1058 }
1059
1060 static bool sort_deps(char *filename[], struct op *op[],
1061                       struct key_user res[],
1062                       unsigned off, unsigned num,
1063                       const TDB_DATA *key, const TDB_DATA *data,
1064                       unsigned num_files, unsigned fuzz)
1065 {
1066         unsigned int i, files_done;
1067         struct op *this_op;
1068         bool done[num_files];
1069
1070         /* Does this make serial numbers go backwards?  Allow a little fuzz. */
1071         if (off > 0) {
1072                 int serial1 = op[res[off-1].file][res[off-1].op_num].serial;
1073                 int serial2 = op[res[off].file][res[off].op_num].serial;
1074
1075                 if (serial1 - serial2 > (int)fuzz) {
1076 #if DEBUG_DEPS
1077                         printf("Serial jump too far (%u -> %u)\n",
1078                                serial1, serial2);
1079 #endif
1080                         return false;
1081                 }
1082         }
1083
1084         /* One or none left?  We're sorted. */
1085         if (off + 1 >= num)
1086                 return true;
1087
1088         memset(done, 0, sizeof(done));
1089
1090         /* Since ops within a trace file are ordered, we just need to figure
1091          * out which file to try next.  Since we don't take into account
1092          * inter-key relationships (which exist by virtue of trace file order),
1093          * we minimize the chance of harm by trying to keep in serial order. */
1094         for (files_done = 0, i = off; i < num && files_done < num_files; i++) {
1095                 if (done[res[i].file])
1096                         continue;
1097
1098                 this_op = &op[res[i].file][res[i].op_num];
1099
1100                 /* Is what we have good enough for this op? */
1101                 if (satisfies(key, data, this_op)) {
1102                         move_to_front(res, off, i);
1103                         if (sort_deps(filename, op, res, off+1, num,
1104                                       key, gives(key, data, this_op),
1105                                       num_files, fuzz))
1106                                 return true;
1107                         restore_to_pos(res, off, i);
1108                 }
1109                 done[res[i].file] = true;
1110                 files_done++;
1111         }
1112
1113         /* No combination worked. */
1114         return false;
1115 }
1116
1117 static void check_dep_sorting(struct key_user user[], unsigned num_users,
1118                               unsigned num_files)
1119 {
1120 #if DEBUG_DEPS
1121         unsigned int i;
1122         unsigned minima[num_files];
1123
1124         memset(minima, 0, sizeof(minima));
1125         for (i = 0; i < num_users; i++) {
1126                 assert(minima[user[i].file] < user[i].op_num);
1127                 minima[user[i].file] = user[i].op_num;
1128         }
1129 #endif
1130 }
1131
1132 /* All these ops happen on the same key.  Which comes first?
1133  *
1134  * This can happen both because read ops or failed write ops don't
1135  * change serial number, and also due to race since we access the
1136  * number unlocked (the race can cause less detectable ordering problems,
1137  * in which case we'll deadlock and report: fix manually in that case).
1138  */
1139 static void figure_deps(char *filename[], struct op *op[],
1140                         const TDB_DATA *key, struct key_user user[],
1141                         unsigned num_users, unsigned num_files)
1142 {
1143         /* We assume database starts empty. */
1144         const struct TDB_DATA *data = &tdb_null;
1145         unsigned int fuzz;
1146
1147         /* We prefer to keep strict serial order if possible: it's the
1148          * most likely.  We get more lax if that fails. */
1149         for (fuzz = 0; fuzz < 100; fuzz = (fuzz + 1)*2) {
1150                 if (sort_deps(filename, op, user, 0, num_users, key, data,
1151                               num_files, fuzz))
1152                         break;
1153         }
1154
1155         if (fuzz >= 100)
1156                 fail(filename[user[0].file], user[0].op_num+1,
1157                      "Could not resolve inter-dependencies");
1158
1159         check_dep_sorting(user, num_users, num_files);
1160 }
1161
1162 static void sort_ops(struct keyinfo hash[], char *filename[], struct op *op[],
1163                      unsigned int num)
1164 {
1165         unsigned int h;
1166
1167         /* Gcc nexted function extension.  How cool is this? */
1168         int compare_serial(const void *_a, const void *_b)
1169         {
1170                 const struct key_user *a = _a, *b = _b;
1171
1172                 /* First, maintain order within any trace file. */
1173                 if (a->file == b->file)
1174                         return a->op_num - b->op_num;
1175
1176                 /* Otherwise, arrange by serial order. */
1177                 return op[a->file][a->op_num].serial
1178                         - op[b->file][b->op_num].serial;
1179         }
1180
1181         /* Now sort into serial order. */
1182         for (h = 0; h < total_keys * 2; h++) {
1183                 struct key_user *user = hash[h].user;
1184
1185                 qsort(user, hash[h].num_users, sizeof(user[0]), compare_serial);
1186                 figure_deps(filename, op, &hash[h].key, user, hash[h].num_users,
1187                             num);
1188         }
1189 }
1190
1191 static int destroy_depend(struct depend *dep)
1192 {
1193         list_del(&dep->pre_list);
1194         list_del(&dep->post_list);
1195         return 0;
1196 }
1197
1198 static void add_dependency(void *ctx,
1199                            struct op *op[],
1200                            char *filename[],
1201                            unsigned int needs_file,
1202                            unsigned int needs_opnum,
1203                            unsigned int satisfies_file,
1204                            unsigned int satisfies_opnum)
1205 {
1206         struct depend *dep;
1207
1208         /* We don't depend on ourselves. */
1209         if (needs_file == satisfies_file) {
1210                 assert(satisfies_opnum < needs_opnum);
1211                 return;
1212         }
1213
1214 #if DEBUG_DEPS
1215         printf("%s:%u: depends on %s:%u\n",
1216                filename[needs_file], needs_opnum+1,
1217                filename[satisfies_file], satisfies_opnum+1);
1218 #endif
1219
1220 #if TRAVERSALS_TAKE_TRANSACTION_LOCK
1221         /* If something in a traverse depends on something in another
1222          * traverse/transaction, it creates a dependency between the
1223          * two groups. */
1224         if ((in_traverse(op[satisfies_file], satisfies_opnum)
1225              && op[needs_file][needs_opnum].group_start)
1226             || (in_traverse(op[needs_file], needs_opnum)
1227                 && op[satisfies_file][satisfies_opnum].group_start)) {
1228                 unsigned int sat;
1229
1230                 /* We are satisfied by end of group. */
1231                 sat = op[satisfies_file][satisfies_opnum].group_start;
1232                 satisfies_opnum = sat + op[satisfies_file][sat].group_len;
1233                 /* And we need that done by start of our group. */
1234                 needs_opnum = op[needs_file][needs_opnum].group_start;
1235         }
1236
1237         /* There is also this case:
1238          *  <traverse> <read foo> ...
1239          *  <transaction> ... </transaction> <create foo>
1240          * Where if we start the traverse then wait, we could block
1241          * the transaction and deadlock.
1242          *
1243          * We try to address this by ensuring that where seqnum indicates it's
1244          * possible, we wait for <create foo> before *starting* traverse.
1245          */
1246         else if (in_traverse(op[needs_file], needs_opnum)) {
1247                 struct op *need = &op[needs_file][needs_opnum];
1248                 if (op[needs_file][need->group_start].serial >
1249                     op[satisfies_file][satisfies_opnum].serial) {
1250                         needs_opnum = need->group_start;
1251                 }
1252         }
1253 #endif
1254
1255         /* If you depend on a transaction, you actually depend on it ending. */
1256         if (is_transaction(&op[satisfies_file][satisfies_opnum])) {
1257                 satisfies_opnum
1258                         += op[satisfies_file][satisfies_opnum].group_len;
1259 #if DEBUG_DEPS
1260                 printf("-> Actually end of transaction %s:%u\n",
1261                        filename[satisfies_file], satisfies_opnum+1);
1262 #endif
1263         } else
1264                 /* We should never create a dependency from middle of
1265                  * a transaction. */
1266                 assert(!in_transaction(op[satisfies_file], satisfies_opnum)
1267                        || op[satisfies_file][satisfies_opnum].op
1268                        == OP_TDB_TRANSACTION_COMMIT
1269                        || op[satisfies_file][satisfies_opnum].op
1270                        == OP_TDB_TRANSACTION_CANCEL);
1271
1272         assert(op[needs_file][needs_opnum].op != OP_TDB_TRAVERSE);
1273         assert(op[satisfies_file][satisfies_opnum].op != OP_TDB_TRAVERSE);
1274
1275         dep = talloc(ctx, struct depend);
1276         dep->needs_file = needs_file;
1277         dep->needs_opnum = needs_opnum;
1278         dep->satisfies_file = satisfies_file;
1279         dep->satisfies_opnum = satisfies_opnum;
1280         list_add(&op[satisfies_file][satisfies_opnum].post, &dep->post_list);
1281         list_add(&op[needs_file][needs_opnum].pre, &dep->pre_list);
1282         talloc_set_destructor(dep, destroy_depend);
1283 }
1284
1285 static bool changes_db(const TDB_DATA *key, const struct op *op)
1286 {
1287         return gives(key, NULL, op) != NULL;
1288 }
1289
1290 static void depend_on_previous(struct op *op[],
1291                                char *filename[],
1292                                unsigned int num,
1293                                struct key_user user[],
1294                                unsigned int i,
1295                                int prev)
1296 {
1297         bool deps[num];
1298         int j;
1299
1300         if (i == 0)
1301                 return;
1302
1303         if (prev == i - 1) {
1304                 /* Just depend on previous. */
1305                 add_dependency(NULL, op, filename,
1306                                user[i].file, user[i].op_num,
1307                                user[prev].file, user[prev].op_num);
1308                 return;
1309         }
1310
1311         /* We have to wait for the readers.  Find last one in *each* file. */
1312         memset(deps, 0, sizeof(deps));
1313         deps[user[i].file] = true;
1314         for (j = i - 1; j > prev; j--) {
1315                 if (!deps[user[j].file]) {
1316                         add_dependency(NULL, op, filename,
1317                                        user[i].file, user[i].op_num,
1318                                        user[j].file, user[j].op_num);
1319                         deps[user[j].file] = true;
1320                 }
1321         }
1322 }
1323
1324 /* This is simple, but not complete.  We don't take into account
1325  * indirect dependencies. */
1326 static void optimize_dependencies(struct op *op[], unsigned int num_ops[],
1327                                   unsigned int num)
1328 {
1329         unsigned int i, j;
1330
1331         /* There can only be one real dependency on each file */
1332         for (i = 0; i < num; i++) {
1333                 for (j = 1; j < num_ops[i]; j++) {
1334                         struct depend *dep, *next;
1335                         struct depend *prev[num];
1336
1337                         memset(prev, 0, sizeof(prev));
1338
1339                         list_for_each_safe(&op[i][j].pre, dep, next, pre_list) {
1340                                 if (!prev[dep->satisfies_file]) {
1341                                         prev[dep->satisfies_file] = dep;
1342                                         continue;
1343                                 }
1344                                 if (prev[dep->satisfies_file]->satisfies_opnum
1345                                     < dep->satisfies_opnum) {
1346                                         talloc_free(prev[dep->satisfies_file]);
1347                                         prev[dep->satisfies_file] = dep;
1348                                 } else
1349                                         talloc_free(dep);
1350                         }
1351                 }
1352         }
1353
1354         for (i = 0; i < num; i++) {
1355                 int deps[num];
1356
1357                 for (j = 0; j < num; j++)
1358                         deps[j] = -1;
1359
1360                 for (j = 1; j < num_ops[i]; j++) {
1361                         struct depend *dep, *next;
1362
1363                         list_for_each_safe(&op[i][j].pre, dep, next, pre_list) {
1364                                 if (deps[dep->satisfies_file]
1365                                     >= (int)dep->satisfies_opnum)
1366                                         talloc_free(dep);
1367                                 else
1368                                         deps[dep->satisfies_file]
1369                                                 = dep->satisfies_opnum;
1370                         }
1371                 }
1372         }
1373 }
1374
1375 static void derive_dependencies(char *filename[],
1376                                 struct op *op[], unsigned int num_ops[],
1377                                 unsigned int num)
1378 {
1379         struct keyinfo *hash;
1380         unsigned int h, i;
1381
1382         /* Create hash table for faster key lookup. */
1383         hash = hash_ops(op, num_ops, num);
1384
1385         /* Sort them by serial number. */
1386         sort_ops(hash, filename, op, num);
1387
1388         /* Create dependencies back to the last change, rather than
1389          * creating false dependencies by naively making each one
1390          * depend on the previous.  This has two purposes: it makes
1391          * later optimization simpler, and it also avoids deadlock with
1392          * same sequence number ops inside traversals (if one
1393          * traversal doesn't write anything, two ops can have the same
1394          * sequence number yet we can create a traversal dependency
1395          * the other way). */
1396         for (h = 0; h < total_keys * 2; h++) {
1397                 int prev = -1;
1398
1399                 if (hash[h].num_users < 2)
1400                         continue;
1401
1402                 for (i = 0; i < hash[h].num_users; i++) {
1403                         if (changes_db(&hash[h].key, &op[hash[h].user[i].file]
1404                                        [hash[h].user[i].op_num])) {
1405                                 depend_on_previous(op, filename, num,
1406                                                    hash[h].user, i, prev);
1407                                 prev = i;
1408                         } else if (prev >= 0)
1409                                 add_dependency(hash, op, filename,
1410                                                hash[h].user[i].file,
1411                                                hash[h].user[i].op_num,
1412                                                hash[h].user[prev].file,
1413                                                hash[h].user[prev].op_num);
1414                 }
1415         }
1416
1417         optimize_dependencies(op, num_ops, num);
1418 }
1419
1420 int main(int argc, char *argv[])
1421 {
1422         struct timeval start, end;
1423         unsigned int i, num_ops[argc], hashsize[argc], tdb_flags[argc], open_flags[argc];
1424         struct op *op[argc];
1425         int fds[2];
1426         char c;
1427         bool ok = true;
1428
1429         if (argc < 3)
1430                 errx(1, "Usage: %s <tdbfile> <tracefile>...", argv[0]);
1431
1432         pipes = talloc_array(NULL, struct pipe, argc - 2);
1433         for (i = 0; i < argc - 2; i++) {
1434                 printf("Loading tracefile %s...", argv[2+i]);
1435                 fflush(stdout);
1436                 op[i] = load_tracefile(argv[2+i], &num_ops[i], &hashsize[i],
1437                                        &tdb_flags[i], &open_flags[i]);
1438                 if (pipe(pipes[i].fd) != 0)
1439                         err(1, "creating pipe");
1440                 printf("done\n");
1441         }
1442
1443         printf("Calculating inter-dependencies...");
1444         fflush(stdout);
1445         derive_dependencies(argv+2, op, num_ops, i);
1446         printf("done\n");
1447
1448         /* Don't fork for single arg case: simple debugging. */
1449         if (argc == 3) {
1450                 struct tdb_context *tdb;
1451                 tdb = tdb_open_ex(argv[1], hashsize[0], tdb_flags[0],
1452                                   open_flags[0], 0600,
1453                                   NULL, hash_key);
1454                 printf("Single threaded run...");
1455                 fflush(stdout);
1456
1457                 run_ops(tdb, pipes[0].fd[0], argv+2, op, 0, 1, num_ops[0]);
1458                 check_deps(argv[2], op[0], num_ops[0]);
1459
1460                 printf("done\n");
1461                 exit(0);
1462         }
1463
1464         if (pipe(fds) != 0)
1465                 err(1, "creating pipe");
1466
1467         for (i = 0; i < argc - 2; i++) {
1468                 struct tdb_context *tdb;
1469
1470                 switch (fork()) {
1471                 case -1:
1472                         err(1, "fork failed");
1473                 case 0:
1474                         close(fds[1]);
1475                         tdb = tdb_open_ex(argv[1], hashsize[i], tdb_flags[i],
1476                                           open_flags[i], 0600,
1477                                           NULL, hash_key);
1478                         if (!tdb)
1479                                 err(1, "Opening tdb %s", argv[1]);
1480
1481                         /* This catches parent exiting. */
1482                         if (read(fds[0], &c, 1) != 1)
1483                                 exit(1);
1484                         run_ops(tdb, pipes[i].fd[0], argv+2, op, i, 1,
1485                                 num_ops[i]);
1486                         check_deps(argv[2+i], op[i], num_ops[i]);
1487                         exit(0);
1488                 default:
1489                         break;
1490                 }
1491         }
1492
1493         /* Let everything settle. */
1494         sleep(1);
1495
1496         printf("Starting run...");
1497         fflush(stdout);
1498         gettimeofday(&start, NULL);
1499         /* Tell them all to go!  Any write of sufficient length will do. */
1500         if (write(fds[1], hashsize, i) != i)
1501                 err(1, "Writing to wakeup pipe");
1502
1503         for (i = 0; i < argc - 2; i++) {
1504                 int status;
1505                 wait(&status);
1506                 if (!WIFEXITED(status)) {
1507                         warnx("Child died with signal %i", WTERMSIG(status));
1508                         ok = false;
1509                 } else if (WEXITSTATUS(status) != 0)
1510                         /* Assume child spat out error. */
1511                         ok = false;
1512         }
1513         if (!ok)
1514                 exit(1);
1515
1516         gettimeofday(&end, NULL);
1517         printf("done\n");
1518
1519         end.tv_sec -= start.tv_sec;
1520         printf("Time replaying: %lu usec\n",
1521                end.tv_sec * 1000000UL + (end.tv_usec - start.tv_usec));
1522         
1523         exit(0);
1524 }