Merge branch 'vendor/NCURSES'
[dragonfly.git] / sbin / hammer / cmd_mirror.c
1 /*
2  * Copyright (c) 2008 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
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
16  *    distribution.
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.
20  * 
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
32  * SUCH DAMAGE.
33  * 
34  * $DragonFly: src/sbin/hammer/cmd_mirror.c,v 1.16 2008/11/09 05:22:56 dillon Exp $
35  */
36
37 #include "hammer.h"
38
39 #define SERIALBUF_SIZE  (512 * 1024)
40
41 static int read_mrecords(int fd, char *buf, u_int size,
42                          hammer_ioc_mrecord_head_t pickup);
43 static int generate_histogram(int fd, const char *filesystem,
44                          hammer_tid_t **histogram_ary,
45                          struct hammer_ioc_mirror_rw *mirror_base);
46 static hammer_ioc_mrecord_any_t read_mrecord(int fdin, int *errorp,
47                          hammer_ioc_mrecord_head_t pickup);
48 static void write_mrecord(int fdout, u_int32_t type,
49                          hammer_ioc_mrecord_any_t mrec, int bytes);
50 static void generate_mrec_header(int fd, int pfs_id,
51                          union hammer_ioc_mrecord_any *mrec_tmp);
52 static int validate_mrec_header(int fd, int fdin, int is_target, int pfs_id,
53                          struct hammer_ioc_mrecord_head *pickup,
54                          hammer_tid_t *tid_begp, hammer_tid_t *tid_endp);
55 static void update_pfs_snapshot(int fd, hammer_tid_t snapshot_tid, int pfs_id);
56 static ssize_t writebw(int fd, const void *buf, size_t nbytes,
57                         u_int64_t *bwcount, struct timeval *tv1);
58 static int getyn(void);
59 static void mirror_usage(int code);
60
61 #define BULK_MINIMUM    20000
62
63 /*
64  * Generate a mirroring data stream from the specific source over the
65  * entire key range, but restricted to the specified transaction range.
66  *
67  * The HAMMER VFS does most of the work, we add a few new mrecord
68  * types to negotiate the TID ranges and verify that the entire
69  * stream made it to the destination.
70  */
71 void
72 hammer_cmd_mirror_read(char **av, int ac, int streaming)
73 {
74         struct hammer_ioc_mirror_rw mirror;
75         struct hammer_ioc_pseudofs_rw pfs;
76         union hammer_ioc_mrecord_any mrec_tmp;
77         struct hammer_ioc_mrecord_head pickup;
78         hammer_ioc_mrecord_any_t mrec;
79         hammer_tid_t sync_tid;
80         hammer_tid_t *histogram_ary;
81         const char *filesystem;
82         char *buf = malloc(SERIALBUF_SIZE);
83         int interrupted = 0;
84         int error;
85         int fd;
86         int n;
87         int didwork;
88         int histogram;
89         int64_t total_bytes;
90         time_t base_t = time(NULL);
91         struct timeval bwtv;
92         u_int64_t bwcount;
93
94         if (ac == 0 || ac > 2)
95                 mirror_usage(1);
96         filesystem = av[0];
97
98         pickup.signature = 0;
99         pickup.type = 0;
100         histogram = -1;
101         histogram_ary = NULL;
102
103 again:
104         bzero(&mirror, sizeof(mirror));
105         hammer_key_beg_init(&mirror.key_beg);
106         hammer_key_end_init(&mirror.key_end);
107
108         fd = getpfs(&pfs, filesystem);
109
110         if (streaming && VerboseOpt) {
111                 fprintf(stderr, "\nRunning");
112                 fflush(stderr);
113         }
114         total_bytes = 0;
115         gettimeofday(&bwtv, NULL);
116         bwcount = 0;
117
118         /*
119          * Send initial header for the purpose of determining the
120          * shared-uuid.
121          */
122         generate_mrec_header(fd, pfs.pfs_id, &mrec_tmp);
123         write_mrecord(1, HAMMER_MREC_TYPE_PFSD,
124                       &mrec_tmp, sizeof(mrec_tmp.pfs));
125
126         /*
127          * In 2-way mode the target will send us a PFS info packet
128          * first.  Use the target's current snapshot TID as our default
129          * begin TID.
130          */
131         mirror.tid_beg = 0;
132         if (TwoWayPipeOpt) {
133                 n = validate_mrec_header(fd, 0, 0, pfs.pfs_id, &pickup,
134                                          NULL, &mirror.tid_beg);
135                 if (n < 0) {    /* got TERM record */
136                         relpfs(fd, &pfs);
137                         return;
138                 }
139                 ++mirror.tid_beg;
140         }
141
142         /*
143          * Write out the PFS header, tid_beg will be updated if our PFS
144          * has a larger begin sync.  tid_end is set to the latest source
145          * TID whos flush cycle has completed.
146          */
147         generate_mrec_header(fd, pfs.pfs_id, &mrec_tmp);
148         if (mirror.tid_beg < mrec_tmp.pfs.pfsd.sync_beg_tid)
149                 mirror.tid_beg = mrec_tmp.pfs.pfsd.sync_beg_tid;
150         mirror.tid_end = mrec_tmp.pfs.pfsd.sync_end_tid;
151         mirror.ubuf = buf;
152         mirror.size = SERIALBUF_SIZE;
153         mirror.pfs_id = pfs.pfs_id;
154         mirror.shared_uuid = pfs.ondisk->shared_uuid;
155
156         /*
157          * XXX If the histogram is exhausted and the TID delta is large
158          *     the stream might have been offline for a while and is
159          *     now picking it up again.  Do another histogram.
160          */
161 #if 0
162         if (TwoWayPipeOpt && streaming && histogram == 0) {
163                 if (mirror.tid_end - mirror.tid_beg > BULK_MINIMUM)
164                         histogram = -1;
165         }
166 #endif
167
168         /*
169          * Initial bulk startup control, try to do some incremental
170          * mirroring in order to allow the stream to be killed and
171          * restarted without having to start over.
172          */
173         if (histogram < 0 && BulkOpt == 0) {
174                 if (VerboseOpt)
175                         fprintf(stderr, "\n");
176                 histogram = generate_histogram(fd, filesystem,
177                                                &histogram_ary, &mirror);
178         }
179
180         if (TwoWayPipeOpt && streaming && histogram > 0) {
181                 mirror.tid_end = histogram_ary[--histogram];
182                 mrec_tmp.pfs.pfsd.sync_end_tid = mirror.tid_end;
183         }
184
185         write_mrecord(1, HAMMER_MREC_TYPE_PFSD,
186                       &mrec_tmp, sizeof(mrec_tmp.pfs));
187
188         /*
189          * A cycle file overrides the beginning TID only if we are
190          * not operating in two-way mode.
191          */
192         if (TwoWayPipeOpt == 0) {
193                 hammer_get_cycle(&mirror.key_beg, &mirror.tid_beg);
194         }
195
196         /*
197          * An additional argument overrides the beginning TID regardless
198          * of what mode we are in.  This is not recommending if operating
199          * in two-way mode.
200          */
201         if (ac == 2)
202                 mirror.tid_beg = strtoull(av[1], NULL, 0);
203
204         if (streaming == 0 || VerboseOpt >= 2) {
205                 fprintf(stderr,
206                         "Mirror-read: Mirror from %016jx to %016jx\n",
207                         (uintmax_t)mirror.tid_beg, (uintmax_t)mirror.tid_end);
208         }
209         if (mirror.key_beg.obj_id != (int64_t)HAMMER_MIN_OBJID) {
210                 fprintf(stderr, "Mirror-read: Resuming at object %016jx\n",
211                         (uintmax_t)mirror.key_beg.obj_id);
212         }
213
214         /*
215          * Nothing to do if begin equals end.
216          */
217         if (mirror.tid_beg >= mirror.tid_end) {
218                 if (streaming == 0 || VerboseOpt >= 2)
219                         fprintf(stderr, "Mirror-read: No work to do\n");
220                 didwork = 0;
221                 goto done;
222         }
223         didwork = 1;
224
225         /*
226          * Write out bulk records
227          */
228         mirror.ubuf = buf;
229         mirror.size = SERIALBUF_SIZE;
230
231         do {
232                 mirror.count = 0;
233                 mirror.pfs_id = pfs.pfs_id;
234                 mirror.shared_uuid = pfs.ondisk->shared_uuid;
235                 if (ioctl(fd, HAMMERIOC_MIRROR_READ, &mirror) < 0) {
236                         fprintf(stderr, "Mirror-read %s failed: %s\n",
237                                 filesystem, strerror(errno));
238                         exit(1);
239                 }
240                 if (mirror.head.flags & HAMMER_IOC_HEAD_ERROR) {
241                         fprintf(stderr,
242                                 "Mirror-read %s fatal error %d\n",
243                                 filesystem, mirror.head.error);
244                         exit(1);
245                 }
246                 if (mirror.count) {
247                         if (BandwidthOpt) {
248                                 n = writebw(1, mirror.ubuf, mirror.count,
249                                             &bwcount, &bwtv);
250                         } else {
251                                 n = write(1, mirror.ubuf, mirror.count);
252                         }
253                         if (n != mirror.count) {
254                                 fprintf(stderr, "Mirror-read %s failed: "
255                                                 "short write\n",
256                                 filesystem);
257                                 exit(1);
258                         }
259                 }
260                 total_bytes += mirror.count;
261                 if (streaming && VerboseOpt) {
262                         fprintf(stderr,
263                                 "\robj=%016jx tids=%016jx:%016jx %11jd",
264                                 (uintmax_t)mirror.key_cur.obj_id,
265                                 (uintmax_t)mirror.tid_beg,
266                                 (uintmax_t)mirror.tid_end,
267                                 (intmax_t)total_bytes);
268                         fflush(stderr);
269                 }
270                 mirror.key_beg = mirror.key_cur;
271
272                 /*
273                  * Deal with time limit option
274                  */
275                 if (TimeoutOpt &&
276                     (unsigned)(time(NULL) - base_t) > (unsigned)TimeoutOpt) {
277                         fprintf(stderr,
278                                 "Mirror-read %s interrupted by timer at"
279                                 " %016jx\n",
280                                 filesystem,
281                                 (uintmax_t)mirror.key_cur.obj_id);
282                         interrupted = 1;
283                         break;
284                 }
285         } while (mirror.count != 0);
286
287 done:
288         /*
289          * Write out the termination sync record - only if not interrupted
290          */
291         if (interrupted == 0) {
292                 if (didwork) {
293                         write_mrecord(1, HAMMER_MREC_TYPE_SYNC,
294                                       &mrec_tmp, sizeof(mrec_tmp.sync));
295                 } else {
296                         write_mrecord(1, HAMMER_MREC_TYPE_IDLE,
297                                       &mrec_tmp, sizeof(mrec_tmp.sync));
298                 }
299         }
300
301         /*
302          * If the -2 option was given (automatic when doing mirror-copy),
303          * a two-way pipe is assumed and we expect a response mrec from
304          * the target.
305          */
306         if (TwoWayPipeOpt) {
307                 mrec = read_mrecord(0, &error, &pickup);
308                 if (mrec == NULL || 
309                     mrec->head.type != HAMMER_MREC_TYPE_UPDATE ||
310                     mrec->head.rec_size != sizeof(mrec->update)) {
311                         fprintf(stderr, "mirror_read: Did not get final "
312                                         "acknowledgement packet from target\n");
313                         exit(1);
314                 }
315                 if (interrupted) {
316                         if (CyclePath) {
317                                 hammer_set_cycle(&mirror.key_cur, mirror.tid_beg);
318                                 fprintf(stderr, "Cyclefile %s updated for "
319                                         "continuation\n", CyclePath);
320                         }
321                 } else {
322                         sync_tid = mrec->update.tid;
323                         if (CyclePath) {
324                                 hammer_key_beg_init(&mirror.key_beg);
325                                 hammer_set_cycle(&mirror.key_beg, sync_tid);
326                                 fprintf(stderr,
327                                         "Cyclefile %s updated to 0x%016jx\n",
328                                         CyclePath, (uintmax_t)sync_tid);
329                         }
330                 }
331         } else if (CyclePath) {
332                 /* NOTE! mirror.tid_beg cannot be updated */
333                 fprintf(stderr, "Warning: cycle file (-c option) cannot be "
334                                 "fully updated unless you use mirror-copy\n");
335                 hammer_set_cycle(&mirror.key_beg, mirror.tid_beg);
336         }
337         if (streaming && interrupted == 0) {
338                 time_t t1 = time(NULL);
339                 time_t t2;
340
341                 /*
342                  * Two way streaming tries to break down large bulk
343                  * transfers into smaller ones so it can sync the
344                  * transaction id on the slave.  This way if we get
345                  * interrupted a restart doesn't have to start from
346                  * scratch.
347                  */
348                 if (TwoWayPipeOpt && streaming && histogram > 0) {
349                         if (VerboseOpt)
350                                 fprintf(stderr, " (bulk incremental)");
351                         goto again;
352                 }
353
354                 if (VerboseOpt) {
355                         fprintf(stderr, " W");
356                         fflush(stderr);
357                 }
358                 pfs.ondisk->sync_end_tid = mirror.tid_end;
359                 if (ioctl(fd, HAMMERIOC_WAI_PSEUDOFS, &pfs) < 0) {
360                         fprintf(stderr, "Mirror-read %s: cannot stream: %s\n",
361                                 filesystem, strerror(errno));
362                 } else {
363                         t2 = time(NULL) - t1;
364                         if (t2 >= 0 && t2 < DelayOpt) {
365                                 if (VerboseOpt) {
366                                         fprintf(stderr, "\bD");
367                                         fflush(stderr);
368                                 }
369                                 sleep(DelayOpt - t2);
370                         }
371                         if (VerboseOpt) {
372                                 fprintf(stderr, "\b ");
373                                 fflush(stderr);
374                         }
375                         relpfs(fd, &pfs);
376                         goto again;
377                 }
378         }
379         write_mrecord(1, HAMMER_MREC_TYPE_TERM,
380                       &mrec_tmp, sizeof(mrec_tmp.sync));
381         relpfs(fd, &pfs);
382         fprintf(stderr, "Mirror-read %s succeeded\n", filesystem);
383 }
384
385 /*
386  * Ok, this isn't really a histogram.  What we are trying to do
387  * here is find the first tid_end for the scan that returns
388  * at least some data.  The frontend of the TID space will generally
389  * return nothing so we can't just divide out the full mirroring
390  * range.  Once we find the point where a real data stream starts
391  * to get generated we can divide out the range from that point.
392  *
393  * When starting a new mirroring operation completely from scratch
394  * this code will take some time to run, but once some mirroring
395  * data is synchronized on the target you will be able to interrupt
396  * the stream and restart it and the later invocations of this
397  * code will be such that it should run much faster.
398  */
399 static int
400 generate_histogram(int fd, const char *filesystem,
401                    hammer_tid_t **histogram_ary,
402                    struct hammer_ioc_mirror_rw *mirror_base)
403 {
404         struct hammer_ioc_mirror_rw mirror;
405         hammer_tid_t tid_beg;
406         hammer_tid_t tid_end;
407         hammer_tid_t tid_half;
408         int i;
409
410         mirror = *mirror_base;
411         tid_beg = mirror.tid_beg;
412         tid_end = mirror.tid_end;
413
414         if (*histogram_ary)
415                 free(*histogram_ary);
416         if (tid_beg + BULK_MINIMUM >= tid_end)
417                 return(0);
418
419         if (VerboseOpt)
420                 fprintf(stderr, "Doing Range Test\n");
421         while (tid_end - tid_beg > BULK_MINIMUM) {
422                 tid_half = tid_beg + (tid_end - tid_beg) * 2 / 3;
423                 mirror.count = 0;
424                 mirror.tid_beg = tid_beg;
425                 mirror.tid_end = tid_half;
426
427                 if (VerboseOpt > 1) {
428                         fprintf(stderr, "RangeTest %016jx/%016jx - %016jx (%jd) ",
429                                 (uintmax_t)tid_beg,
430                                 (uintmax_t)tid_end,
431                                 (uintmax_t)tid_half,
432                                 (intmax_t)(tid_half - tid_beg));
433                 }
434                 fflush(stderr);
435                 if (ioctl(fd, HAMMERIOC_MIRROR_READ, &mirror) < 0) {
436                         fprintf(stderr, "Mirror-read %s failed: %s\n",
437                                 filesystem, strerror(errno));
438                         exit(1);
439                 }
440                 if (mirror.head.flags & HAMMER_IOC_HEAD_ERROR) {
441                         fprintf(stderr,
442                                 "Mirror-read %s fatal error %d\n",
443                                 filesystem, mirror.head.error);
444                         exit(1);
445                 }
446                 if (VerboseOpt > 1)
447                         fprintf(stderr, "%d\n", mirror.count);
448                 if (mirror.count > SERIALBUF_SIZE / 2) {
449                         tid_end = tid_half;
450                 } else {
451                         tid_beg = tid_half;
452                 }
453         }
454
455         tid_end = mirror_base->tid_end;
456         fprintf(stderr, "histogram range %016llx - %016llx\n",
457                 (long long)tid_beg, (long long)tid_end);
458
459         /*
460          * The final array generates our incremental ending tids in
461          * reverse order.  The caller also picks them off in reverse order.
462          */
463         *histogram_ary = malloc(sizeof(hammer_tid_t) * 20);
464         for (i = 0; i < 20; ++i) {
465                 (*histogram_ary)[i] = tid_end - (tid_end - tid_beg) / 20 * i;
466         }
467         return(20);
468 }
469
470 static void
471 create_pfs(const char *filesystem, uuid_t *s_uuid)
472 {
473         if (ForceYesOpt == 1) {
474                 fprintf(stderr, "PFS slave %s does not exist. "
475                         "Auto create new slave PFS!\n", filesystem);
476
477         } else {
478                 fprintf(stderr, "PFS slave %s does not exist.\n"
479                         "Do you want to create a new slave PFS? (yes|no) ",
480                         filesystem);
481                 fflush(stderr);
482                 if (getyn() != 1) {
483                         fprintf(stderr, "Aborting operation\n");
484                         exit(1);
485                 }
486         }
487
488         u_int32_t status;
489         char *shared_uuid = NULL;
490         uuid_to_string(s_uuid, &shared_uuid, &status);
491
492         char *cmd = NULL;
493         asprintf(&cmd, "/sbin/hammer pfs-slave '%s' shared-uuid=%s 1>&2",
494                  filesystem, shared_uuid); 
495         free(shared_uuid);
496
497         if (cmd == NULL) {
498                 fprintf(stderr, "Failed to alloc memory\n");
499                 exit(1);
500         }
501         if (system(cmd) != 0) {
502                 fprintf(stderr, "Failed to create PFS\n");
503         }
504         free(cmd);
505 }
506
507 /*
508  * Pipe the mirroring data stream on stdin to the HAMMER VFS, adding
509  * some additional packet types to negotiate TID ranges and to verify
510  * completion.  The HAMMER VFS does most of the work.
511  *
512  * It is important to note that the mirror.key_{beg,end} range must
513  * match the ranged used by the original.  For now both sides use
514  * range the entire key space.
515  *
516  * It is even more important that the records in the stream conform
517  * to the TID range also supplied in the stream.  The HAMMER VFS will
518  * use the REC, PASS, and SKIP record types to track the portions of
519  * the B-Tree being scanned in order to be able to proactively delete
520  * records on the target within those active areas that are not mentioned
521  * by the source.
522  *
523  * The mirror.key_cur field is used by the VFS to do this tracking.  It
524  * must be initialized to key_beg but then is persistently updated by
525  * the HAMMER VFS on each successive ioctl() call.  If you blow up this
526  * field you will blow up the mirror target, possibly to the point of
527  * deleting everything.  As a safety measure the HAMMER VFS simply marks
528  * the records that the source has destroyed as deleted on the target,
529  * and normal pruning operations will deal with their final disposition
530  * at some later time.
531  */
532 void
533 hammer_cmd_mirror_write(char **av, int ac)
534 {
535         struct hammer_ioc_mirror_rw mirror;
536         const char *filesystem;
537         char *buf = malloc(SERIALBUF_SIZE);
538         struct hammer_ioc_pseudofs_rw pfs;
539         struct hammer_ioc_mrecord_head pickup;
540         struct hammer_ioc_synctid synctid;
541         union hammer_ioc_mrecord_any mrec_tmp;
542         hammer_ioc_mrecord_any_t mrec;
543         struct stat st;
544         int error;
545         int fd;
546         int n;
547
548         if (ac != 1)
549                 mirror_usage(1);
550         filesystem = av[0];
551
552         pickup.signature = 0;
553         pickup.type = 0;
554
555 again:
556         bzero(&mirror, sizeof(mirror));
557         hammer_key_beg_init(&mirror.key_beg);
558         hammer_key_end_init(&mirror.key_end);
559         mirror.key_end = mirror.key_beg;
560
561         /*
562          * Read initial packet
563          */
564         mrec = read_mrecord(0, &error, &pickup);
565         if (mrec == NULL) {
566                 if (error == 0)
567                         fprintf(stderr, "validate_mrec_header: short read\n");
568                 exit(1);
569         }
570         /*
571          * Validate packet
572          */
573         if (mrec->head.type == HAMMER_MREC_TYPE_TERM) {
574                 return;
575         }
576         if (mrec->head.type != HAMMER_MREC_TYPE_PFSD) {
577                 fprintf(stderr, "validate_mrec_header: did not get expected "
578                                 "PFSD record type\n");
579                 exit(1);
580         }
581         if (mrec->head.rec_size != sizeof(mrec->pfs)) {
582                 fprintf(stderr, "validate_mrec_header: unexpected payload "
583                                 "size\n");
584                 exit(1);
585         }
586
587         /*
588          * Create slave PFS if it doesn't yet exist
589          */
590         if (lstat(filesystem, &st) != 0) {
591                 create_pfs(filesystem, &mrec->pfs.pfsd.shared_uuid);
592         }
593         free(mrec);
594         mrec = NULL;
595
596         fd = getpfs(&pfs, filesystem);
597
598         /*
599          * In two-way mode the target writes out a PFS packet first.
600          * The source uses our tid_end as its tid_beg by default,
601          * picking up where it left off.
602          */
603         mirror.tid_beg = 0;
604         if (TwoWayPipeOpt) {
605                 generate_mrec_header(fd, pfs.pfs_id, &mrec_tmp);
606                 if (mirror.tid_beg < mrec_tmp.pfs.pfsd.sync_beg_tid)
607                         mirror.tid_beg = mrec_tmp.pfs.pfsd.sync_beg_tid;
608                 mirror.tid_end = mrec_tmp.pfs.pfsd.sync_end_tid;
609                 write_mrecord(1, HAMMER_MREC_TYPE_PFSD,
610                               &mrec_tmp, sizeof(mrec_tmp.pfs));
611         }
612
613         /*
614          * Read and process the PFS header.  The source informs us of
615          * the TID range the stream represents.
616          */
617         n = validate_mrec_header(fd, 0, 1, pfs.pfs_id, &pickup,
618                                  &mirror.tid_beg, &mirror.tid_end);
619         if (n < 0) {    /* got TERM record */
620                 relpfs(fd, &pfs);
621                 return;
622         }
623
624         mirror.ubuf = buf;
625         mirror.size = SERIALBUF_SIZE;
626
627         /*
628          * Read and process bulk records (REC, PASS, and SKIP types).
629          *
630          * On your life, do NOT mess with mirror.key_cur or your mirror
631          * target may become history.
632          */
633         for (;;) {
634                 mirror.count = 0;
635                 mirror.pfs_id = pfs.pfs_id;
636                 mirror.shared_uuid = pfs.ondisk->shared_uuid;
637                 mirror.size = read_mrecords(0, buf, SERIALBUF_SIZE, &pickup);
638                 if (mirror.size <= 0)
639                         break;
640                 if (ioctl(fd, HAMMERIOC_MIRROR_WRITE, &mirror) < 0) {
641                         fprintf(stderr, "Mirror-write %s failed: %s\n",
642                                 filesystem, strerror(errno));
643                         exit(1);
644                 }
645                 if (mirror.head.flags & HAMMER_IOC_HEAD_ERROR) {
646                         fprintf(stderr,
647                                 "Mirror-write %s fatal error %d\n",
648                                 filesystem, mirror.head.error);
649                         exit(1);
650                 }
651 #if 0
652                 if (mirror.head.flags & HAMMER_IOC_HEAD_INTR) {
653                         fprintf(stderr,
654                                 "Mirror-write %s interrupted by timer at"
655                                 " %016llx\n",
656                                 filesystem,
657                                 mirror.key_cur.obj_id);
658                         exit(0);
659                 }
660 #endif
661         }
662
663         /*
664          * Read and process the termination sync record.
665          */
666         mrec = read_mrecord(0, &error, &pickup);
667
668         if (mrec && mrec->head.type == HAMMER_MREC_TYPE_TERM) {
669                 fprintf(stderr, "Mirror-write: received termination request\n");
670                 free(mrec);
671                 return;
672         }
673
674         if (mrec == NULL || 
675             (mrec->head.type != HAMMER_MREC_TYPE_SYNC &&
676              mrec->head.type != HAMMER_MREC_TYPE_IDLE) ||
677             mrec->head.rec_size != sizeof(mrec->sync)) {
678                 fprintf(stderr, "Mirror-write %s: Did not get termination "
679                                 "sync record, or rec_size is wrong rt=%d\n",
680                                 filesystem, mrec->head.type);
681                 exit(1);
682         }
683
684         /*
685          * Update the PFS info on the target so the user has visibility
686          * into the new snapshot, and sync the target filesystem.
687          */
688         if (mrec->head.type == HAMMER_MREC_TYPE_SYNC) {
689                 update_pfs_snapshot(fd, mirror.tid_end, pfs.pfs_id);
690
691                 bzero(&synctid, sizeof(synctid));
692                 synctid.op = HAMMER_SYNCTID_SYNC2;
693                 ioctl(fd, HAMMERIOC_SYNCTID, &synctid);
694
695                 if (VerboseOpt >= 2) {
696                         fprintf(stderr, "Mirror-write %s: succeeded\n",
697                                 filesystem);
698                 }
699         }
700
701         free(mrec);
702         mrec = NULL;
703
704         /*
705          * Report back to the originator.
706          */
707         if (TwoWayPipeOpt) {
708                 mrec_tmp.update.tid = mirror.tid_end;
709                 write_mrecord(1, HAMMER_MREC_TYPE_UPDATE,
710                               &mrec_tmp, sizeof(mrec_tmp.update));
711         } else {
712                 printf("Source can update synctid to 0x%016jx\n",
713                        (uintmax_t)mirror.tid_end);
714         }
715         relpfs(fd, &pfs);
716         goto again;
717 }
718
719 void
720 hammer_cmd_mirror_dump(void)
721 {
722         char *buf = malloc(SERIALBUF_SIZE);
723         struct hammer_ioc_mrecord_head pickup;
724         hammer_ioc_mrecord_any_t mrec;
725         int error;
726         int size;
727         int offset;
728         int bytes;
729
730         /*
731          * Read and process the PFS header 
732          */
733         pickup.signature = 0;
734         pickup.type = 0;
735
736         mrec = read_mrecord(0, &error, &pickup);
737
738         /*
739          * Read and process bulk records
740          */
741         for (;;) {
742                 size = read_mrecords(0, buf, SERIALBUF_SIZE, &pickup);
743                 if (size <= 0)
744                         break;
745                 offset = 0;
746                 while (offset < size) {
747                         mrec = (void *)((char *)buf + offset);
748                         bytes = HAMMER_HEAD_DOALIGN(mrec->head.rec_size);
749                         if (offset + bytes > size) {
750                                 fprintf(stderr, "Misaligned record\n");
751                                 exit(1);
752                         }
753
754                         switch(mrec->head.type & HAMMER_MRECF_TYPE_MASK) {
755                         case HAMMER_MREC_TYPE_REC_BADCRC:
756                         case HAMMER_MREC_TYPE_REC:
757                                 printf("Record obj=%016jx key=%016jx "
758                                        "rt=%02x ot=%02x",
759                                         (uintmax_t)mrec->rec.leaf.base.obj_id,
760                                         (uintmax_t)mrec->rec.leaf.base.key,
761                                         mrec->rec.leaf.base.rec_type,
762                                         mrec->rec.leaf.base.obj_type);
763                                 if (mrec->head.type ==
764                                     HAMMER_MREC_TYPE_REC_BADCRC) {
765                                         printf(" (BAD CRC)");
766                                 }
767                                 printf("\n");
768                                 printf("       tids %016jx:%016jx data=%d\n",
769                                     (uintmax_t)mrec->rec.leaf.base.create_tid,
770                                     (uintmax_t)mrec->rec.leaf.base.delete_tid,
771                                     mrec->rec.leaf.data_len);
772                                 break;
773                         case HAMMER_MREC_TYPE_PASS:
774                                 printf("Pass   obj=%016jx key=%016jx "
775                                        "rt=%02x ot=%02x\n",
776                                         (uintmax_t)mrec->rec.leaf.base.obj_id,
777                                         (uintmax_t)mrec->rec.leaf.base.key,
778                                         mrec->rec.leaf.base.rec_type,
779                                         mrec->rec.leaf.base.obj_type);
780                                 printf("       tids %016jx:%016jx data=%d\n",
781                                     (uintmax_t)mrec->rec.leaf.base.create_tid,
782                                     (uintmax_t)mrec->rec.leaf.base.delete_tid,
783                                         mrec->rec.leaf.data_len);
784                                 break;
785                         case HAMMER_MREC_TYPE_SKIP:
786                                 printf("Skip   obj=%016jx key=%016jx rt=%02x to\n"
787                                        "       obj=%016jx key=%016jx rt=%02x\n",
788                                        (uintmax_t)mrec->skip.skip_beg.obj_id,
789                                        (uintmax_t)mrec->skip.skip_beg.key,
790                                        mrec->skip.skip_beg.rec_type,
791                                        (uintmax_t)mrec->skip.skip_end.obj_id,
792                                        (uintmax_t)mrec->skip.skip_end.key,
793                                        mrec->skip.skip_end.rec_type);
794                         default:
795                                 break;
796                         }
797                         offset += bytes;
798                 }
799         }
800
801         /*
802          * Read and process the termination sync record.
803          */
804         mrec = read_mrecord(0, &error, &pickup);
805         if (mrec == NULL || 
806             (mrec->head.type != HAMMER_MREC_TYPE_SYNC &&
807              mrec->head.type != HAMMER_MREC_TYPE_IDLE)
808          ) {
809                 fprintf(stderr, "Mirror-dump: Did not get termination "
810                                 "sync record\n");
811         }
812 }
813
814 void
815 hammer_cmd_mirror_copy(char **av, int ac, int streaming)
816 {
817         pid_t pid1;
818         pid_t pid2;
819         int fds[2];
820         const char *xav[16];
821         char tbuf[16];
822         char *ptr;
823         int xac;
824
825         if (ac != 2)
826                 mirror_usage(1);
827
828         TwoWayPipeOpt = 1;
829         signal(SIGPIPE, SIG_IGN);
830
831 again:
832         if (pipe(fds) < 0) {
833                 perror("pipe");
834                 exit(1);
835         }
836
837         /*
838          * Source
839          */
840         if ((pid1 = fork()) == 0) {
841                 signal(SIGPIPE, SIG_DFL);
842                 dup2(fds[0], 0);
843                 dup2(fds[0], 1);
844                 close(fds[0]);
845                 close(fds[1]);
846                 if ((ptr = strchr(av[0], ':')) != NULL) {
847                         *ptr++ = 0;
848                         xac = 0;
849                         xav[xac++] = "ssh";
850                         if (SshPort) {
851                                 xav[xac++] = "-p";
852                                 xav[xac++] = SshPort;
853                         }
854                         xav[xac++] = av[0];
855                         xav[xac++] = "hammer";
856
857                         switch(VerboseOpt) {
858                         case 0:
859                                 break;
860                         case 1:
861                                 xav[xac++] = "-v";
862                                 break;
863                         case 2:
864                                 xav[xac++] = "-vv";
865                                 break;
866                         default:
867                                 xav[xac++] = "-vvv";
868                                 break;
869                         }
870                         if (ForceYesOpt) {
871                                 xav[xac++] = "-y";
872                         }
873                         xav[xac++] = "-2";
874                         if (TimeoutOpt) {
875                                 snprintf(tbuf, sizeof(tbuf), "%d", TimeoutOpt);
876                                 xav[xac++] = "-t";
877                                 xav[xac++] = tbuf;
878                         }
879                         if (streaming)
880                                 xav[xac++] = "mirror-read-stream";
881                         else
882                                 xav[xac++] = "mirror-read";
883                         xav[xac++] = ptr;
884                         xav[xac++] = NULL;
885                         execv("/usr/bin/ssh", (void *)xav);
886                 } else {
887                         hammer_cmd_mirror_read(av, 1, streaming);
888                         fflush(stdout);
889                         fflush(stderr);
890                 }
891                 _exit(1);
892         }
893
894         /*
895          * Target
896          */
897         if ((pid2 = fork()) == 0) {
898                 signal(SIGPIPE, SIG_DFL);
899                 dup2(fds[1], 0);
900                 dup2(fds[1], 1);
901                 close(fds[0]);
902                 close(fds[1]);
903                 if ((ptr = strchr(av[1], ':')) != NULL) {
904                         *ptr++ = 0;
905                         xac = 0;
906                         xav[xac++] = "ssh";
907                         if (SshPort) {
908                                 xav[xac++] = "-p";
909                                 xav[xac++] = SshPort;
910                         }
911                         xav[xac++] = av[1];
912                         xav[xac++] = "hammer";
913
914                         switch(VerboseOpt) {
915                         case 0:
916                                 break;
917                         case 1:
918                                 xav[xac++] = "-v";
919                                 break;
920                         case 2:
921                                 xav[xac++] = "-vv";
922                                 break;
923                         default:
924                                 xav[xac++] = "-vvv";
925                                 break;
926                         }
927                         if (ForceYesOpt) {
928                                 xav[xac++] = "-y";
929                         }
930                         xav[xac++] = "-2";
931                         xav[xac++] = "mirror-write";
932                         xav[xac++] = ptr;
933                         xav[xac++] = NULL;
934                         execv("/usr/bin/ssh", (void *)xav);
935                 } else {
936                         hammer_cmd_mirror_write(av + 1, 1);
937                         fflush(stdout);
938                         fflush(stderr);
939                 }
940                 _exit(1);
941         }
942         close(fds[0]);
943         close(fds[1]);
944
945         while (waitpid(pid1, NULL, 0) <= 0)
946                 ;
947         while (waitpid(pid2, NULL, 0) <= 0)
948                 ;
949
950         /*
951          * If the link is lost restart
952          */
953         if (streaming) {
954                 if (VerboseOpt) {
955                         fprintf(stderr, "\nLost Link\n");
956                         fflush(stderr);
957                 }
958                 sleep(15 + DelayOpt);
959                 goto again;
960         }
961
962 }
963
964 /*
965  * Read and return multiple mrecords
966  */
967 static int
968 read_mrecords(int fd, char *buf, u_int size, hammer_ioc_mrecord_head_t pickup)
969 {
970         hammer_ioc_mrecord_any_t mrec;
971         u_int count;
972         size_t n;
973         size_t i;
974         size_t bytes;
975         int type;
976
977         count = 0;
978         while (size - count >= HAMMER_MREC_HEADSIZE) {
979                 /*
980                  * Cached the record header in case we run out of buffer
981                  * space.
982                  */
983                 fflush(stdout);
984                 if (pickup->signature == 0) {
985                         for (n = 0; n < HAMMER_MREC_HEADSIZE; n += i) {
986                                 i = read(fd, (char *)pickup + n,
987                                          HAMMER_MREC_HEADSIZE - n);
988                                 if (i <= 0)
989                                         break;
990                         }
991                         if (n == 0)
992                                 break;
993                         if (n != HAMMER_MREC_HEADSIZE) {
994                                 fprintf(stderr, "read_mrecords: short read on pipe\n");
995                                 exit(1);
996                         }
997                         if (pickup->signature != HAMMER_IOC_MIRROR_SIGNATURE) {
998                                 fprintf(stderr, "read_mrecords: malformed record on pipe, "
999                                         "bad signature\n");
1000                                 exit(1);
1001                         }
1002                 }
1003                 if (pickup->rec_size < HAMMER_MREC_HEADSIZE ||
1004                     pickup->rec_size > sizeof(*mrec) + HAMMER_XBUFSIZE) {
1005                         fprintf(stderr, "read_mrecords: malformed record on pipe, "
1006                                 "illegal rec_size\n");
1007                         exit(1);
1008                 }
1009
1010                 /*
1011                  * Stop if we have insufficient space for the record and data.
1012                  */
1013                 bytes = HAMMER_HEAD_DOALIGN(pickup->rec_size);
1014                 if (size - count < bytes)
1015                         break;
1016
1017                 /*
1018                  * Stop if the record type is not a REC, SKIP, or PASS,
1019                  * which are the only types the ioctl supports.  Other types
1020                  * are used only by the userland protocol.
1021                  *
1022                  * Ignore all flags.
1023                  */
1024                 type = pickup->type & HAMMER_MRECF_TYPE_LOMASK;
1025                 if (type != HAMMER_MREC_TYPE_PFSD &&
1026                     type != HAMMER_MREC_TYPE_REC &&
1027                     type != HAMMER_MREC_TYPE_SKIP &&
1028                     type != HAMMER_MREC_TYPE_PASS) {
1029                         break;
1030                 }
1031
1032                 /*
1033                  * Read the remainder and clear the pickup signature.
1034                  */
1035                 for (n = HAMMER_MREC_HEADSIZE; n < bytes; n += i) {
1036                         i = read(fd, buf + count + n, bytes - n);
1037                         if (i <= 0)
1038                                 break;
1039                 }
1040                 if (n != bytes) {
1041                         fprintf(stderr, "read_mrecords: short read on pipe\n");
1042                         exit(1);
1043                 }
1044
1045                 bcopy(pickup, buf + count, HAMMER_MREC_HEADSIZE);
1046                 pickup->signature = 0;
1047                 pickup->type = 0;
1048                 mrec = (void *)(buf + count);
1049
1050                 /*
1051                  * Validate the completed record
1052                  */
1053                 if (mrec->head.rec_crc !=
1054                     crc32((char *)mrec + HAMMER_MREC_CRCOFF,
1055                           mrec->head.rec_size - HAMMER_MREC_CRCOFF)) {
1056                         fprintf(stderr, "read_mrecords: malformed record "
1057                                         "on pipe, bad crc\n");
1058                         exit(1);
1059                 }
1060
1061                 /*
1062                  * If its a B-Tree record validate the data crc.
1063                  *
1064                  * NOTE: If the VFS passes us an explicitly errorde mrec
1065                  *       we just pass it through.
1066                  */
1067                 type = mrec->head.type & HAMMER_MRECF_TYPE_MASK;
1068
1069                 if (type == HAMMER_MREC_TYPE_REC) {
1070                         if (mrec->head.rec_size <
1071                             sizeof(mrec->rec) + mrec->rec.leaf.data_len) {
1072                                 fprintf(stderr, 
1073                                         "read_mrecords: malformed record on "
1074                                         "pipe, illegal element data_len\n");
1075                                 exit(1);
1076                         }
1077                         if (mrec->rec.leaf.data_len &&
1078                             mrec->rec.leaf.data_offset &&
1079                             hammer_crc_test_leaf(&mrec->rec + 1, &mrec->rec.leaf) == 0) {
1080                                 fprintf(stderr,
1081                                         "read_mrecords: data_crc did not "
1082                                         "match data! obj=%016jx key=%016jx\n",
1083                                         (uintmax_t)mrec->rec.leaf.base.obj_id,
1084                                         (uintmax_t)mrec->rec.leaf.base.key);
1085                                 fprintf(stderr,
1086                                         "continuing, but there are problems\n");
1087                         }
1088                 }
1089                 count += bytes;
1090         }
1091         return(count);
1092 }
1093
1094 /*
1095  * Read and return a single mrecord.
1096  */
1097 static
1098 hammer_ioc_mrecord_any_t
1099 read_mrecord(int fdin, int *errorp, hammer_ioc_mrecord_head_t pickup)
1100 {
1101         hammer_ioc_mrecord_any_t mrec;
1102         struct hammer_ioc_mrecord_head mrechd;
1103         size_t bytes;
1104         size_t n;
1105         size_t i;
1106
1107         if (pickup && pickup->type != 0) {
1108                 mrechd = *pickup;
1109                 pickup->signature = 0;
1110                 pickup->type = 0;
1111                 n = HAMMER_MREC_HEADSIZE;
1112         } else {
1113                 /*
1114                  * Read in the PFSD header from the sender.
1115                  */
1116                 for (n = 0; n < HAMMER_MREC_HEADSIZE; n += i) {
1117                         i = read(fdin, (char *)&mrechd + n, HAMMER_MREC_HEADSIZE - n);
1118                         if (i <= 0)
1119                                 break;
1120                 }
1121                 if (n == 0) {
1122                         *errorp = 0;    /* EOF */
1123                         return(NULL);
1124                 }
1125                 if (n != HAMMER_MREC_HEADSIZE) {
1126                         fprintf(stderr, "short read of mrecord header\n");
1127                         *errorp = EPIPE;
1128                         return(NULL);
1129                 }
1130         }
1131         if (mrechd.signature != HAMMER_IOC_MIRROR_SIGNATURE) {
1132                 fprintf(stderr, "read_mrecord: bad signature\n");
1133                 *errorp = EINVAL;
1134                 return(NULL);
1135         }
1136         bytes = HAMMER_HEAD_DOALIGN(mrechd.rec_size);
1137         assert(bytes >= sizeof(mrechd));
1138         mrec = malloc(bytes);
1139         mrec->head = mrechd;
1140
1141         while (n < bytes) {
1142                 i = read(fdin, (char *)mrec + n, bytes - n);
1143                 if (i <= 0)
1144                         break;
1145                 n += i;
1146         }
1147         if (n != bytes) {
1148                 fprintf(stderr, "read_mrecord: short read on payload\n");
1149                 *errorp = EPIPE;
1150                 return(NULL);
1151         }
1152         if (mrec->head.rec_crc != 
1153             crc32((char *)mrec + HAMMER_MREC_CRCOFF,
1154                   mrec->head.rec_size - HAMMER_MREC_CRCOFF)) {
1155                 fprintf(stderr, "read_mrecord: bad CRC\n");
1156                 *errorp = EINVAL;
1157                 return(NULL);
1158         }
1159         *errorp = 0;
1160         return(mrec);
1161 }
1162
1163 static
1164 void
1165 write_mrecord(int fdout, u_int32_t type, hammer_ioc_mrecord_any_t mrec,
1166               int bytes)
1167 {
1168         char zbuf[HAMMER_HEAD_ALIGN];
1169         int pad;
1170
1171         pad = HAMMER_HEAD_DOALIGN(bytes) - bytes;
1172
1173         assert(bytes >= (int)sizeof(mrec->head));
1174         bzero(&mrec->head, sizeof(mrec->head));
1175         mrec->head.signature = HAMMER_IOC_MIRROR_SIGNATURE;
1176         mrec->head.type = type;
1177         mrec->head.rec_size = bytes;
1178         mrec->head.rec_crc = crc32((char *)mrec + HAMMER_MREC_CRCOFF,
1179                                    bytes - HAMMER_MREC_CRCOFF);
1180         if (write(fdout, mrec, bytes) != bytes) {
1181                 fprintf(stderr, "write_mrecord: error %d (%s)\n",
1182                         errno, strerror(errno));
1183                 exit(1);
1184         }
1185         if (pad) {
1186                 bzero(zbuf, pad);
1187                 if (write(fdout, zbuf, pad) != pad) {
1188                         fprintf(stderr, "write_mrecord: error %d (%s)\n",
1189                                 errno, strerror(errno));
1190                         exit(1);
1191                 }
1192         }
1193 }
1194
1195 /*
1196  * Generate a mirroring header with the pfs information of the
1197  * originating filesytem.
1198  */
1199 static void
1200 generate_mrec_header(int fd, int pfs_id,
1201                      union hammer_ioc_mrecord_any *mrec_tmp)
1202 {
1203         struct hammer_ioc_pseudofs_rw pfs;
1204
1205         bzero(&pfs, sizeof(pfs));
1206         bzero(mrec_tmp, sizeof(*mrec_tmp));
1207         pfs.pfs_id = pfs_id;
1208         pfs.ondisk = &mrec_tmp->pfs.pfsd;
1209         pfs.bytes = sizeof(mrec_tmp->pfs.pfsd);
1210         if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) != 0) {
1211                 fprintf(stderr, "Mirror-read: not a HAMMER fs/pseudofs!\n");
1212                 exit(1);
1213         }
1214         if (pfs.version != HAMMER_IOC_PSEUDOFS_VERSION) {
1215                 fprintf(stderr, "Mirror-read: HAMMER pfs version mismatch!\n");
1216                 exit(1);
1217         }
1218         mrec_tmp->pfs.version = pfs.version;
1219 }
1220
1221 /*
1222  * Validate the pfs information from the originating filesystem
1223  * against the target filesystem.  shared_uuid must match.
1224  *
1225  * return -1 if we got a TERM record
1226  */
1227 static int
1228 validate_mrec_header(int fd, int fdin, int is_target, int pfs_id,
1229                      struct hammer_ioc_mrecord_head *pickup,
1230                      hammer_tid_t *tid_begp, hammer_tid_t *tid_endp)
1231 {
1232         struct hammer_ioc_pseudofs_rw pfs;
1233         struct hammer_pseudofs_data pfsd;
1234         hammer_ioc_mrecord_any_t mrec;
1235         int error;
1236
1237         /*
1238          * Get the PFSD info from the target filesystem.
1239          */
1240         bzero(&pfs, sizeof(pfs));
1241         bzero(&pfsd, sizeof(pfsd));
1242         pfs.pfs_id = pfs_id;
1243         pfs.ondisk = &pfsd;
1244         pfs.bytes = sizeof(pfsd);
1245         if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) != 0) {
1246                 fprintf(stderr, "mirror-write: not a HAMMER fs/pseudofs!\n");
1247                 exit(1);
1248         }
1249         if (pfs.version != HAMMER_IOC_PSEUDOFS_VERSION) {
1250                 fprintf(stderr, "mirror-write: HAMMER pfs version mismatch!\n");
1251                 exit(1);
1252         }
1253
1254         mrec = read_mrecord(fdin, &error, pickup);
1255         if (mrec == NULL) {
1256                 if (error == 0)
1257                         fprintf(stderr, "validate_mrec_header: short read\n");
1258                 exit(1);
1259         }
1260         if (mrec->head.type == HAMMER_MREC_TYPE_TERM) {
1261                 free(mrec);
1262                 return(-1);
1263         }
1264
1265         if (mrec->head.type != HAMMER_MREC_TYPE_PFSD) {
1266                 fprintf(stderr, "validate_mrec_header: did not get expected "
1267                                 "PFSD record type\n");
1268                 exit(1);
1269         }
1270         if (mrec->head.rec_size != sizeof(mrec->pfs)) {
1271                 fprintf(stderr, "validate_mrec_header: unexpected payload "
1272                                 "size\n");
1273                 exit(1);
1274         }
1275         if (mrec->pfs.version != pfs.version) {
1276                 fprintf(stderr, "validate_mrec_header: Version mismatch\n");
1277                 exit(1);
1278         }
1279
1280         /*
1281          * Whew.  Ok, is the read PFS info compatible with the target?
1282          */
1283         if (bcmp(&mrec->pfs.pfsd.shared_uuid, &pfsd.shared_uuid,
1284                  sizeof(pfsd.shared_uuid)) != 0) {
1285                 fprintf(stderr, 
1286                         "mirror-write: source and target have "
1287                         "different shared-uuid's!\n");
1288                 exit(1);
1289         }
1290         if (is_target &&
1291             (pfsd.mirror_flags & HAMMER_PFSD_SLAVE) == 0) {
1292                 fprintf(stderr, "mirror-write: target must be in slave mode\n");
1293                 exit(1);
1294         }
1295         if (tid_begp)
1296                 *tid_begp = mrec->pfs.pfsd.sync_beg_tid;
1297         if (tid_endp)
1298                 *tid_endp = mrec->pfs.pfsd.sync_end_tid;
1299         free(mrec);
1300         return(0);
1301 }
1302
1303 static void
1304 update_pfs_snapshot(int fd, hammer_tid_t snapshot_tid, int pfs_id)
1305 {
1306         struct hammer_ioc_pseudofs_rw pfs;
1307         struct hammer_pseudofs_data pfsd;
1308
1309         bzero(&pfs, sizeof(pfs));
1310         bzero(&pfsd, sizeof(pfsd));
1311         pfs.pfs_id = pfs_id;
1312         pfs.ondisk = &pfsd;
1313         pfs.bytes = sizeof(pfsd);
1314         if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) != 0) {
1315                 perror("update_pfs_snapshot (read)");
1316                 exit(1);
1317         }
1318         if (pfsd.sync_end_tid != snapshot_tid) {
1319                 pfsd.sync_end_tid = snapshot_tid;
1320                 if (ioctl(fd, HAMMERIOC_SET_PSEUDOFS, &pfs) != 0) {
1321                         perror("update_pfs_snapshot (rewrite)");
1322                         exit(1);
1323                 }
1324                 if (VerboseOpt >= 2) {
1325                         fprintf(stderr,
1326                                 "Mirror-write: Completed, updated snapshot "
1327                                 "to %016jx\n",
1328                                 (uintmax_t)snapshot_tid);
1329                 }
1330         }
1331 }
1332
1333 /*
1334  * Bandwidth-limited write in chunks
1335  */
1336 static
1337 ssize_t
1338 writebw(int fd, const void *buf, size_t nbytes,
1339         u_int64_t *bwcount, struct timeval *tv1)
1340 {
1341         struct timeval tv2;
1342         size_t n;
1343         ssize_t r;
1344         ssize_t a;
1345         int usec;
1346
1347         a = 0;
1348         r = 0;
1349         while (nbytes) {
1350                 if (*bwcount + nbytes > BandwidthOpt)
1351                         n = BandwidthOpt - *bwcount;
1352                 else
1353                         n = nbytes;
1354                 if (n)
1355                         r = write(fd, buf, n);
1356                 if (r >= 0) {
1357                         a += r;
1358                         nbytes -= r;
1359                         buf = (const char *)buf + r;
1360                 }
1361                 if ((size_t)r != n)
1362                         break;
1363                 *bwcount += n;
1364                 if (*bwcount >= BandwidthOpt) {
1365                         gettimeofday(&tv2, NULL);
1366                         usec = (int)(tv2.tv_sec - tv1->tv_sec) * 1000000 +
1367                                 (int)(tv2.tv_usec - tv1->tv_usec);
1368                         if (usec >= 0 && usec < 1000000)
1369                                 usleep(1000000 - usec);
1370                         gettimeofday(tv1, NULL);
1371                         *bwcount -= BandwidthOpt;
1372                 }
1373         }
1374         return(a ? a : r);
1375 }
1376
1377 /*
1378  * Get a yes or no answer from the terminal.  The program may be run as
1379  * part of a two-way pipe so we cannot use stdin for this operation.
1380  */
1381 static int
1382 getyn(void)
1383 {
1384         char buf[256];
1385         FILE *fp;
1386         int result;
1387
1388         fp = fopen("/dev/tty", "r");
1389         if (fp == NULL) {
1390                 fprintf(stderr, "No terminal for response\n");
1391                 return(-1);
1392         }
1393         result = -1;
1394         while (fgets(buf, sizeof(buf), fp) != NULL) {
1395                 if (buf[0] == 'y' || buf[0] == 'Y') {
1396                         result = 1;
1397                         break;
1398                 }
1399                 if (buf[0] == 'n' || buf[0] == 'N') {
1400                         result = 0;
1401                         break;
1402                 }
1403                 fprintf(stderr, "Response not understood\n");
1404                 break;
1405         }
1406         fclose(fp);
1407         return(result);
1408 }
1409
1410 static void
1411 mirror_usage(int code)
1412 {
1413         fprintf(stderr, 
1414                 "hammer mirror-read <filesystem> [begin-tid]\n"
1415                 "hammer mirror-read-stream <filesystem> [begin-tid]\n"
1416                 "hammer mirror-write <filesystem>\n"
1417                 "hammer mirror-dump\n"
1418                 "hammer mirror-copy [[user@]host:]<filesystem>"
1419                                   " [[user@]host:]<filesystem>\n"
1420                 "hammer mirror-stream [[user@]host:]<filesystem>"
1421                                     " [[user@]host:]<filesystem>\n"
1422         );
1423         exit(code);
1424 }
1425