File: devcount.c

package info (click to toggle)
sanlock 2.2-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,124 kB
  • ctags: 1,917
  • sloc: ansic: 12,971; python: 896; sh: 440; makefile: 227
file content (1574 lines) | stat: -rw-r--r-- 35,168 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/un.h>
#include <sys/mount.h>
#include <sys/signalfd.h>
#include <inttypes.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stddef.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <limits.h>
#include <time.h>
#include <signal.h>

#include "sanlock.h"
#include "sanlock_admin.h"
#include "sanlock_resource.h"
#include "sanlock_direct.h"

#define ONEMB 1048576
#define LEASE_SIZE ONEMB

FILE *turn_file;

char count_path[PATH_MAX];
char lock_path[PATH_MAX];
int count_offset;
int lock_offset;
int our_hostid;
int max_hostid;
struct sanlk_lockspace lockspace;

struct entry {
	uint32_t turn;
	uint32_t hostid;
	uint64_t pid;
	uint64_t time;
	uint64_t count;

	uint32_t last_turn;
	uint32_t last_hostid;
	uint64_t last_pid;
	uint64_t last_time;
	uint64_t last_count;
};

#define log_debug(fmt, args...) \
do { \
	printf("%llu " fmt "\n", (unsigned long long)time(NULL), ##args); \
} while (0)

#define log_error(fmt, args...) \
do { \
	printf("ERROR %llu " fmt "\n", (unsigned long long)time(NULL), ##args); \
} while (0)

static void sigterm_handler(int sig)
{
	log_debug("sigterm_handler %d", sig);
}

static void setup_sigterm(void)
{
	struct sigaction act;
	memset(&act, 0, sizeof(act));
	act.sa_handler = sigterm_handler;
	sigaction(SIGTERM, &act, NULL);
}

static int kill_pid(int pid)
{
	int rv, status;

	kill(pid, SIGKILL);

	while (1) {
		rv = waitpid(pid, &status, 0);
		if (rv < 0)
			return -1;
		if (rv != pid)
			return -2;

		if (WIFEXITED(status))
			return 0;
	}
}

/* kill(pid, SIGSTOP) would be nice, but that won't guarantee
   the pid has finished all i/o when it returns.

   Instead, we send SIGUSR1, which child sees after it's done
   with a (synchronous) write, and calls SIGSTOP on itself */

static void pause_pid(int pid, int child_stderr)
{
	char buf[64];
	int rv;

	kill(pid, SIGUSR1);

	/* child prints "we_are_paused" to stderr before stopping */

	memset(buf, 0, sizeof(buf));

	rv = read(child_stderr, buf, sizeof(buf));

	if (strstr(buf, "we_are_paused"))
		return;

	while (1) {
		log_error("pause_pid %d read %s", pid, buf);
		sleep(2);
	}
}

static void resume_pid(int pid)
{
	kill(pid, SIGCONT);
}

static int check_pause(int fd)
{
	struct signalfd_siginfo fdsi;
	ssize_t rv;

	rv = read(fd, &fdsi, sizeof(struct signalfd_siginfo));
	if (rv != sizeof(struct signalfd_siginfo)) {
		return 0;
	}
	if (fdsi.ssi_signo == SIGUSR1) {
		return 1;
	}
	return 0;
}

static int setup_pause(void)
{
	sigset_t mask;
	int fd, rv;

	sigemptyset(&mask);
	sigaddset(&mask, SIGUSR1);

	rv = sigprocmask(SIG_BLOCK, &mask, NULL);
	if (rv < 0)
		return rv;

	fd = signalfd(-1, &mask, SFD_NONBLOCK);
	if (fd < 0)
		return -errno;

	return fd;
}

static int rand_int(int a, int b)
{
	return a + (int) (((float)(b - a + 1)) * random() / (RAND_MAX+1.0)); 
}

/* 64 byte entry: can fit up to 8 nodes in a 512 byte block */

void print_entries(char *path, int pid, char *buf)
{
	struct entry *e = (struct entry *)buf;
	int i;

	for (i = 0; i < (512 / sizeof(struct entry)); i++) {
		log_error("%s c %d index %d turn %u time %llu %u:%llu:%llu "
		       "last %u %llu %u:%llu:%llu",
		       path,
		       pid,
		       i,
		       e->turn,
		       (unsigned long long)e->time,
		       e->hostid,
		       (unsigned long long)e->pid,
		       (unsigned long long)e->count,
		       e->last_turn,
		       (unsigned long long)e->last_time,
		       e->last_hostid,
		       (unsigned long long)e->last_pid,
		       (unsigned long long)e->last_count);
		e++;
	}
}

void print_our_we(char *path, int pid, int writes, struct entry *our_we,
		  const char *stage)
{
	log_debug("%s c %d %s w %d index %d turn %u time %llu %u:%llu:%llu "
		"last %u %llu %u:%llu:%llu",
		path,
		pid,
		stage,
		writes,
		our_hostid - 1,
		our_we->turn,
		(unsigned long long)our_we->time,
		our_we->hostid,
		(unsigned long long)our_we->pid,
		(unsigned long long)our_we->count,
		our_we->last_turn,
		(unsigned long long)our_we->last_time,
		our_we->last_hostid,
		(unsigned long long)our_we->last_pid,
		(unsigned long long)our_we->last_count);
}

#define COUNT_ARGS 6
#define LOCK_ARGS 8
#define MIGRATE_ARGS 9

/*
 * devcount rw|wr <count_disk> <sec1> <sec2> <hostid>
 */

static int do_count(int argc, char *argv[])
{
	char *rbuf, **p_rbuf, *wbuf, **p_wbuf, *vbuf, **p_vbuf;
	struct entry *re, *max_re, *our_we;
	int i, fd, rv, error, max_i;
	int pause_fd;
	time_t start;
	uint32_t our_pid = getpid();
	uint32_t max_turn;
	int sec1, sec2;
	int read_seconds, write_seconds;
	uint32_t writes = 0;

	if (argc < COUNT_ARGS)
		return -1;

	pause_fd = setup_pause();

	strcpy(count_path, argv[2]);
	sec1 = atoi(argv[3]);
	sec2 = atoi(argv[4]);
	our_hostid = atoi(argv[5]);

	if (!strcmp(argv[1], "rw")) {
		read_seconds = sec1;
		write_seconds = sec2;
	} else {
		write_seconds = sec1;
		read_seconds = sec2;
	}

	/*
	printf("%d %s count_disk %s sec1 %d sec2 %d our_hostid %d\n",
	       our_pid, argv[1], count_path, sec1, sec2, our_hostid);
	*/

	fd = open(count_path, O_RDWR | O_DIRECT | O_SYNC, 0);
	if (fd < 0) {
		perror("open failed");
		error = 1;
		goto fail;
	}

	rv = ioctl(fd, BLKFLSBUF);
	if (rv) {
		perror("BLKFLSBUF failed");
		error = 2;
		goto fail;
	}

	p_rbuf = &rbuf;
	p_wbuf = &wbuf;
	p_vbuf = &vbuf;

	rv = posix_memalign((void *)p_rbuf, getpagesize(), 512);
	if (rv) {
		perror("posix_memalign failed");
		error = 3;
		goto fail;
	}

	rv = posix_memalign((void *)p_wbuf, getpagesize(), 512);
	if (rv) {
		perror("posix_memalign failed");
		error = 4;
		goto fail;
	}

	rv = posix_memalign((void *)p_vbuf, getpagesize(), 512);
	if (rv) {
		perror("posix_memalign failed");
		error = 5;
		goto fail;
	}

	lseek(fd, count_offset, SEEK_SET);

	rv = read(fd, rbuf, 512);
	if (rv != 512) {
		perror("read failed");
		error = 6;
		goto fail;
	}

	/* print_entries(our_pid, rbuf); */

	/*
	 * reading for "rw"
	 */

	if (!strcmp(argv[1], "rw")) {
		for (i = 0; i < read_seconds; i++) {
			sleep(1);

			lseek(fd, count_offset, SEEK_SET);

			rv = read(fd, vbuf, 512);
			if (rv != 512) {
				perror("read failed");
				error = 7;
				goto fail;
			}

			if (memcmp(rbuf, vbuf, 512)) {
				log_error("%s c %d rbuf:", count_path, our_pid);
				print_entries(count_path, our_pid, rbuf);
				log_error("%s c %d vbuf:", count_path, our_pid);
				print_entries(count_path, our_pid, vbuf);
				error = 8;
				goto fail;
			}
		}
	}

	/*
	 * writing
	 */

	re = (struct entry *)rbuf;
	max_re = NULL;
	max_i = 0;
	max_turn = 0;

	for (i = 0; i < (512 / sizeof(struct entry)); i++) {
		if (!max_re || re->count > max_re->count) {
			max_re = re;
			max_i = i;
		}
		if (!max_turn || re->turn > max_turn)
			max_turn = re->turn;
		re++;
	}

	if (max_turn != max_re->turn) {
		log_error("%s c %d max_turn %d max_re->turn %d\n",
			  count_path, our_pid, max_turn, max_re->turn);
		error = 9;
		goto fail;
	}

	/*
	printf("%d max index %d turn %d count %llu\n", our_pid,
	       max_i, max_turn, (unsigned long long)max_re->count);
	*/

	memcpy(wbuf, rbuf, 512);

	our_we = (struct entry *)(wbuf +
			((our_hostid - 1) * sizeof(struct entry)));

	our_we->last_turn	= max_re->turn;
	our_we->last_hostid	= max_re->hostid;
	our_we->last_pid	= max_re->pid;
	our_we->last_time	= max_re->time;
	our_we->last_count	= max_re->count;

	our_we->turn		= max_re->turn + 1;
	our_we->hostid		= our_hostid;
	our_we->pid		= our_pid;
	our_we->time		= time(NULL);
	our_we->count		= max_re->count + 1;

	lseek(fd, count_offset, SEEK_SET);

	rv = write(fd, wbuf, 512);
	if (rv != 512) {
		perror("write failed");
		error = 10;
		goto fail;
	}
	writes = 1;

	print_our_we(count_path, our_pid, writes, our_we, "begin");

	start = time(NULL);

	while (1) {
		our_we->count++;
		our_we->time = time(NULL);

		lseek(fd, count_offset, SEEK_SET);

		rv = write(fd, wbuf, 512);
		if (rv != 512) {
			perror("write failed");
			error = 11;
			goto fail;
		}
		writes++;

		if (write_seconds && (our_we->time - start >= write_seconds))
			break;

		if (!(writes % 64) && check_pause(pause_fd)) {
			print_our_we(count_path, our_pid, writes, our_we, "pause");
			fprintf(stderr, "we_are_paused\n");
			raise(SIGSTOP);
			/* this shouldn't appear until parent does kill(SIGCONT) */
			print_our_we(count_path, our_pid, writes, our_we, "resume");
		}
	}

	print_our_we(count_path, our_pid, writes, our_we, "end");

	if (turn_file) {
		fprintf(turn_file, "turn %03u start %llu end %llu host %u pid %u\n",
			our_we->turn,
			(unsigned long long)(max_re->count + 1),
			(unsigned long long)our_we->count,
			our_hostid, our_pid);
		fflush(turn_file);
		fclose(turn_file);
	}

	/*
	 * reading for "wr"
	 */

	if (!strcmp(argv[1], "wr")) {
		memcpy(rbuf, wbuf, 512);

		for (i = 0; i < read_seconds; i++) {
			sleep(1);

			lseek(fd, count_offset, SEEK_SET);

			rv = read(fd, vbuf, 512);
			if (rv != 512) {
				perror("read failed");
				error = 12;
				goto fail;
			}

			if (memcmp(rbuf, vbuf, 512)) {
				log_error("%s c %d rbuf:", count_path, our_pid);
				print_entries(count_path, our_pid, rbuf);
				log_error("%s c %d vbuf:", count_path, our_pid);
				print_entries(count_path, our_pid, vbuf);
				error = 13;
				goto fail;
			}
		}
	}

	return 0;
 fail:
	fprintf(stderr, "error %d\n", error);
	while (1) {
		log_error("%s c %d error %d", count_path, our_pid, error);
		print_entries(count_path, our_pid, rbuf);
		print_entries(count_path, our_pid, vbuf);
		sleep(2);
	}
}

static int add_lockspace(void)
{
	int rv;

	strcpy(lockspace.name, "devcount");
	strcpy(lockspace.host_id_disk.path, lock_path);
	lockspace.host_id_disk.offset = lock_offset;
	lockspace.host_id = our_hostid;

	rv = sanlock_add_lockspace(&lockspace, 0);

	log_debug("%s p %d sanlock_add_lockspace %d",
		  lock_path, getpid(), rv);

	return rv;
}

/*
 * Test inquire and acquire with version
 *
 * lock:
 * acquire (no lver)
 * if fail
 *   goto lock;
 * else
 *   goto run;
 *
 * relock:
 * acquire with saved lver
 * if fail (others may acquire in lock:)
 *   sigkill pid;
 *   goto lock;
 * else
 *   sigcont pid;
 *   goto run;
 *
 * run:
 * run rw for a while
 * inquire pid
 * save lver
 * sigstop pid
 * release ALL
 * goto relock
 *
 */

static int do_relock(int argc, char *argv[])
{
	char *av[COUNT_ARGS+1];
	struct sanlk_resource *res, *res_inq;
	int i, j, pid, rv, sock, len, status;
	int c2p[2]; /* child to parent */
	int res_count;
	uint32_t parent_pid = getpid();
	uint64_t lver;
	char *state;

	if (argc < LOCK_ARGS)
		return -1;

	count_offset = 0;

	strcpy(lock_path, argv[2]);
	strcpy(count_path, argv[4]);
	our_hostid = atoi(argv[7]);

	add_lockspace();

	len = sizeof(struct sanlk_resource) + sizeof(struct sanlk_disk);
	res = malloc(len);
	memset(res, 0, len);
	strcpy(res->lockspace_name, lockspace.name);
	snprintf(res->name, SANLK_NAME_LEN, "resource%s", count_path);
	res->name[SANLK_NAME_LEN-1] = '\0';
	res->num_disks = 1;
	strncpy(res->disks[0].path, lock_path, SANLK_PATH_LEN);
	res->disks[0].path[SANLK_PATH_LEN-1] = '\0';
	res->disks[0].offset = LEASE_SIZE;

	/* 
	 * argv[0] = devcount
	 * argv[1] = relock
	 * argv[2] = <lock_disk>
	 * argv[3] = rw
	 * start copying at argv[3]
	 */

	j = 0;
	av[j++] = strdup(argv[0]);
	for (i = 3; i < LOCK_ARGS; i++)
		av[j++] = strdup(argv[i]);
	av[j] = NULL;

	while (1) {
		pipe(c2p);

		pid = fork();
		if (!pid) {
			int child_pid = getpid();

			sock = sanlock_register();
			if (sock < 0) {
				log_error("%s c %d sanlock_register error %d",
					  count_path, child_pid, sock);
				exit(-1);
			}

			res->flags = 0;
			res->lver = 0;

			rv = sanlock_acquire(sock, -1, 0, 1, &res, NULL);
			if (rv < 0) {
				log_debug("%s c %d sanlock_acquire error %d",
					  count_path, child_pid, rv);
				/* all hosts are trying to acquire so we
				   expect this to acquire only sometimes;
				   TODO: exit with an error for some rv's */
				exit(0);
			}
			log_debug("%s c %d sanlock_acquire done",
				  count_path, child_pid);

			rv = sanlock_restrict(sock, SANLK_RESTRICT_ALL);
			if (rv < 0) {
				log_error("%s c %d sanlock_restrict error %d",
					  count_path, child_pid, sock);
				exit(-1);
			}

			/* make child's stderr go to parent c2p[0] */
			close(2);
			dup(c2p[1]);
			close(c2p[0]);
			close(c2p[1]);

			execv(av[0], av);
			perror("execv devcount problem");
			exit(EXIT_FAILURE);
		}

 run_more:
		/* let the child run for 30 seconds before stopping it */

		for (i = 0; i < 30; i++) {
			rv = waitpid(pid, &status, WNOHANG);
			if (rv == pid)
				break;
			sleep(1);
		}

		/* we expect child to exit when it fails to acquire the lock
		   because it's held by someone else, or rw run time is up */

		if (rv == pid)
			goto dead_child;

		rv = sanlock_inquire(-1, pid, 0, &res_count, &state);
		if (rv == -EBUSY) {
			/* pid probably still busy doing acquire */
			goto run_more;
		}
		if (rv == -ESTALE || rv == -ESRCH) {
			/* pid has exited */
			goto run_more;
		}
		if (rv < 0) {
			log_error("%s p %d sanlock_inquire c %d error %d",
				  count_path, parent_pid, pid, rv);
			goto run_more;
		}
		rv = sanlock_str_to_res(state, &res_inq);
		if (rv < 0) {
			log_error("%s p %d sanlock_str_to_res error %d %s",
				  count_path, parent_pid, rv, state);
			goto fail;
		}
		lver = res_inq->lver;

		log_debug("%s p %d sanlock_inquire c %d lver %llu done",
			  count_path, parent_pid, pid, (unsigned long long)lver);

		free(res_inq);
		free(state);

		pause_pid(pid, c2p[0]);
		log_debug("%s p %d paused c %d", count_path, parent_pid, pid);

		rv = sanlock_release(-1, pid, SANLK_REL_ALL, 0, NULL);
		if (rv < 0) {
			/* pid may have exited */
			log_error("%s p %d sanlock_release c %d error %d",
				  count_path, parent_pid, pid, rv);
			goto kill_child;
		}

		log_debug("%s p %d sanlock_release c %d done",
			  count_path, parent_pid, pid);

		/* give a chance to someone else to acquire the lock in here */
		usleep(1000000);

		res->flags = SANLK_RES_LVER;
		res->lver = lver;

		rv = sanlock_acquire(-1, pid, 0, 1, &res, NULL);
		if (!rv) {
			/* we got the lock back in the same version */

			log_debug("%s p %d sanlock_acquire c %d lver %llu done",
				  count_path, parent_pid, pid,
				  (unsigned long long)lver);

			resume_pid(pid);
			goto run_more;
		}

		/* someone got the lock between our release and reacquire */

		log_debug("%s p %d sanlock_acquire c %d lver %llu error %d",
			  count_path, parent_pid, pid, (unsigned long long)lver, rv);

 kill_child:
		kill_pid(pid);
		log_debug("%s p %d killed c %d", count_path, parent_pid, pid);
 dead_child:
		close(c2p[0]);
		close(c2p[1]);
		sleep(rand_int(0, 1));
	}

 fail:
	printf("test failed...\n");
	sleep(1000000);
	return -1;
}

/*
 * devcount lock <lock_disk> rw <count_disk> <sec1> <sec2> <hostid>
 * sanlock add_lockspace -s devcount:<hostid>:<lock_disk>:0
 * devcount rw <count_disk> <sec1> <sec2> <hostid>
 */

static int do_lock(int argc, char *argv[])
{
	char *av[COUNT_ARGS+1];
	struct sanlk_resource *res;
	int i, j, pid, rv, sock, len, status;

	if (argc < LOCK_ARGS)
		return -1;

	count_offset = 0;

	strcpy(lock_path, argv[2]);
	strcpy(count_path, argv[4]);
	our_hostid = atoi(argv[7]);

	add_lockspace();

	len = sizeof(struct sanlk_resource) + sizeof(struct sanlk_disk);
	res = malloc(len);
	memset(res, 0, len);
	strcpy(res->lockspace_name, lockspace.name);
	snprintf(res->name, SANLK_NAME_LEN, "resource%s", count_path);
	res->name[SANLK_NAME_LEN-1] = '\0';
	res->num_disks = 1;
	strncpy(res->disks[0].path, lock_path, SANLK_PATH_LEN);
	res->disks[0].path[SANLK_PATH_LEN-1] = '\0';
	res->disks[0].offset = LEASE_SIZE;

	/* 
	 * argv[0] = devcount
	 * argv[1] = lock
	 * argv[2] = <lock_disk>
	 * argv[3] = rw
	 * start copying at argv[3]
	 */

	j = 0;
	av[j++] = strdup(argv[0]);
	for (i = 3; i < LOCK_ARGS; i++)
		av[j++] = strdup(argv[i]);
	av[j] = NULL;

	while (1) {
		pid = fork();
		if (!pid) {
			int child_pid = getpid();

			sock = sanlock_register();
			if (sock < 0) {
				log_error("%s c %d sanlock_register error %d",
					  count_path, child_pid, sock);
				exit(-1);
			}

			rv = sanlock_acquire(sock, -1, 0, 1, &res, NULL);
			if (rv < 0) {
				log_debug("%s c %d sanlock_acquire error %d",
					  count_path, child_pid, rv);
				/* all hosts are trying to acquire so we
				   expect this to acquire only sometimes;
				   TODO: exit with an error for some rv's */
				exit(0);
			}
			log_debug("%s c %d sanlock_acquire done",
				  count_path, child_pid);

			execv(av[0], av);
			perror("execv devcount problem");
			exit(EXIT_FAILURE);
		}

		waitpid(pid, &status, 0);

		/* TODO: goto fail if exit status is an error */

		sleep(rand_int(0, 1));
	}

	printf("test failed...\n");
	sleep(1000000);
	return -1;
}

static int do_wrap(int argc, char *argv[])
{
	char *av[COUNT_ARGS+1];
	struct sanlk_resource *res;
	int i, j, rv, sock, len;
	uint32_t pid = getpid();

	if (argc < LOCK_ARGS)
		return -1;

	count_offset = 0;

	strcpy(lock_path, argv[2]);
	strcpy(count_path, argv[4]);
	our_hostid = atoi(argv[7]);

	add_lockspace();

	len = sizeof(struct sanlk_resource) + sizeof(struct sanlk_disk);
	res = malloc(len);
	memset(res, 0, len);
	strcpy(res->lockspace_name, lockspace.name);
	snprintf(res->name, SANLK_NAME_LEN, "resource%s", count_path);
	res->name[SANLK_NAME_LEN-1] = '\0';
	res->num_disks = 1;
	strncpy(res->disks[0].path, lock_path, SANLK_PATH_LEN);
	res->disks[0].path[SANLK_PATH_LEN-1] = '\0';
	res->disks[0].offset = LEASE_SIZE;

	/* 
	 * argv[0] = devcount
	 * argv[1] = wrap 
	 * argv[2] = <lock_disk>
	 * argv[3] = rw
	 * start copying at argv[3]
	 */

	j = 0;
	av[j++] = strdup(argv[0]);
	for (i = 3; i < LOCK_ARGS; i++)
		av[j++] = strdup(argv[i]);
	av[j] = NULL;

	sock = sanlock_register();
	if (sock < 0) {
		log_error("%s c %d sanlock_register error %d",
			  count_path, pid, sock);
		exit(-1);
	}

	rv = sanlock_restrict(sock, SANLK_RESTRICT_SIGKILL);
	if (rv < 0) {
		log_error("%s c %d sanlock_restrict error %d",
			  count_path, pid, sock);
		exit(-1);
	}

	rv = sanlock_acquire(sock, -1, 0, 1, &res, NULL);
	if (rv < 0) {
		log_error("%s c %d sanlock_acquire error %d",
			  count_path, pid, rv);
		/* all hosts are trying to acquire so we
		   expect this to acquire only sometimes;
		   TODO: exit with an error for some rv's */
		exit(0);
	}
	log_debug("%s c %d sanlock_acquire done", count_path, pid);

	execv(av[0], av);
	perror("execv devcount problem");
	exit(EXIT_FAILURE);
}

/*
 * Test migration sequence (source inquires/releases, dest acquires lver)
 *
 * dest forks (e.g. libvirtd creates qemu pid)
 * dest child does sanlock_register, waits for parent (e.g. qemu incoming paused)
 * source parent does sanlock_inquire
 * source parent sigstop child, sanlock_release, writes state to disk
 * dest parent reads state from disk, sanlock_acquire(child_pid, state.lver)
 * dest parent tells child to run (e.g. qemu incoming resumed)
 * dest child execs rw
 * source parent sigkill child
 */

static void write_migrate_incoming(char *state_in)
{
	char target_str[32];
	char state[1024];
	char *wbuf, **p_wbuf;
	int fd, rv;
	int offset = 4096;
	int target;

	target = (our_hostid % max_hostid) + 1;

	memset(state, 0, sizeof(state));
	memset(target_str, 0, sizeof(target_str));
	sprintf(target_str, " target=%d", target);
	strcat(state, state_in);
	strcat(state, target_str);

	if (strlen(state) > 512) {
		printf("state string too long\n");
		goto fail;
	}

	fd = open(count_path, O_RDWR | O_DIRECT | O_SYNC, 0);
	if (fd < 0) {
		perror("open failed");
		goto fail;
	}

	rv = ioctl(fd, BLKFLSBUF);
	if (rv) {
		perror("BLKFLSBUF failed");
		goto fail;
	}

	p_wbuf = &wbuf;

	rv = posix_memalign((void *)p_wbuf, getpagesize(), 512);
	if (rv) {
		perror("posix_memalign failed");
		goto fail;
	}

	memset(wbuf, 0, 512);
	memcpy(wbuf, state, strlen(state));

	lseek(fd, offset, SEEK_SET);

	rv = write(fd, wbuf, 512);
	if (rv != 512) {
		perror("write failed");
		goto fail;
	}

	/* printf("write_migrate_incoming \"%s\"\n", wbuf); */
 
	close(fd);
	return;

 fail:
	printf("write_migrate %d failed %s\n", offset, state);
	sleep(10000000);
}

/* read incoming block until it's set and our_hostid is next */

static int wait_migrate_incoming(uint64_t *lver)
{
	struct sanlk_resource *res;
	char *rbuf, **p_rbuf, *wbuf, **p_wbuf;
	char *target_str, *val_str;
	int fd, rv, val;
	int offset = 4096;

	fd = open(count_path, O_RDWR | O_DIRECT | O_SYNC, 0);
	if (fd < 0) {
		perror("open failed");
		goto fail;
	}

	rv = ioctl(fd, BLKFLSBUF);
	if (rv) {
		perror("BLKFLSBUF failed");
		goto fail;
	}

	p_rbuf = &rbuf;
	p_wbuf = &wbuf;

	rv = posix_memalign((void *)p_rbuf, getpagesize(), 512);
	if (rv) {
		perror("posix_memalign failed");
		goto fail;
	}

	rv = posix_memalign((void *)p_wbuf, getpagesize(), 512);
	if (rv) {
		perror("posix_memalign failed");
		goto fail;
	}

 retry:
	lseek(fd, offset, SEEK_SET);

	rv = read(fd, rbuf, 512);
	if (rv != 512) {
		perror("read failed");
		goto fail;
	}
	rbuf[511] = '\0';

	/* init case to get things going */
	if (!rbuf[0] && our_hostid == 1) {
		*lver = 0;
		return 1;
	}

	target_str = strstr(rbuf, " target=");
	if (!target_str) {
		goto retry;
	}

	val_str = strstr(target_str, "=") + 1;
	if (!val_str) {
		goto retry;
	}

	val = atoi(val_str);
	if (val != our_hostid) {
		goto retry;
	}

	/* printf("wait_migrate_incoming \"%s\"\n", rbuf); */

	*target_str = '\0';

	rv = sanlock_str_to_res(rbuf, &res);
	if (rv < 0) {
		printf("str_to_res error %d\n", rv);
		goto fail;
	}
	*lver = res->lver;
	free(res);
	/* strcpy(state_out, rbuf); */

	memset(wbuf, 0, 512);
	sprintf(wbuf, "%s", "empty");

	lseek(fd, offset, SEEK_SET);

	rv = write(fd, wbuf, 512);
	if (rv != 512) {
		perror("write failed");
		goto fail;
	}

	close(fd);
	return 0;

 fail:
	printf("wait_migrate_incoming failed\n");
	sleep(10000000);
	return -1;
}

#define MAX_MIGRATE_STATE 512 /* keep in one block for simplicity */

static int do_migrate(int argc, char *argv[])
{
	char *av[MIGRATE_ARGS+1];
	struct sanlk_resource *res;
	int i, j, pid, rv, sock, len, init;
	int p2c[2]; /* parent to child */
	int c2p[2]; /* child to parent */
	int res_count;
	uint32_t parent_pid = getpid();
	uint64_t lver;
	char *state;

	if (argc < MIGRATE_ARGS)
		return -1;

	count_offset = 0;

	strcpy(lock_path, argv[2]);
	strcpy(count_path, argv[4]);
	our_hostid = atoi(argv[7]);
	max_hostid = atoi(argv[8]);

	add_lockspace();

	len = sizeof(struct sanlk_resource) + sizeof(struct sanlk_disk);
	res = malloc(len);
	memset(res, 0, len);
	strcpy(res->lockspace_name, lockspace.name);
	snprintf(res->name, SANLK_NAME_LEN, "resource%s", count_path);
	res->name[SANLK_NAME_LEN-1] = '\0';
	res->num_disks = 1;
	strncpy(res->disks[0].path, lock_path, SANLK_PATH_LEN);
	res->disks[0].path[SANLK_PATH_LEN-1] = '\0';
	res->disks[0].offset = LEASE_SIZE;

	/*
	 * argv[0] = devcount
	 * argv[1] = migrate
	 * argv[2] = <lock_disk>
	 * argv[3] = rw
	 * start copying at argv[3]
	 */

	j = 0;
	av[j++] = strdup(argv[0]);
	for (i = 3; i < MIGRATE_ARGS; i++)
		av[j++] = strdup(argv[i]);
	av[j] = NULL;

	while (1) {
		pipe(p2c);
		pipe(c2p);

		pid = fork();
		if (!pid) {
			int child_pid = getpid();
			char junk;

			sock = sanlock_register();
			if (sock < 0) {
				log_error("%s c %d sanlock_register error %d",
					  count_path, child_pid, sock);
				exit(-1);
			}

			log_debug("%s c %d wait", count_path, child_pid);

			read(p2c[0], &junk, 1);
			close(p2c[0]);
			close(p2c[1]);

			log_debug("%s c %d begin", count_path, child_pid);

			/* make child's stderr go to parent c2p[0] */
			close(2);
			dup(c2p[1]);
			close(c2p[0]);
			close(c2p[1]);

			execv(av[0], av);
			perror("execv devcount problem");
			exit(EXIT_FAILURE);
		}

		init = wait_migrate_incoming(&lver); /* from source */

		if (init) {
			res->flags = 0;
			res->lver = 0;
		} else {
			res->flags = SANLK_RES_LVER;
			res->lver = lver;
		}

		rv = sanlock_acquire(-1, pid, 0, 1, &res, NULL);
		if (rv < 0) {
			log_error("%s p %d sanlock_acquire c %d error %d",
				  count_path, parent_pid, pid, rv);
			exit(0);
		}
		log_debug("%s p %d sanlock_acquire c %d init %d lver %llu done",
			  count_path, parent_pid, pid, init,
			  (unsigned long long)lver);

		/* tell child to resume */
		write(p2c[1], "\n", 1);
		close(p2c[0]);
		close(p2c[1]);

		/* let the child run for 10 seconds before stopping it;
		   if the child exits before the 10 seconds, the sanlock_inquire
		   call should return an error */

		sleep(10);

		rv = sanlock_inquire(-1, pid, 0, &res_count, &state);
		if (rv < 0) {
			log_error("%s p %d sanlock_inquire c %d error %d",
				  count_path, parent_pid, pid, rv);
			goto fail;
		}
		log_debug("%s p %d sanlock_inquire c %d done",
			  count_path, parent_pid, pid);

		pause_pid(pid, c2p[0]);
		log_debug("%s p %d paused c %d", count_path, parent_pid, pid);

		rv = sanlock_release(-1, pid, SANLK_REL_ALL, 0, NULL);
		if (rv < 0) {
			log_error("%s p %d sanlock_release c %d error %d",
				  count_path, parent_pid, pid, rv);
			goto fail;
		}
		log_debug("%s p %d sanlock_release c %d done",
			  count_path, parent_pid, pid);

		write_migrate_incoming(state); /* to dest */

		kill_pid(pid);
		log_debug("%s p %d killed c %d", count_path, parent_pid, pid);
		close(c2p[0]);
		close(c2p[1]);
		free(state);
	}

 fail:
	printf("test failed...\n");
	sleep(10000000);
	return -1;
}

/*
 * dmsetup table /dev/bull/lock1 > /tmp/table-linear.txt
 * sed "s/linear/error/" /tmp/table-linear.txt > /tmp/table-error.txt
 *
 * dmsetup suspend /dev/bull/lock1
 * dmsetup load /dev/bull/lock1 /tmp/table-error.txt
 * dmsetup resume /dev/bull/lock1
 *
 * dmsetup suspend /dev/bull/lock1
 * dmsetup load /dev/bull/lock1 /tmp/table-linear.txt
 * dmsetup resume /dev/bull/lock1
 */

static void dmsetup_save_lock_disk(void)
{
	char cmd[128];
	sprintf(cmd, "./devcount-dmsetup save %s", lock_path);
	system(cmd);
}

static void dmsetup_error_lock_disk(void)
{
	char cmd[128];
	sprintf(cmd, "./devcount-dmsetup error %s", lock_path);
	system(cmd);
}

static void dmsetup_linear_lock_disk(void)
{
	char cmd[128];
	sprintf(cmd, "./devcount-dmsetup linear %s", lock_path);
	system(cmd);
}

int do_expire(int argc, char *argv[])
{
	char *av[COUNT_ARGS+1];
	struct sanlk_resource *res;
	uint32_t parent_pid = getpid();
	int i, j, pid, rv, sock, len, status;
	int c2p[2];
	char result[5];

	if (argc < LOCK_ARGS)
		return -1;

	count_offset = 0;

	strcpy(lock_path, argv[2]);
	strcpy(count_path, argv[4]);
	our_hostid = atoi(argv[7]);

	dmsetup_save_lock_disk();

	add_lockspace();

	len = sizeof(struct sanlk_resource) + sizeof(struct sanlk_disk);
	res = malloc(len);
	memset(res, 0, len);
	strcpy(res->lockspace_name, lockspace.name);
	snprintf(res->name, SANLK_NAME_LEN, "resource%s", count_path);
	res->name[SANLK_NAME_LEN-1] = '\0';
	res->num_disks = 1;
	strncpy(res->disks[0].path, lock_path, SANLK_PATH_LEN);
	res->disks[0].path[SANLK_PATH_LEN-1] = '\0';
	res->disks[0].offset = LEASE_SIZE;

	/* 
	 * argv[0] = devcount
	 * argv[1] = expire
	 * argv[2] = <lock_disk>
	 * argv[3] = rw
	 * start copying at argv[3]
	 */

	j = 0;
	av[j++] = strdup(argv[0]);
	for (i = 3; i < LOCK_ARGS; i++)
		av[j++] = strdup(argv[i]);
	av[j] = NULL;

	while (1) {
		pipe(c2p);

		pid = fork();
		if (!pid) {
			int child_pid = getpid();

			sock = sanlock_register();
			if (sock < 0) {
				log_error("%s c %d sanlock_register error %d",
					  count_path, child_pid, sock);
				exit(-1);
			}

			/* this acquire can take up to 90 seconds waiting for
			   the host_id of the owner to time out */

			log_debug("%s c %d sanlock_acquire begin",
				  count_path, child_pid);

			rv = sanlock_acquire(sock, -1, 0, 1, &res, NULL);
			if (rv < 0) {
				log_debug("%s c %d sanlock_acquire error %d",
					  count_path, child_pid, rv);

				/* all hosts are trying to acquire so we
				   expect this to acquire only sometimes;
				   TODO: exit with an error for some rv's */

				write(c2p[1], "fail", 4);
				close(c2p[0]);
				close(c2p[1]);
				exit(0);
			}
			log_debug("%s c %d sanlock_acquire done",
				  count_path, child_pid);

			write(c2p[1], "good", 4);
			close(c2p[0]);
			close(c2p[1]);
			execv(av[0], av);
			perror("execv devcount problem");
			exit(EXIT_FAILURE);
		}

		memset(&result, 0, sizeof(result));
		read(c2p[0], &result, 4);
		close(c2p[0]);
		close(c2p[1]);

		if (strstr(result, "fail")) {
			/* we expect child to exit when it fails to acquire the
			   lock because it's held by someone else */
			waitpid(pid, &status, 0);
			goto dead_child;
		}

		/* this test should be run with sec2 set to some large value
		   that won't run out before sanlock daemon kills rw */

		sleep(rand_int(6, 100));

		dmsetup_error_lock_disk();
		log_debug("%s p %d disable %s", count_path, parent_pid, lock_path);

		/* sanlock daemon kills pid when the renewals fail; after the
		   kill it will try to release the resource lease, which will
		   also fail if the resource lease is on the same disk as the
		   host_id lease.  Other nodes trying to get pid's resource
		   lease are watching our host_id for 90 seconds, after which
		   they will take pid's resource lease.  If the resource lease
		   is on a different disk, the daemon will be able to release
		   it after the kill, and another node will be able to take it
		   immediately after that, without watching our host_id for 90
		   seconds */

		/* other nodes can't rely on the daemon being able to kill rw,
		   so they need to wait 90 seconds to ensure that the watchdog
		   has killed the host before taking pid's resource lease.
		   In a different test, have the daemon kill fail, causing rw
		   to continue running until the watchdog fires, after which
		   another host will take pid's resource lease */

		waitpid(pid, &status, 0);
		log_debug("%s p %d waitpid c %d done", count_path, parent_pid, pid);

		sleep(rand_int(0, 3));

		dmsetup_linear_lock_disk();
		log_debug("%s p %d enable %s", count_path, parent_pid, lock_path);

		log_debug("%s p %d sanlock_add_lockspace begin",
			  lock_path, parent_pid);
		while (1) {
			sleep(1);
			rv = add_lockspace();
			if (!rv)
				break;
		}
 dead_child:
		sleep(rand_int(0, 1));
	}

	printf("test failed...\n");
	sleep(1000000);
	return -1;
}

/* 
 * devcount init <lock_disk> <count_disk>
 * sanlock direct init -n 8 -s devcount:0:<lock_disk>:0
 * sanlock direct init -n 8 -r devcount:resource<count_disk>:<lock_disk>:LEASE_SIZE
 * dd if=/dev/zero of=<count_disk> bs=512 count=24
 */

#define INIT_NUM_HOSTS 0

int do_init(int argc, char *argv[])
{
	char resbuf[sizeof(struct sanlk_resource) + sizeof(struct sanlk_disk)];
	struct sanlk_disk disk;
	struct sanlk_resource *res;
	struct sanlk_lockspace ls;
	char command[4096];
	int rv, align_size;

	if (argc < 4)
		return -1;

	strcpy(count_path, argv[3]);

#if 0
	/* initialize host_id lease area at offset 0 */

	memset(command, 0, sizeof(command));

	snprintf(command, sizeof(command),
		 "sanlock direct init -s devcount:0:%s:0",
		 argv[2]);

	printf("%s\n", command);

	system(command);

	/* initialize first resource lease area at offset LEASE_SIZE */

	memset(command, 0, sizeof(command));


	snprintf(command, sizeof(command),
		 "sanlock direct init -r devcount:resource%s:%s:%d",
		 argv[3],
		 argv[2],
		 LEASE_SIZE);

	printf("%s\n", command);

	system(command);
#else
	memset(&disk, 0, sizeof(disk));
	strcpy(disk.path, argv[2]);

	align_size = sanlock_direct_align(&disk);
	if (align_size != LEASE_SIZE) {
		printf("sanlock_direct align %s error %d\n",
			disk.path, align_size);
		return -1;
	}

	memset(&ls, 0, sizeof(ls));
	strcpy(ls.name, "devcount");
	strcpy(ls.host_id_disk.path, argv[2]);

	printf("init sync\n");
	rv = sanlock_direct_init(&ls, NULL, 0, INIT_NUM_HOSTS, 0);
	if (rv < 0) {
		printf("sanlock_direct_init lockspace error %d\n", rv);
		return -1;
	}

	printf("init async\n");
	rv = sanlock_direct_init(&ls, NULL, 0, INIT_NUM_HOSTS, 1);
	if (rv < 0) {
		printf("sanlock_direct_init lockspace error %d\n", rv);
		return -1;
	}

	memset(resbuf, 0, sizeof(resbuf));
	res = (struct sanlk_resource *)&resbuf;
	strcpy(res->lockspace_name, "devcount");
	sprintf(res->name, "resource%s", argv[3]);
	res->num_disks = 1;
	strcpy(res->disks[0].path, argv[2]);
	res->disks[0].offset = LEASE_SIZE;

	rv = sanlock_direct_init(NULL, res, 0, INIT_NUM_HOSTS, 0);
	if (rv < 0) {
		printf("sanlock_direct_init resource error %d\n", rv);
		return -1;
	}
#endif
	memset(command, 0, sizeof(command));

	snprintf(command, sizeof(command),
		 "dd if=/dev/zero of=%s bs=512 count=24",
		 count_path);

	printf("%s\n", command);

	system(command);
	return 0;
}

int main(int argc, char *argv[])
{
	int rv;

	if (argc < 2)
		goto out;

	if (!strcmp(argv[1], "init"))
		rv = do_init(argc, argv);

	else if (!strcmp(argv[1], "rw") || !strcmp(argv[1], "wr"))
		rv = do_count(argc, argv);

	else if (!strcmp(argv[1], "rwsig")) {
		setup_sigterm();
		argv[1] = "rw";
		rv = do_count(argc, argv);
	}

	else if (!strcmp(argv[1], "lock"))
		rv = do_lock(argc, argv);

	else if (!strcmp(argv[1], "wrap"))
		rv = do_wrap(argc, argv);

	else if (!strcmp(argv[1], "relock"))
		rv = do_relock(argc, argv);

	else if (!strcmp(argv[1], "migrate"))
		rv = do_migrate(argc, argv);

	else if (!strcmp(argv[1], "expire"))
		rv = do_expire(argc, argv);

	if (!rv)
		return 0;

 out:
	/*
	 * sanlock direct init -s devcount:0:/dev/bull/leases:0
	 * sanlock direct init -r devcount:resource/dev/bull/count:/dev/bull/leases:LEASE_SIZE
	 *
	 * host_id leases exists at <lock_disk> offset 0
	 * first resource lease exists at <lock_disk> offset LEASE_SIZE
	 */

	printf("devcount init <lock_disk> <count_disk>\n");
	printf("  sanlock direct init -s devcount:0:<lock_disk>:0\n");
	printf("  sanlock direct init -r devcount:resource<count_disk>:<lock_disk>:LEASE_SIZE\n");
	printf("  dd if=/dev/zero of=<count_disk> bs=512 count=24\n");
	printf("\n");
	printf("devcount rw <count_disk> <sec1> <sec2> <hostid>\n");
	printf("  rw: read count for sec1, looking for writes, then write for sec2\n");
	printf("  wr: write count for sec1, then read for sec2, looking for writes\n");
	printf("\n");
	printf("devcount lock <lock_disk> rw <count_disk> <sec1> <sec2> <hostid>\n");
	printf("  sanlock add_lockspace -s devcount:<hostid>:<lock_disk>:0\n");
	printf("  loop around fork, sanlock_acquire, exec devcount rw\n");
	printf("\n");
	printf("devcount relock <lock_disk> rw <count_disk> <sec1> <sec2> <hostid>\n");
	printf("  sanlock add_lockspace -s devcount:<hostid>:<lock_disk>:0\n");
	printf("  loop around fork, sanlock_acquire, exec devcount rw\n");
	printf("  sigstop child, inquire, release, re-acquire, sigcont|sigkill\n");
	printf("\n");
	printf("devcount wrap <lock_disk> rw <count_disk> <sec1> <sec2> <hostid>\n");
	printf("  sanlock add_lockspace -s devcount:<hostid>:<lock_disk>:0\n");
	printf("  sanlock_acquire, exec devcount rw\n");
	printf("\n");
	printf("devcount migrate <lock_disk> rw <count_disk> <sec1> <sec2> <hostid> <max_hostid>\n");
	printf("  sanlock add_lockspace -s devcount:<hostid>:<lock_disk>:0\n");
	printf("  loop around fork, sanlock_acquire, exec devcount rw\n");
	printf("\n");
	printf("devcount expire <lock_disk> rw <count_disk> <sec1> <sec2> <hostid>\n");
	printf("\n");
	return -1;
}