2 * Copyright (c) 2008 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * $DragonFly: src/sbin/hammer/cmd_mirror.c,v 1.16 2008/11/09 05:22:56 dillon Exp $
39 #define SERIALBUF_SIZE (512 * 1024)
41 static int read_mrecords(int fd
, char *buf
, u_int size
,
42 hammer_ioc_mrecord_head_t pickup
);
43 static hammer_ioc_mrecord_any_t
read_mrecord(int fdin
, int *errorp
,
44 hammer_ioc_mrecord_head_t pickup
);
45 static void write_mrecord(int fdout
, u_int32_t type
,
46 hammer_ioc_mrecord_any_t mrec
, int bytes
);
47 static void generate_mrec_header(int fd
, int fdout
, int pfs_id
,
48 hammer_tid_t
*tid_begp
, hammer_tid_t
*tid_endp
);
49 static int validate_mrec_header(int fd
, int fdin
, int is_target
, int pfs_id
,
50 struct hammer_ioc_mrecord_head
*pickup
,
51 hammer_tid_t
*tid_begp
, hammer_tid_t
*tid_endp
);
52 static void update_pfs_snapshot(int fd
, hammer_tid_t snapshot_tid
, int pfs_id
);
53 static ssize_t
writebw(int fd
, const void *buf
, size_t nbytes
,
54 u_int64_t
*bwcount
, struct timeval
*tv1
);
55 static int getyn(void);
56 static void mirror_usage(int code
);
59 * Generate a mirroring data stream from the specific source over the
60 * entire key range, but restricted to the specified transaction range.
62 * The HAMMER VFS does most of the work, we add a few new mrecord
63 * types to negotiate the TID ranges and verify that the entire
64 * stream made it to the destination.
67 hammer_cmd_mirror_read(char **av
, int ac
, int streaming
)
69 struct hammer_ioc_mirror_rw mirror
;
70 struct hammer_ioc_pseudofs_rw pfs
;
71 union hammer_ioc_mrecord_any mrec_tmp
;
72 struct hammer_ioc_mrecord_head pickup
;
73 hammer_ioc_mrecord_any_t mrec
;
74 hammer_tid_t sync_tid
;
75 const char *filesystem
;
76 char *buf
= malloc(SERIALBUF_SIZE
);
83 time_t base_t
= time(NULL
);
87 if (ac
== 0 || ac
> 2)
95 bzero(&mirror
, sizeof(mirror
));
96 hammer_key_beg_init(&mirror
.key_beg
);
97 hammer_key_end_init(&mirror
.key_end
);
99 fd
= getpfs(&pfs
, filesystem
);
101 if (streaming
&& VerboseOpt
) {
102 fprintf(stderr
, "\nRunning");
106 gettimeofday(&bwtv
, NULL
);
110 * Send initial header for the purpose of determining shared-uuid.
112 generate_mrec_header(fd
, 1, pfs
.pfs_id
, NULL
, NULL
);
115 * In 2-way mode the target will send us a PFS info packet
116 * first. Use the target's current snapshot TID as our default
121 n
= validate_mrec_header(fd
, 0, 0, pfs
.pfs_id
, &pickup
,
122 NULL
, &mirror
.tid_beg
);
123 if (n
< 0) { /* got TERM record */
131 * Write out the PFS header, tid_beg will be updated if our PFS
132 * has a larger begin sync. tid_end is set to the latest source
133 * TID whos flush cycle has completed.
135 generate_mrec_header(fd
, 1, pfs
.pfs_id
,
136 &mirror
.tid_beg
, &mirror
.tid_end
);
138 /* XXX streaming mode support w/ cycle or command line arg */
140 * A cycle file overrides the beginning TID
142 hammer_get_cycle(&mirror
.key_beg
, &mirror
.tid_beg
);
145 mirror
.tid_beg
= strtoull(av
[1], NULL
, 0);
147 if (streaming
== 0 || VerboseOpt
>= 2) {
149 "Mirror-read: Mirror from %016llx to %016llx\n",
150 mirror
.tid_beg
, mirror
.tid_end
);
152 if (mirror
.key_beg
.obj_id
!= (int64_t)HAMMER_MIN_OBJID
) {
153 fprintf(stderr
, "Mirror-read: Resuming at object %016llx\n",
154 mirror
.key_beg
.obj_id
);
158 * Nothing to do if begin equals end.
160 if (mirror
.tid_beg
>= mirror
.tid_end
) {
161 if (streaming
== 0 || VerboseOpt
>= 2)
162 fprintf(stderr
, "Mirror-read: No work to do\n");
169 * Write out bulk records
172 mirror
.size
= SERIALBUF_SIZE
;
176 mirror
.pfs_id
= pfs
.pfs_id
;
177 mirror
.shared_uuid
= pfs
.ondisk
->shared_uuid
;
178 if (ioctl(fd
, HAMMERIOC_MIRROR_READ
, &mirror
) < 0) {
179 fprintf(stderr
, "Mirror-read %s failed: %s\n",
180 filesystem
, strerror(errno
));
183 if (mirror
.head
.flags
& HAMMER_IOC_HEAD_ERROR
) {
185 "Mirror-read %s fatal error %d\n",
186 filesystem
, mirror
.head
.error
);
191 n
= writebw(1, mirror
.ubuf
, mirror
.count
,
194 n
= write(1, mirror
.ubuf
, mirror
.count
);
196 if (n
!= mirror
.count
) {
197 fprintf(stderr
, "Mirror-read %s failed: "
203 total_bytes
+= mirror
.count
;
204 if (streaming
&& VerboseOpt
) {
205 fprintf(stderr
, "\r%016llx %11lld",
206 mirror
.key_cur
.obj_id
,
210 mirror
.key_beg
= mirror
.key_cur
;
212 (unsigned)(time(NULL
) - base_t
) > (unsigned)TimeoutOpt
) {
214 "Mirror-read %s interrupted by timer at"
217 mirror
.key_cur
.obj_id
);
221 } while (mirror
.count
!= 0);
225 * Write out the termination sync record - only if not interrupted
227 if (interrupted
== 0) {
229 write_mrecord(1, HAMMER_MREC_TYPE_SYNC
,
230 &mrec_tmp
, sizeof(mrec_tmp
.sync
));
232 write_mrecord(1, HAMMER_MREC_TYPE_IDLE
,
233 &mrec_tmp
, sizeof(mrec_tmp
.sync
));
238 * If the -2 option was given (automatic when doing mirror-copy),
239 * a two-way pipe is assumed and we expect a response mrec from
243 mrec
= read_mrecord(0, &error
, &pickup
);
245 mrec
->head
.type
!= HAMMER_MREC_TYPE_UPDATE
||
246 mrec
->head
.rec_size
!= sizeof(mrec
->update
)) {
247 fprintf(stderr
, "mirror_read: Did not get final "
248 "acknowledgement packet from target\n");
253 hammer_set_cycle(&mirror
.key_cur
, mirror
.tid_beg
);
254 fprintf(stderr
, "Cyclefile %s updated for "
255 "continuation\n", CyclePath
);
258 sync_tid
= mrec
->update
.tid
;
260 hammer_key_beg_init(&mirror
.key_beg
);
261 hammer_set_cycle(&mirror
.key_beg
, sync_tid
);
262 fprintf(stderr
, "Cyclefile %s updated to 0x%016llx\n",
263 CyclePath
, sync_tid
);
266 } else if (CyclePath
) {
267 /* NOTE! mirror.tid_beg cannot be updated */
268 fprintf(stderr
, "Warning: cycle file (-c option) cannot be "
269 "fully updated unless you use mirror-copy\n");
270 hammer_set_cycle(&mirror
.key_beg
, mirror
.tid_beg
);
272 if (streaming
&& interrupted
== 0) {
273 time_t t1
= time(NULL
);
277 fprintf(stderr
, " W");
280 pfs
.ondisk
->sync_end_tid
= mirror
.tid_end
;
281 if (ioctl(fd
, HAMMERIOC_WAI_PSEUDOFS
, &pfs
) < 0) {
282 fprintf(stderr
, "Mirror-read %s: cannot stream: %s\n",
283 filesystem
, strerror(errno
));
285 t2
= time(NULL
) - t1
;
286 if (t2
>= 0 && t2
< DelayOpt
) {
288 fprintf(stderr
, "\bD");
291 sleep(DelayOpt
- t2
);
294 fprintf(stderr
, "\b ");
301 write_mrecord(1, HAMMER_MREC_TYPE_TERM
,
302 &mrec_tmp
, sizeof(mrec_tmp
.sync
));
304 fprintf(stderr
, "Mirror-read %s succeeded\n", filesystem
);
308 create_pfs(const char *filesystem
, uuid_t
*s_uuid
)
310 fprintf(stderr
, "PFS slave %s does not exist.\n"
311 "Do you want to create a new slave PFS? (yes|no) ",
315 fprintf(stderr
, "Aborting operation\n");
320 char *shared_uuid
= NULL
;
321 uuid_to_string(s_uuid
, &shared_uuid
, &status
);
324 asprintf(&cmd
, "/sbin/hammer pfs-slave '%s' shared-uuid=%s 1>&2",
325 filesystem
, shared_uuid
);
329 fprintf(stderr
, "Failed to alloc memory\n");
332 if (system(cmd
) != 0) {
333 fprintf(stderr
, "Failed to create PFS\n");
339 * Pipe the mirroring data stream on stdin to the HAMMER VFS, adding
340 * some additional packet types to negotiate TID ranges and to verify
341 * completion. The HAMMER VFS does most of the work.
343 * It is important to note that the mirror.key_{beg,end} range must
344 * match the ranged used by the original. For now both sides use
345 * range the entire key space.
347 * It is even more important that the records in the stream conform
348 * to the TID range also supplied in the stream. The HAMMER VFS will
349 * use the REC, PASS, and SKIP record types to track the portions of
350 * the B-Tree being scanned in order to be able to proactively delete
351 * records on the target within those active areas that are not mentioned
354 * The mirror.key_cur field is used by the VFS to do this tracking. It
355 * must be initialized to key_beg but then is persistently updated by
356 * the HAMMER VFS on each successive ioctl() call. If you blow up this
357 * field you will blow up the mirror target, possibly to the point of
358 * deleting everything. As a safety measure the HAMMER VFS simply marks
359 * the records that the source has destroyed as deleted on the target,
360 * and normal pruning operations will deal with their final disposition
361 * at some later time.
364 hammer_cmd_mirror_write(char **av
, int ac
)
366 struct hammer_ioc_mirror_rw mirror
;
367 const char *filesystem
;
368 char *buf
= malloc(SERIALBUF_SIZE
);
369 struct hammer_ioc_pseudofs_rw pfs
;
370 struct hammer_ioc_mrecord_head pickup
;
371 struct hammer_ioc_synctid synctid
;
372 union hammer_ioc_mrecord_any mrec_tmp
;
373 hammer_ioc_mrecord_any_t mrec
;
383 pickup
.signature
= 0;
387 bzero(&mirror
, sizeof(mirror
));
388 hammer_key_beg_init(&mirror
.key_beg
);
389 hammer_key_end_init(&mirror
.key_end
);
390 mirror
.key_end
= mirror
.key_beg
;
393 * Read initial packet
395 mrec
= read_mrecord(0, &error
, &pickup
);
398 fprintf(stderr
, "validate_mrec_header: short read\n");
404 if (mrec
->head
.type
== HAMMER_MREC_TYPE_TERM
) {
407 if (mrec
->head
.type
!= HAMMER_MREC_TYPE_PFSD
) {
408 fprintf(stderr
, "validate_mrec_header: did not get expected "
409 "PFSD record type\n");
412 if (mrec
->head
.rec_size
!= sizeof(mrec
->pfs
)) {
413 fprintf(stderr
, "validate_mrec_header: unexpected payload "
419 * Create slave PFS if it doesn't yet exist
421 if (lstat(filesystem
, &st
) != 0) {
422 create_pfs(filesystem
, &mrec
->pfs
.pfsd
.shared_uuid
);
427 fd
= getpfs(&pfs
, filesystem
);
430 * In two-way mode the target writes out a PFS packet first.
431 * The source uses our tid_end as its tid_beg by default,
432 * picking up where it left off.
436 generate_mrec_header(fd
, 1, pfs
.pfs_id
,
437 &mirror
.tid_beg
, &mirror
.tid_end
);
441 * Read and process the PFS header. The source informs us of
442 * the TID range the stream represents.
444 n
= validate_mrec_header(fd
, 0, 1, pfs
.pfs_id
, &pickup
,
445 &mirror
.tid_beg
, &mirror
.tid_end
);
446 if (n
< 0) { /* got TERM record */
452 mirror
.size
= SERIALBUF_SIZE
;
455 * Read and process bulk records (REC, PASS, and SKIP types).
457 * On your life, do NOT mess with mirror.key_cur or your mirror
458 * target may become history.
462 mirror
.pfs_id
= pfs
.pfs_id
;
463 mirror
.shared_uuid
= pfs
.ondisk
->shared_uuid
;
464 mirror
.size
= read_mrecords(0, buf
, SERIALBUF_SIZE
, &pickup
);
465 if (mirror
.size
<= 0)
467 if (ioctl(fd
, HAMMERIOC_MIRROR_WRITE
, &mirror
) < 0) {
468 fprintf(stderr
, "Mirror-write %s failed: %s\n",
469 filesystem
, strerror(errno
));
472 if (mirror
.head
.flags
& HAMMER_IOC_HEAD_ERROR
) {
474 "Mirror-write %s fatal error %d\n",
475 filesystem
, mirror
.head
.error
);
479 if (mirror
.head
.flags
& HAMMER_IOC_HEAD_INTR
) {
481 "Mirror-write %s interrupted by timer at"
484 mirror
.key_cur
.obj_id
);
491 * Read and process the termination sync record.
493 mrec
= read_mrecord(0, &error
, &pickup
);
495 if (mrec
&& mrec
->head
.type
== HAMMER_MREC_TYPE_TERM
) {
496 fprintf(stderr
, "Mirror-write: received termination request\n");
502 (mrec
->head
.type
!= HAMMER_MREC_TYPE_SYNC
&&
503 mrec
->head
.type
!= HAMMER_MREC_TYPE_IDLE
) ||
504 mrec
->head
.rec_size
!= sizeof(mrec
->sync
)) {
505 fprintf(stderr
, "Mirror-write %s: Did not get termination "
506 "sync record, or rec_size is wrong rt=%d\n",
507 filesystem
, mrec
->head
.type
);
512 * Update the PFS info on the target so the user has visibility
513 * into the new snapshot, and sync the target filesystem.
515 if (mrec
->head
.type
== HAMMER_MREC_TYPE_SYNC
) {
516 update_pfs_snapshot(fd
, mirror
.tid_end
, pfs
.pfs_id
);
518 bzero(&synctid
, sizeof(synctid
));
519 synctid
.op
= HAMMER_SYNCTID_SYNC2
;
520 ioctl(fd
, HAMMERIOC_SYNCTID
, &synctid
);
522 if (VerboseOpt
>= 2) {
523 fprintf(stderr
, "Mirror-write %s: succeeded\n",
532 * Report back to the originator.
535 mrec_tmp
.update
.tid
= mirror
.tid_end
;
536 write_mrecord(1, HAMMER_MREC_TYPE_UPDATE
,
537 &mrec_tmp
, sizeof(mrec_tmp
.update
));
539 printf("Source can update synctid to 0x%016llx\n",
547 hammer_cmd_mirror_dump(void)
549 char *buf
= malloc(SERIALBUF_SIZE
);
550 struct hammer_ioc_mrecord_head pickup
;
551 hammer_ioc_mrecord_any_t mrec
;
558 * Read and process the PFS header
560 pickup
.signature
= 0;
563 mrec
= read_mrecord(0, &error
, &pickup
);
566 * Read and process bulk records
569 size
= read_mrecords(0, buf
, SERIALBUF_SIZE
, &pickup
);
573 while (offset
< size
) {
574 mrec
= (void *)((char *)buf
+ offset
);
575 bytes
= HAMMER_HEAD_DOALIGN(mrec
->head
.rec_size
);
576 if (offset
+ bytes
> size
) {
577 fprintf(stderr
, "Misaligned record\n");
581 switch(mrec
->head
.type
) {
582 case HAMMER_MREC_TYPE_REC
:
583 printf("Record obj=%016llx key=%016llx "
585 mrec
->rec
.leaf
.base
.obj_id
,
586 mrec
->rec
.leaf
.base
.key
,
587 mrec
->rec
.leaf
.base
.rec_type
,
588 mrec
->rec
.leaf
.base
.obj_type
);
589 printf(" tids %016llx:%016llx data=%d\n",
590 mrec
->rec
.leaf
.base
.create_tid
,
591 mrec
->rec
.leaf
.base
.delete_tid
,
592 mrec
->rec
.leaf
.data_len
);
594 case HAMMER_MREC_TYPE_PASS
:
595 printf("Pass obj=%016llx key=%016llx "
597 mrec
->rec
.leaf
.base
.obj_id
,
598 mrec
->rec
.leaf
.base
.key
,
599 mrec
->rec
.leaf
.base
.rec_type
,
600 mrec
->rec
.leaf
.base
.obj_type
);
601 printf(" tids %016llx:%016llx data=%d\n",
602 mrec
->rec
.leaf
.base
.create_tid
,
603 mrec
->rec
.leaf
.base
.delete_tid
,
604 mrec
->rec
.leaf
.data_len
);
606 case HAMMER_MREC_TYPE_SKIP
:
607 printf("Skip obj=%016llx key=%016llx rt=%02x to\n"
608 " obj=%016llx key=%016llx rt=%02x\n",
609 mrec
->skip
.skip_beg
.obj_id
,
610 mrec
->skip
.skip_beg
.key
,
611 mrec
->skip
.skip_beg
.rec_type
,
612 mrec
->skip
.skip_end
.obj_id
,
613 mrec
->skip
.skip_end
.key
,
614 mrec
->skip
.skip_end
.rec_type
);
623 * Read and process the termination sync record.
625 mrec
= read_mrecord(0, &error
, &pickup
);
627 (mrec
->head
.type
!= HAMMER_MREC_TYPE_SYNC
&&
628 mrec
->head
.type
!= HAMMER_MREC_TYPE_IDLE
)
630 fprintf(stderr
, "Mirror-dump: Did not get termination "
636 hammer_cmd_mirror_copy(char **av
, int ac
, int streaming
)
659 if ((pid1
= fork()) == 0) {
664 if ((ptr
= strchr(av
[0], ':')) != NULL
) {
669 xav
[xac
++] = "hammer";
686 snprintf(tbuf
, sizeof(tbuf
), "%d", TimeoutOpt
);
691 xav
[xac
++] = "mirror-read-stream";
693 xav
[xac
++] = "mirror-read";
696 execv("/usr/bin/ssh", (void *)xav
);
698 hammer_cmd_mirror_read(av
, 1, streaming
);
708 if ((pid2
= fork()) == 0) {
713 if ((ptr
= strchr(av
[1], ':')) != NULL
) {
718 xav
[xac
++] = "hammer";
735 xav
[xac
++] = "mirror-write";
738 execv("/usr/bin/ssh", (void *)xav
);
740 hammer_cmd_mirror_write(av
+ 1, 1);
749 while (waitpid(pid1
, NULL
, 0) <= 0)
751 while (waitpid(pid2
, NULL
, 0) <= 0)
756 * Read and return multiple mrecords
759 read_mrecords(int fd
, char *buf
, u_int size
, hammer_ioc_mrecord_head_t pickup
)
761 hammer_ioc_mrecord_any_t mrec
;
768 while (size
- count
>= HAMMER_MREC_HEADSIZE
) {
770 * Cached the record header in case we run out of buffer
774 if (pickup
->signature
== 0) {
775 for (n
= 0; n
< HAMMER_MREC_HEADSIZE
; n
+= i
) {
776 i
= read(fd
, (char *)pickup
+ n
,
777 HAMMER_MREC_HEADSIZE
- n
);
783 if (n
!= HAMMER_MREC_HEADSIZE
) {
784 fprintf(stderr
, "read_mrecords: short read on pipe\n");
788 if (pickup
->signature
!= HAMMER_IOC_MIRROR_SIGNATURE
) {
789 fprintf(stderr
, "read_mrecords: malformed record on pipe, "
794 if (pickup
->rec_size
< HAMMER_MREC_HEADSIZE
||
795 pickup
->rec_size
> sizeof(*mrec
) + HAMMER_XBUFSIZE
) {
796 fprintf(stderr
, "read_mrecords: malformed record on pipe, "
797 "illegal rec_size\n");
802 * Stop if we have insufficient space for the record and data.
804 bytes
= HAMMER_HEAD_DOALIGN(pickup
->rec_size
);
805 if (size
- count
< bytes
)
809 * Stop if the record type is not a REC or a SKIP (the only
810 * two types the ioctl supports. Other types are used only
811 * by the userland protocol).
813 if (pickup
->type
!= HAMMER_MREC_TYPE_REC
&&
814 pickup
->type
!= HAMMER_MREC_TYPE_SKIP
&&
815 pickup
->type
!= HAMMER_MREC_TYPE_PASS
) {
820 * Read the remainder and clear the pickup signature.
822 for (n
= HAMMER_MREC_HEADSIZE
; n
< bytes
; n
+= i
) {
823 i
= read(fd
, buf
+ count
+ n
, bytes
- n
);
828 fprintf(stderr
, "read_mrecords: short read on pipe\n");
832 bcopy(pickup
, buf
+ count
, HAMMER_MREC_HEADSIZE
);
833 pickup
->signature
= 0;
835 mrec
= (void *)(buf
+ count
);
838 * Validate the completed record
840 if (mrec
->head
.rec_crc
!=
841 crc32((char *)mrec
+ HAMMER_MREC_CRCOFF
,
842 mrec
->head
.rec_size
- HAMMER_MREC_CRCOFF
)) {
843 fprintf(stderr
, "read_mrecords: malformed record "
844 "on pipe, bad crc\n");
849 * If its a B-Tree record validate the data crc
851 if (mrec
->head
.type
== HAMMER_MREC_TYPE_REC
) {
852 if (mrec
->head
.rec_size
<
853 sizeof(mrec
->rec
) + mrec
->rec
.leaf
.data_len
) {
855 "read_mrecords: malformed record on "
856 "pipe, illegal element data_len\n");
859 if (mrec
->rec
.leaf
.data_len
&&
860 mrec
->rec
.leaf
.data_offset
&&
861 hammer_crc_test_leaf(&mrec
->rec
+ 1, &mrec
->rec
.leaf
) == 0) {
863 "read_mrecords: data_crc did not "
864 "match data! obj=%016llx key=%016llx\n",
865 mrec
->rec
.leaf
.base
.obj_id
,
866 mrec
->rec
.leaf
.base
.key
);
868 "continuing, but there are problems\n");
877 * Read and return a single mrecord.
880 hammer_ioc_mrecord_any_t
881 read_mrecord(int fdin
, int *errorp
, hammer_ioc_mrecord_head_t pickup
)
883 hammer_ioc_mrecord_any_t mrec
;
884 struct hammer_ioc_mrecord_head mrechd
;
889 if (pickup
&& pickup
->type
!= 0) {
891 pickup
->signature
= 0;
893 n
= HAMMER_MREC_HEADSIZE
;
896 * Read in the PFSD header from the sender.
898 for (n
= 0; n
< HAMMER_MREC_HEADSIZE
; n
+= i
) {
899 i
= read(fdin
, (char *)&mrechd
+ n
, HAMMER_MREC_HEADSIZE
- n
);
904 *errorp
= 0; /* EOF */
907 if (n
!= HAMMER_MREC_HEADSIZE
) {
908 fprintf(stderr
, "short read of mrecord header\n");
913 if (mrechd
.signature
!= HAMMER_IOC_MIRROR_SIGNATURE
) {
914 fprintf(stderr
, "read_mrecord: bad signature\n");
918 bytes
= HAMMER_HEAD_DOALIGN(mrechd
.rec_size
);
919 assert(bytes
>= sizeof(mrechd
));
920 mrec
= malloc(bytes
);
924 i
= read(fdin
, (char *)mrec
+ n
, bytes
- n
);
930 fprintf(stderr
, "read_mrecord: short read on payload\n");
934 if (mrec
->head
.rec_crc
!=
935 crc32((char *)mrec
+ HAMMER_MREC_CRCOFF
,
936 mrec
->head
.rec_size
- HAMMER_MREC_CRCOFF
)) {
937 fprintf(stderr
, "read_mrecord: bad CRC\n");
947 write_mrecord(int fdout
, u_int32_t type
, hammer_ioc_mrecord_any_t mrec
,
950 char zbuf
[HAMMER_HEAD_ALIGN
];
953 pad
= HAMMER_HEAD_DOALIGN(bytes
) - bytes
;
955 assert(bytes
>= (int)sizeof(mrec
->head
));
956 bzero(&mrec
->head
, sizeof(mrec
->head
));
957 mrec
->head
.signature
= HAMMER_IOC_MIRROR_SIGNATURE
;
958 mrec
->head
.type
= type
;
959 mrec
->head
.rec_size
= bytes
;
960 mrec
->head
.rec_crc
= crc32((char *)mrec
+ HAMMER_MREC_CRCOFF
,
961 bytes
- HAMMER_MREC_CRCOFF
);
962 if (write(fdout
, mrec
, bytes
) != bytes
) {
963 fprintf(stderr
, "write_mrecord: error %d (%s)\n",
964 errno
, strerror(errno
));
969 if (write(fdout
, zbuf
, pad
) != pad
) {
970 fprintf(stderr
, "write_mrecord: error %d (%s)\n",
971 errno
, strerror(errno
));
978 * Generate a mirroring header with the pfs information of the
979 * originating filesytem.
982 generate_mrec_header(int fd
, int fdout
, int pfs_id
,
983 hammer_tid_t
*tid_begp
, hammer_tid_t
*tid_endp
)
985 struct hammer_ioc_pseudofs_rw pfs
;
986 union hammer_ioc_mrecord_any mrec_tmp
;
988 bzero(&pfs
, sizeof(pfs
));
989 bzero(&mrec_tmp
, sizeof(mrec_tmp
));
991 pfs
.ondisk
= &mrec_tmp
.pfs
.pfsd
;
992 pfs
.bytes
= sizeof(mrec_tmp
.pfs
.pfsd
);
993 if (ioctl(fd
, HAMMERIOC_GET_PSEUDOFS
, &pfs
) != 0) {
994 fprintf(stderr
, "Mirror-read: not a HAMMER fs/pseudofs!\n");
997 if (pfs
.version
!= HAMMER_IOC_PSEUDOFS_VERSION
) {
998 fprintf(stderr
, "Mirror-read: HAMMER pfs version mismatch!\n");
1003 * sync_beg_tid - lowest TID on source after which a full history
1006 * sync_end_tid - highest fully synchronized TID from source.
1008 if (tid_begp
&& *tid_begp
< mrec_tmp
.pfs
.pfsd
.sync_beg_tid
)
1009 *tid_begp
= mrec_tmp
.pfs
.pfsd
.sync_beg_tid
;
1011 *tid_endp
= mrec_tmp
.pfs
.pfsd
.sync_end_tid
;
1012 mrec_tmp
.pfs
.version
= pfs
.version
;
1013 write_mrecord(fdout
, HAMMER_MREC_TYPE_PFSD
,
1014 &mrec_tmp
, sizeof(mrec_tmp
.pfs
));
1018 * Validate the pfs information from the originating filesystem
1019 * against the target filesystem. shared_uuid must match.
1021 * return -1 if we got a TERM record
1024 validate_mrec_header(int fd
, int fdin
, int is_target
, int pfs_id
,
1025 struct hammer_ioc_mrecord_head
*pickup
,
1026 hammer_tid_t
*tid_begp
, hammer_tid_t
*tid_endp
)
1028 struct hammer_ioc_pseudofs_rw pfs
;
1029 struct hammer_pseudofs_data pfsd
;
1030 hammer_ioc_mrecord_any_t mrec
;
1034 * Get the PFSD info from the target filesystem.
1036 bzero(&pfs
, sizeof(pfs
));
1037 bzero(&pfsd
, sizeof(pfsd
));
1038 pfs
.pfs_id
= pfs_id
;
1040 pfs
.bytes
= sizeof(pfsd
);
1041 if (ioctl(fd
, HAMMERIOC_GET_PSEUDOFS
, &pfs
) != 0) {
1042 fprintf(stderr
, "mirror-write: not a HAMMER fs/pseudofs!\n");
1045 if (pfs
.version
!= HAMMER_IOC_PSEUDOFS_VERSION
) {
1046 fprintf(stderr
, "mirror-write: HAMMER pfs version mismatch!\n");
1050 mrec
= read_mrecord(fdin
, &error
, pickup
);
1053 fprintf(stderr
, "validate_mrec_header: short read\n");
1056 if (mrec
->head
.type
== HAMMER_MREC_TYPE_TERM
) {
1061 if (mrec
->head
.type
!= HAMMER_MREC_TYPE_PFSD
) {
1062 fprintf(stderr
, "validate_mrec_header: did not get expected "
1063 "PFSD record type\n");
1066 if (mrec
->head
.rec_size
!= sizeof(mrec
->pfs
)) {
1067 fprintf(stderr
, "validate_mrec_header: unexpected payload "
1071 if (mrec
->pfs
.version
!= pfs
.version
) {
1072 fprintf(stderr
, "validate_mrec_header: Version mismatch\n");
1077 * Whew. Ok, is the read PFS info compatible with the target?
1079 if (bcmp(&mrec
->pfs
.pfsd
.shared_uuid
, &pfsd
.shared_uuid
,
1080 sizeof(pfsd
.shared_uuid
)) != 0) {
1082 "mirror-write: source and target have "
1083 "different shared-uuid's!\n");
1087 (pfsd
.mirror_flags
& HAMMER_PFSD_SLAVE
) == 0) {
1088 fprintf(stderr
, "mirror-write: target must be in slave mode\n");
1092 *tid_begp
= mrec
->pfs
.pfsd
.sync_beg_tid
;
1094 *tid_endp
= mrec
->pfs
.pfsd
.sync_end_tid
;
1100 update_pfs_snapshot(int fd
, hammer_tid_t snapshot_tid
, int pfs_id
)
1102 struct hammer_ioc_pseudofs_rw pfs
;
1103 struct hammer_pseudofs_data pfsd
;
1105 bzero(&pfs
, sizeof(pfs
));
1106 bzero(&pfsd
, sizeof(pfsd
));
1107 pfs
.pfs_id
= pfs_id
;
1109 pfs
.bytes
= sizeof(pfsd
);
1110 if (ioctl(fd
, HAMMERIOC_GET_PSEUDOFS
, &pfs
) != 0) {
1111 perror("update_pfs_snapshot (read)");
1114 if (pfsd
.sync_end_tid
!= snapshot_tid
) {
1115 pfsd
.sync_end_tid
= snapshot_tid
;
1116 if (ioctl(fd
, HAMMERIOC_SET_PSEUDOFS
, &pfs
) != 0) {
1117 perror("update_pfs_snapshot (rewrite)");
1120 if (VerboseOpt
>= 2) {
1122 "Mirror-write: Completed, updated snapshot "
1130 * Bandwidth-limited write in chunks
1134 writebw(int fd
, const void *buf
, size_t nbytes
,
1135 u_int64_t
*bwcount
, struct timeval
*tv1
)
1146 if (*bwcount
+ nbytes
> BandwidthOpt
)
1147 n
= BandwidthOpt
- *bwcount
;
1151 r
= write(fd
, buf
, n
);
1155 buf
= (const char *)buf
+ r
;
1160 if (*bwcount
>= BandwidthOpt
) {
1161 gettimeofday(&tv2
, NULL
);
1162 usec
= (int)(tv2
.tv_sec
- tv1
->tv_sec
) * 1000000 +
1163 (int)(tv2
.tv_usec
- tv1
->tv_usec
);
1164 if (usec
>= 0 && usec
< 1000000)
1165 usleep(1000000 - usec
);
1166 gettimeofday(tv1
, NULL
);
1167 *bwcount
-= BandwidthOpt
;
1174 * Get a yes or no answer from the terminal. The program may be run as
1175 * part of a two-way pipe so we cannot use stdin for this operation.
1184 fp
= fopen("/dev/tty", "r");
1186 fprintf(stderr
, "No terminal for response\n");
1190 while (fgets(buf
, sizeof(buf
), fp
) != NULL
) {
1191 if (buf
[0] == 'y' || buf
[0] == 'Y') {
1195 if (buf
[0] == 'n' || buf
[0] == 'N') {
1199 fprintf(stderr
, "Response not understood\n");
1207 mirror_usage(int code
)
1210 "hammer mirror-read <filesystem> [begin-tid]\n"
1211 "hammer mirror-read-stream <filesystem> [begin-tid]\n"
1212 "hammer mirror-write <filesystem>\n"
1213 "hammer mirror-dump\n"
1214 "hammer mirror-copy [[user@]host:]<filesystem>"
1215 " [[user@]host:]<filesystem>\n"
1216 "hammer mirror-stream [[user@]host:]<filesystem>"
1217 " [[user@]host:]<filesystem>\n"