common/dump: disable copyrange
[xfstests-dev.git] / common / dump
1 ##/bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # Functions useful for xfsdump/xfsrestore tests
6
7 # --- initializations ---
8 rm -f $seqres.full
9
10 if [ -n "$DEBUGDUMP" ]; then
11         _dump_debug=-v4
12         _restore_debug=-v4
13         _invutil_debug=-d
14
15         # Use dump/restore in qa directory (copy them here) for debugging
16         export PATH="$here:$PATH"
17         export __XFSDUMP_PROG=$(type -P xfsdump)
18         export XFSDUMP_PROG="$__XFSDUMP_PROG -e"
19         export XFSRESTORE_PROG=$(type -P xfsrestore)
20         export XFSINVUTIL_PROG=$(type -P xfsinvutil)
21         [ -x $here/xfsdump ]    && echo "Using xfstests' xfsdump for debug"
22         [ -x $here/xfsrestore ] && echo "Using xfstests' xfsrestore for debug"
23         [ -x $here/xfsinvutil ] && echo "Using xfstests' xfsinvutil for debug"
24 fi
25
26 [ "$XFSDUMP_PROG" = "" ]    && _notrun "xfsdump not found"
27 [ "$XFSRESTORE_PROG" = "" ] && _notrun "xfsrestore not found"
28 [ "$XFSINVUTIL_PROG" = "" ] && _notrun "xfsinvutil not found"
29
30 # status returned for not run tests
31 NOTRUNSTS=2
32
33 # name those directories
34 dump_file=$tmp.dumpfile
35 # dump_file=$here/dumpfile #TEMP OVERRIDE DUMP FILE
36 dump_sdir=dumpdir
37 dump_dir=$SCRATCH_MNT/$dump_sdir
38 restore_sdir=restoredir
39 restore_dir=$SCRATCH_MNT/$restore_sdir
40 multi=3
41 dumptape=$TAPE_DEV
42 media_label="stress_tape_media"
43 session_label="stress_$seq"
44
45 nobody=4 # define this uid/gid as a number
46 do_quota_check=true # do quota check if quotas enabled
47
48 # install our cleaner
49 trap "_cleanup; exit \$status" 0 1 2 3 15
50
51 # start inventory from a known base - move it aside for test
52 for dir in /var/xfsdump/inventory /var/lib/xfsdump/inventory; do
53     if [ -d $dir ]; then
54         [ -d $dir.$seq ] && rm -rf $dir.$seq
55         mv $dir $dir.$seq
56     fi
57 done
58
59 have_mtvariable=false
60 [ `uname` = "Linux" ] && have_mtvariable=true
61
62
63 _require_multi_stream()
64 {
65     $XFSDUMP_PROG -JF -f /dev/null -f /dev/null 2> /dev/null |
66     grep -q "too many -f arguments" &&
67     _notrun "xfsdump multi-stream support required"
68 }
69
70 _require_legacy_v2_format()
71 {
72     $XFSDUMP_PROG 2>&1 |
73     grep -q "generate format 2 dump" ||
74     _notrun "xfsdump -K option required"
75
76     $XFSRESTORE_PROG 2>&1 |
77     grep -q "force use of format 2 generation" ||
78     _notrun "xfsrestore -K option required"
79 }
80
81 #
82 # do a remote/local mt
83 #
84 _mt()
85 {
86     op=$1
87     if _isrmt; then
88         # REMOTE
89         _rmtdev=`echo $dumptape | $AWK_PROG -F: '{print $2}'`
90
91         if echo $dumptape | grep '@' >/dev/null; then
92             _spec=`echo $dumptape | $AWK_PROG -F: '{print $1}'`
93             _rmtuser=`echo $_spec | $AWK_PROG -F@ '{print $1}'`
94             _rmthost=`echo $_spec | $AWK_PROG -F@ '{print $2}'`
95             rsh -n -l $_rmtuser $_rmthost "mt -t $_rmtdev $op"
96         else
97             _rmthost=`echo $dumptape | $AWK_PROG -F: '{print $1}'`
98             rsh -n $_rmthost "mt -t $_rmtdev $op"
99         fi
100     else
101         #LOCAL
102         mt -t $dumptape $op
103     fi
104 }
105
106 _check_onl()
107 {
108     _limit=10
109     i=0
110     while [ $i -lt $_limit ]; do
111         echo "Checking online..." >>$seqres.full
112         if _mt status >$tmp.status 2>&1; then
113             break;
114         else
115             sleep 1
116         fi
117         let i=$i+1
118     done
119
120
121     if [ $i -eq $_limit ]; then
122         echo "ERROR: mt -f $dumptape failed"
123         cat $tmp.status
124
125         _notrun "mt -f $dumptape failed"
126     fi
127
128
129     if egrep -i 'onl|ready' $tmp.status | grep -iv 'not ready' >/dev/null; then
130         :
131     else
132         echo "ERROR: $dumptape is not online"
133         cat $tmp.status
134
135         _notrun "dumptape, $dumptape, is not online"
136     fi
137 }
138
139 _wait_tape()
140 {
141     echo "Wait for tape, $dumptape, ..." >>$seqres.full
142
143     i=0
144     while [ $i -lt 20 ]; do
145         echo "Checking status..." >>$seqres.full
146         if _mt status 2>&1 | tee -a $seqres.full | egrep -i "onl|ready" >/dev/null; then
147             break;
148         else
149             sleep 1
150         fi
151         let i=$i+1
152     done
153 }
154
155 #
156 # Keep trying so we know we really have rewound
157 #
158 _rewind()
159 {
160     echo "Initiate rewind..." >>$seqres.full
161     _wait_tape
162     _mt rewind >/dev/null
163     _wait_tape
164 }
165
166 #
167 # Do a custom erase because:
168 # (i) some machines don't support it
169 # (ii) some machines take forever to do it
170 #
171 _erase_soft()
172 {
173     echo "Erasing tape" | tee -a $seqres.full
174     _rewind
175     _mt weof 3
176     _rewind
177 }
178
179 _erase_hard()
180 {
181     echo "Erasing tape" | tee -a $seqres.full
182     _mt erase
183 }
184
185 _isrmt()
186 {
187     echo $dumptape | grep ':' >/dev/null
188 }
189
190 #
191 # Get tape ready
192 #
193 _set_variable()
194 {
195     $have_mtvariable || return
196
197     if _isrmt; then
198         :
199     else
200         # LOCAL
201         echo "Put scsi tape driver into variable block size mode"
202         mt -f $dumptape setblk 0
203     fi
204 }
205
206 _require_tape()
207 {
208     dumptape=$1
209
210     if [ -z "$dumptape" -o "@" == "$dumptape" ]; then
211         _notrun "No dump tape specified"
212     fi
213
214     _check_onl
215     _set_variable
216 }
217
218 _wipe_fs()
219 {
220     _require_scratch
221
222     _scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
223     _scratch_mount >>$seqres.full
224 }
225
226 #
227 # Cleanup created dirs and files
228 # Called by trap
229 #
230 _cleanup()
231 {
232     # Some tests include this before checking _supported_fs xfs
233     # and the sleeps & checks here get annoying
234     if [ "$FSTYP" != "xfs" ]; then
235        return
236     fi
237
238     cd $here
239     rm -f $tmp.*
240
241     if [ -n "$DEBUGDUMP" ]; then
242         # save it for inspection
243         for dir in /var/xfsdump/inventory /var/lib/xfsdump/inventory; do
244             [ -d $dir ] || continue
245             tar -cvf $seqres.inventory.tar $dir
246             ls -nR $dir >$seqres.inventory.ls
247         done
248     fi
249
250     # put inventory dir back
251     for dir in /var/xfsdump/inventory /var/lib/xfsdump/inventory; do
252         [ -d $dir.$seq ] || continue
253         rm -rf $dir             # get rid of new one
254         mv $dir.$seq $dir
255     done
256
257     if [ $status -ne $NOTRUNSTS ]; then
258         # Sleep added to stop _check_scratch_fs from complaining that the
259         # scratch_dev is still busy
260         sleep 10
261
262         _check_scratch_fs
263     fi
264 }
265
266 #
267 # ensure that bulkstat data will
268 # match with incore data
269 # by forcing disk data to be written out
270 #
271 _stable_fs()
272 {
273     _saveddir=`pwd`; cd /
274     _scratch_unmount >>$seqres.full || _fail "unmount failed"
275     _scratch_mount >>$seqres.full
276     cd $_saveddir
277 }
278
279 #
280 # Run fsstress to create a mixture of
281 # files,dirs,links,symlinks
282 #
283 # Pinched from test 013.
284 # Takes one argument, the number of ops to perform
285 #
286 _create_dumpdir_stress_num()
287 {
288     echo "Creating directory system to dump using fsstress."
289
290     _count=$1
291     _wipe_fs
292
293     _param="-f link=10 -f creat=10 -f mkdir=10 -f truncate=5 -f symlink=10"
294     rm -rf $dump_dir
295     if ! mkdir $dump_dir; then
296         echo "    failed to mkdir $dump_dir"
297         status=1
298         exit
299     fi
300
301     # Remove fsstress commands that aren't supported on all xfs configs so that
302     # we always execute exactly the same sequence of operations no matter how
303     # the filesystem is configured
304     if $FSSTRESS_PROG | grep -q clonerange; then
305         FSSTRESS_AVOID="-f clonerange=0 $FSSTRESS_AVOID"
306     fi
307     if $FSSTRESS_PROG | grep -q deduperange; then
308         FSSTRESS_AVOID="-f deduperange=0 $FSSTRESS_AVOID"
309     fi
310     if $FSSTRESS_PROG | grep -q copyrange; then
311         FSSTRESS_AVOID="-f copyrange=0 $FSSTRESS_AVOID"
312     fi
313
314     echo ""
315     echo "-----------------------------------------------"
316     echo "fsstress : $_param"
317     echo "-----------------------------------------------"
318     if ! $here/ltp/fsstress $_param -s 1 $FSSTRESS_AVOID -n $_count -d $dump_dir >$tmp.out 2>&1
319     then
320         echo "    fsstress (count=$_count) returned $? - see $seqres.full"
321
322         echo "--------------------------------------"       >>$seqres.full
323         echo "output from fsstress:"                        >>$seqres.full
324         echo "--------------------------------------"       >>$seqres.full
325         cat $tmp.out                                        >>$seqres.full
326         status=1
327     fi
328
329     _stable_fs
330 }
331
332 _create_dumpdir_stress() {
333         _create_dumpdir_stress_num 240
334 }
335
336 _mk_fillconfig1()
337 {
338     cat <<End-of-File >$tmp.config
339 # pathname      size in bytes   owner   group
340 #
341 small           10      $nobody $nobody
342 big             102400  daemon  sys
343 sub/small       10      bin     bin
344 sub/big         102400  $nobody sys
345 #
346 sub/a           1       $nobody $nobody
347 sub/b           2       $nobody $nobody
348 sub/c           4       $nobody $nobody
349 sub/d           8       $nobody $nobody
350 sub/e           16      $nobody $nobody
351 sub/f           32      $nobody $nobody
352 sub/g           64      $nobody $nobody
353 sub/h           128     $nobody $nobody
354 sub/i           256     $nobody $nobody
355 sub/j           512     $nobody $nobody
356 sub/k           1024    $nobody $nobody
357 sub/l           2048    $nobody $nobody
358 sub/m           4096    $nobody $nobody
359 sub/n           8192    $nobody $nobody
360 #
361 sub/a00         100     $nobody $nobody
362 sub/b00         200     $nobody $nobody
363 sub/c00         400     $nobody $nobody
364 sub/d00         800     $nobody $nobody
365 sub/e00         1600    $nobody $nobody
366 sub/f00         3200    $nobody $nobody
367 sub/g00         6400    $nobody $nobody
368 sub/h00         12800   $nobody $nobody
369 sub/i00         25600   $nobody $nobody
370 sub/j00         51200   $nobody $nobody
371 sub/k00         102400  $nobody $nobody
372 sub/l00         204800  $nobody $nobody
373 sub/m00         409600  $nobody $nobody
374 sub/n00         819200  $nobody $nobody
375 #
376 sub/a000        1000    $nobody $nobody
377 sub/e000        16000   $nobody $nobody
378 sub/h000        128000  $nobody $nobody
379 sub/k000        1024000 $nobody $nobody
380 End-of-File
381 }
382
383 _mk_fillconfig2()
384 {
385     cat <<End-of-File >$tmp.config
386 # pathname      size in bytes
387 #
388 smalll          10      $nobody $nobody
389 biggg           102400  $nobody $nobody
390 sub/smalll      10      $nobody $nobody
391 sub/biggg       102400  $nobody $nobody
392 End-of-File
393 }
394
395 _mk_fillconfig_perm()
396 {
397     cat <<End-of-File >$tmp.config
398 # pathname      size/dir  user group mode
399 #
400 file_suid       10      $nobody $nobody 04777
401 file_guid       10      $nobody $nobody 02777
402 file_sticky     10      $nobody $nobody 01777
403 file_mix1       10      $nobody $nobody 761
404 file_mix2       10      $nobody $nobody 642
405 dir_suid        d       $nobody $nobody 04777
406 dir_guid        d       $nobody $nobody 02777
407 dir_sticky      d       $nobody $nobody 01777
408 dir_mix1        d       $nobody $nobody 761
409 dir_mix2        d       $nobody $nobody 642
410 End-of-File
411 }
412
413 _mk_fillconfig_ea()
414 {
415     cat <<End-of-File >$tmp.config
416 # pathname      size    user    group    perm   name value namespace
417 #
418 smalll          10      $nobody $nobody  777    attr1 some_text   user
419 biggg           102400  $nobody $nobody  777    attr2 some_text2  root
420 sub/smalll      10      $nobody $nobody  777    attr3 some_text3  user
421 sub/biggg       102400  $nobody $nobody  777    attr4 some_text4  root
422 dir             d       $nobody $nobody  777    attr5 dir_text    user
423 #
424 # Add more files so that there are more than the number
425 # of streams.
426 # There are bugs in dump/restore for # non-dir files < # streams
427 # It can be tested in another configuration.
428 # It is a pathalogical case.
429 #
430 sub/a           1       $nobody $nobody
431 sub/b           2       $nobody $nobody
432 sub/c           4       $nobody $nobody
433 sub/d           8       $nobody $nobody
434 sub/e           16      $nobody $nobody
435 sub/f           32      $nobody $nobody
436 sub/g           64      $nobody $nobody
437 sub/h           128     $nobody $nobody
438 sub/i           256     $nobody $nobody
439 sub/j           512     $nobody $nobody
440 sub/k           1024    $nobody $nobody
441 sub/l           2048    $nobody $nobody
442 sub/m           4096    $nobody $nobody
443 sub/n           8192    $nobody $nobody
444 End-of-File
445 }
446
447 #
448 # extended file attribute flags
449 #
450 _mk_fillconfig_xattr()
451 {
452     cat <<End-of-File >$tmp.config
453 # pathname      size    user    group    perm   name
454 #
455 xflag_realtime  10      $nobody $nobody  777    XFS_XFLAG_REALTIME
456 xflag_prealloc  10      $nobody $nobody  777    XFS_XFLAG_PREALLOC
457 xflag_immutable 10      $nobody $nobody  777    XFS_XFLAG_IMMUTABLE
458 xflag_append    10      $nobody $nobody  777    XFS_XFLAG_APPEND
459 xflag_sync      10      $nobody $nobody  777    XFS_XFLAG_SYNC
460 xflag_noatime   10      $nobody $nobody  777    XFS_XFLAG_NOATIME
461 xflag_nodump    10      $nobody $nobody  777    XFS_XFLAG_NODUMP
462 xflag_hasattr   10      $nobody $nobody  777    XFS_XFLAG_HASATTR
463 End-of-File
464 }
465
466 #
467 # Create a bunch of directories/files of different sizes
468 # filled with data.
469 #
470 # Pinched from test 001.
471 #
472 _do_create_dumpdir_fill()
473 {
474     echo "Creating directory system to dump using src/fill."
475
476     mkdir -p $dump_dir || _fail "cannot mkdir \"$dump_dir\""
477     cd $dump_dir
478
479     $verbose && echo -n "Setup "
480     sed -e '/^#/d' $tmp.config \
481     | while read file nbytes owner group perms ea_name ea_value namespace
482     do
483         if [ $nbytes = "d" ]; then
484             # create a directory
485             dir=$file
486             if [ ! -d $dir ]
487             then
488                 if mkdir $dir
489                 then
490                     :
491                 else
492                     $verbose && echo
493                     echo "Error: cannot mkdir \"$dir\""
494                     exit 1
495                 fi
496             fi
497         else
498             # create a directory/file
499             dir=`dirname $file`
500             if [ "$dir" != "." ]
501             then
502                 if [ ! -d $dir ]
503                 then
504                     if mkdir $dir
505                     then
506                         :
507                     else
508                         $verbose && echo
509                         echo "Error: cannot mkdir \"$dir\""
510                         exit 1
511                     fi
512                 fi
513             fi
514             rm -f $file
515             if $here/src/fill $file $file $nbytes
516             then
517                 :
518             else
519                 $verbose && echo
520                 echo "Error: cannot create \"$file\""
521                 exit 1
522             fi
523         fi
524         if [ -n "$owner" -a -n "$group" ]; then
525             chown $owner.$group $file
526         fi
527         if [ -n "$perms" ]; then
528             chmod $perms $file
529         fi
530
531         # extended attributes (EA)
532         if [ -n "$ea_name" -a -n "$ea_value" ]; then
533             if [ "X$namespace" = "Xroot" ]; then
534                 attr -R -s $ea_name -V $ea_value $file
535             else
536                 attr -s $ea_name -V $ea_value $file
537             fi
538         # extended file attribute flags - no value - NOT EAs
539         elif [ -n "$ea_name" -a -z "$ea_value" ]; then
540             # set the flag
541             # TODO XXX
542             # use xfs_io to send the ioctl
543             :
544         fi
545         $verbose && echo -n "."
546     done
547     $verbose && echo
548
549     cd $here
550 }
551
552 _mk_fillconfig_multi()
553 {
554     _mk_fillconfig1
555     cat <<End-of-File >>$tmp.config
556 # pathname      size in bytes
557 #
558 large000        8874368 $nobody $nobody
559 large111        2582912 $nobody $nobody
560 large222        7825792 $nobody $nobody
561 End-of-File
562 }
563
564 _create_dumpdir_largefile()
565 {
566     _wipe_fs
567     mkdir -p $dump_dir || _fail "cannot mkdir \"$dump_dir\""
568     _largesize=4294967297
569     _largefile=$dump_dir/largefile
570     echo "dd a largefile at offset $_largesize"
571     POSIXLY_CORRECT=yes \
572     dd if=/dev/zero of=$_largefile bs=1 seek=$_largesize count=10 2>&1
573     _stable_fs
574 }
575
576 _create_dumpdir_fill()
577 {
578     _wipe_fs
579     _mk_fillconfig1
580     _do_create_dumpdir_fill
581     _stable_fs
582 }
583
584 _create_dumpdir_fill2()
585 {
586     _wipe_fs
587     _mk_fillconfig2
588     _do_create_dumpdir_fill
589     _stable_fs
590 }
591
592 _create_dumpdir_fill_perm()
593 {
594     _wipe_fs
595     _mk_fillconfig_perm
596     _do_create_dumpdir_fill
597     _stable_fs
598 }
599
600 _create_dumpdir_fill_ea()
601 {
602     _wipe_fs
603     _mk_fillconfig_ea
604     _do_create_dumpdir_fill
605     _stable_fs
606 }
607
608 #
609 # Create enough files, and a few large enough files, so that
610 # some files are likely to be split across streams.
611 #
612 _create_dumpdir_fill_multi()
613 {
614     _wipe_fs
615     _mk_fillconfig_multi
616     _do_create_dumpdir_fill
617     _stable_fs
618 }
619
620 #
621 # Append a subset of the fill'ed files
622 # So we can see if just these get dumped on an incremental
623 #
624 _append_dumpdir_fill()
625 {
626     cd $dump_dir
627     cat <<End-of-File >$tmp.config
628 # pathname
629 #
630 small
631 sub/big
632 #
633 sub/a
634 sub/c
635 sub/e
636 End-of-File
637     sed -e '/^#/d' $tmp.config \
638     | while read file
639     do
640         echo 'Extra text' >>$file
641     done
642
643     cd $here
644     _stable_fs
645 }
646
647 _do_create_dump_symlinks()
648 {
649     echo "Creating directory system of symlinks to dump."
650
651     mkdir -p $dump_dir || _fail "cannot mkdir \"$dump_dir\""
652     cd $dump_dir
653
654     $verbose && echo -n "Setup "
655     sed -e '/^#/d' $tmp.config \
656     | while read file nbytes owner group owner2 group2 perms perms2
657     do
658         dir=`dirname $file`
659         if [ "$dir" != "." ]
660         then
661             if [ ! -d $dir ]
662             then
663                 if mkdir $dir
664                 then
665                     :
666                 else
667                     $verbose && echo
668                     echo "Error: cannot mkdir \"$dir\""
669                     exit 1
670                 fi
671             fi
672         fi
673         rm -f $file
674         touch $file
675
676         # Do chmod on symlink using umask.
677         # This won't do the right thing as it subtracts permissions.
678         # However, I don't care, as long as I get some different perms
679         # for testing.
680         if [ -n "$perms2" ]; then
681             omask=`umask`
682             umask $perms2
683         fi
684         ln -s $file $file-link
685         if [ -n "$perms2" ]; then
686             umask $omask
687         fi
688
689         if [ -n "$owner" -a -n "$group" ]; then
690             chown $owner.$group $file
691         fi
692         if [ -n "$owner" -a -n "$group" ]; then
693             chown -h $owner.$group $file-link
694         fi
695         if [ -n "$perms" ]; then
696             chmod $perms $file
697         fi
698         $verbose && echo -n "."
699     done
700     $verbose && echo
701
702     cd $here
703 }
704
705 _mk_symlink_config()
706 {
707     cat <<End-of-File >$tmp.config
708 # path  size    owner1  group1  owner2  group2  perm1   perm2
709 #
710 a       0       $nobody $nobody daemon  sys     124     421
711 b       0       daemon  sys     bin     bin     347     743
712 sub/a   0       bin     bin     $nobody sys     777     777
713 sub/b   0       $nobody sys     $nobody $nobody 367     763
714 End-of-File
715 }
716
717 _create_dumpdir_symlinks()
718 {
719     _wipe_fs
720     _mk_symlink_config
721     _do_create_dump_symlinks
722     _stable_fs
723 }
724
725 #
726 # create hardlinks of form $_fname, $_fname_h1 $_fname_h2 ...
727 #
728 _create_hardlinks()
729 {
730     _fname=$1
731     _numlinks=$2
732
733     touch $_fname
734     _j=1
735     while [ $_j -le $_numlinks ]; do
736         _suffix=_h$_j
737         _hardlink=$_fname$_suffix
738         echo "creating hardlink $_hardlink to $_fname"
739         ln $_fname $_hardlink
740         let _j=$_j+1
741     done
742 }
743
744 #
745 # create a set of hardlinks
746 # create hardlinks of form file1, file1_h1 file1_h2 ...
747 # create hardlinks of form file2, file2_h1 file2_h2 ...
748 # create hardlinks of form file3, file3_h1 file3_h2 ...
749 #
750 _create_hardset()
751 {
752     _numsets=$1
753     _i=1
754     while [ $_i -le $_numsets ]; do
755         _create_hardlinks file$_i 5
756         let _i=$_i+1
757     done
758 }
759
760
761 _modify_level()
762 {
763     _level=$1
764     echo "mod level $_level" >$dump_dir/file$_level
765 }
766
767 _create_dumpdir_hardlinks()
768 {
769     _numsets=$1
770     _wipe_fs
771     echo "Creating directory system of hardlinks to incrementally dump."
772
773     mkdir -p $dump_dir || _fail "cannot mkdir \"$dump_dir\""
774     cd $dump_dir
775
776     _create_hardset $_numsets
777
778     cd $here
779     _stable_fs
780 }
781
782 #
783 # Filter for ls
784 # Filter out times and dates on symlinks and char devices.
785 # Filter out size on directories because this can differ
786 # when transitioning to long inode numbers (ie. 64 bits).
787 #
788 _ls_filter()
789 {
790   $AWK_PROG '
791         /^l/ { date = $8; time = $7; sub(date,"DATE"); sub(time,"TIME"); print}
792         /^c/ { date = $9; time = $7; sub(date,"DATE"); sub(time,"TIME"); print}
793         /^d/ { size = $5; sub(size,"SIZE"); print}
794         {print}' \
795   | sed -e 's/total [0-9][0-9]*/total TOTAL/'
796 }
797
798 #
799 # Filtering of Irix character hwgraph device names
800 # e.g.
801 # chardev: /hw/node/xtalk/15/pci/0/scsi_ctlr/0/target/1/lun/0/disk/partition/4/char
802 # blkdev:  /dev/dsk/dks0d1s4
803 #
804 _filter_devchar()
805 {
806     $AWK_PROG '
807         /\/hw\/node/ {
808             sub(/\/hw.*scsi_ctlr\//,"/dev/dsk/dks")  # blah blah /dev/dsk/dks0/target/1/....
809             sub(/\/target\//,"d")                    # blah blah /dev/dsk/dks0d1/lun/0/disk.....
810             sub(/\/lun.*partition\//,"s")            # blah blah /dev/dsk/dks0d1s4/char
811             sub(/\/char/,"")                         # blah blah /dev/dsk/dks0d1s4
812         }
813         { print }
814     '
815 }
816
817
818 #
819 # Filter out the non-deterministic dump msgs from
820 # xfsdump and xfsrestore
821 #
822 _dump_filter_main()
823 {
824   _filter_devchar |\
825   sed \
826       -e "s#$__XFSDUMP_PROG#xfsdump#"                   \
827       -e "s#$XFSRESTORE_PROG#xfsrestore#"               \
828       -e "s#$XFSINVUTIL_PROG#xfsinvutil#"               \
829       -e "s/`hostname`/HOSTNAME/"                       \
830       -e "s#$SCRATCH_DEV#SCRATCH_DEV#"                  \
831       -e "s#$SCRATCH_RAWDEV#SCRATCH_DEV#"               \
832       -e "s#$dumptape#TAPE_DEV#"                        \
833       -e "s#$SCRATCH_MNT#SCRATCH_MNT#"                  \
834       -e "s#$dump_file#DUMP_FILE#"                      \
835       -e 's#/var/lib/xfsdump#/var/xfsdump#'             \
836       -e 's/session id:[        ]*[0-9a-f-]*/session id: ID/'  \
837       -e '/filesystem id:[      ]*[0-9a-f-]*/d'         \
838       -e 's/time:[      ].*/time: TIME/'                \
839       -e 's/date:[      ].*/date: DATE/'                \
840       -e 's/dump begun .*/dump begun DATE/'             \
841       -e 's/previously begun .*/previously begun DATE/' \
842       -e 's/[0-9][0-9]* seconds/SECS seconds/'          \
843       -e 's/restore.[0-9][0-9]*/restore.PID/'           \
844       -e 's/ino [0-9][0-9]*/ino INO/g'                  \
845       -e '/stream [0-9]:/s/offset [0-9][0-9]*/offset NUM/g'     \
846       -e '/: dump size/s/[0-9][0-9]*/NUM/'              \
847       -e '/dump size:/s/[0-9][0-9]*/NUM/'               \
848       -e '/dump size per stream:/s/[0-9][0-9]*/NUM/'    \
849       -e 's/\(media file size[   ]*\)[0-9][0-9]*/\1NUM/' \
850       -e 's/\(mfile size:[       ]*\)[0-9][0-9]*/\1NUM/' \
851       -e '/drive[        ]*[0-9][0-9]*:/d'              \
852       -e '/\/dev\/tty/d'                                \
853       -e '/inventory session uuid/d'                    \
854       -e '/ - Running single-threaded/d'                \
855       -e '/Mount point match/d'                         \
856       -e '/^.*I\/O metrics: .*$/d'                      \
857       -e 's/1048576/BLOCKSZ/'                           \
858       -e 's/2097152/BLOCKSZ/'                           \
859       -e 's/(pid[        ]*[1-9][0-9]*)/\(pid PID\)/'   \
860       -e '/version [3-9]\.[0-9]/d'                      \
861       -e 's/\/hw\/module.*$/SCRATCH_DEV/'               \
862       -e 's/xfsdump: ino map phase 1: .*/xfsdump: ino map <PHASES>/' \
863       -e '/xfsdump: ino map phase [2]/,1d'              \
864       -e '/xfsdump: ino map phase [3]/,1d'              \
865       -e '/xfsdump: ino map phase [4]/,1d'              \
866       -e '/xfsdump: ino map phase [5]/,1d'              \
867       -e 's/id:[[:space:]]*[0-9a-f]\{8\}-[0-9a-f]\{4\}-[0-9a-f]\{4\}-[0-9a-f]\{4\}-[0-9a-f]\{12\}/ID: ID/'                                              \
868       -e 's/\[y\/n\][- ]----------------------*/\[y\/n\]/'              \
869       -e '/skip attribute set/d'                                \
870   | perl -ne '
871         # filter out all the output between the lines "Dump Summary:"
872         # and "Dump Status:"
873         if ($_ =~ /(?:Dump|Restore) Summary/) {
874                 $skip = 1;
875         } elsif ($_ =~ /(?:Dump|Restore) Status/) {
876                 $skip = 0;
877         }
878         print if (! $skip);' \
879   | perl -ne '
880         # correct the file count if large scratch devices are being used
881         $skip = 0;
882         if ($_ =~ /(\S+) directories and (\S+) entries/) {
883                 $foo = $2;
884                 if ($ENV{'LARGE_SCRATCH_DEV'} && $foo > 0) {
885                         $foo -= 1;
886                 }
887                 printf("xfsrestore: %u directories and %u entries processed\n",
888                                                 $1, $foo);
889                 $skip = 1;
890         }
891         print if (! $skip);'
892 }
893
894 _dump_filter()
895 {
896    if $do_quota_check
897    then
898        _dump_filter_main | _check_quota_dumprestore | _check_quota_entries
899    else
900        _dump_filter_main
901    fi
902 }
903
904 _invutil_filter()
905 {
906   _dump_filter_main \
907   | sed \
908         -e 's/UUID[     ]*:[    ][0-9a-f-]*/UUID                :       ID/' \
909         -e 's/TIME OF DUMP[     ]*:.*/TIME OF DUMP      :       TIME/' \
910         -e 's/HOSTNAME:SCRATCH_MNT.*/HOSTNAME:SCRATCH_MNT/' \
911         -e 's#inventory/[0-9a-f-]*#inventory/UUID#' \
912
913 }
914
915
916 _dir_filter()
917 {
918   sed \
919     -e "s#$dump_file#DUMP_FILE#g"      \
920     -e "s#$SCRATCH_DEV#SCRATCH_DEV#"        \
921     -e "s#$SCRATCH_RAWDEV#SCRATCH_DEV#"    \
922     -e "s#$dumptape#TAPE_DEV#"         \
923     -e "s#$dump_dir#DUMP_DIR#g"       \
924     -e "s#$restore_dir#RESTORE_DIR#g" \
925     -e "s#$SCRATCH_MNT#SCRATCH_MNT#g"       \
926     -e "s#$dump_sdir#DUMP_SUBDIR#g"   \
927     -e "s#$restore_sdir#RESTORE_SUBDIR#g" \
928     -e "s#$$#PID#g" \
929     -e "/Only in SCRATCH_MNT: .use_space/d" \
930     -e "s#$RESULT_DIR/##g" \
931
932 }
933
934 #
935 # Parse xfsdump arguments.
936 # Note: requires a space between option letter and argument
937 #
938 _parse_dump_args()
939 {
940     OPTIND=0
941     dump_args=""
942     while [ $# -gt 0 ]
943     do
944         case $1
945         in
946         -f)
947             [ -z "$2" ] && _fail "missing argument for -f"
948             dumptape=$2
949             dump_file=$2
950             shift
951             ;;
952         -L)
953             [ -z "$2" ] && _fail "missing argument for -L"
954             session_label=$2
955             shift
956             ;;
957         --multi)
958             [ -z "$2" ] && _fail "missing argument for --multi"
959             multi=$2
960             shift
961             ;;
962         --check-quota)
963             do_quota_check=true
964             ;;
965         --no-check-quota)
966             do_quota_check=false
967             ;;
968         -o|-D|-F|-K)
969             dump_args="$dump_args $1"
970             ;;
971         -l|-d)
972             [ -z "$2" ] && _fail "missing argument for $1"
973             dump_args="$dump_args $1$2"
974             shift
975             ;;
976         *)
977             _fail "invalid argument to common/dump function: $1"
978             ;;
979         esac
980         shift
981     done
982 }
983
984 #
985 # Parse xfsrestore arguments.
986 # Note: requires a space between option letter and argument
987 #
988 _parse_restore_args()
989 {
990     OPTIND=0
991     restore_args=""
992     while [ $# -gt 0 ]
993     do
994         case $1
995         in
996         -f)
997             [ -z "$2" ] && _fail "missing argument for -f"
998             dumptape=$2
999             dump_file=$2
1000             shift
1001             ;;
1002         -L)
1003             [ -z "$2" ] && _fail "missing argument for -L"
1004             session_label=$2
1005             shift
1006             ;;
1007         --multi)
1008             [ -z "$2" ] && _fail "missing argument for --multi"
1009             multi=$2
1010             shift
1011             ;;
1012         --check-quota)
1013             do_quota_check=true
1014             ;;
1015         --no-check-quota)
1016             do_quota_check=false
1017             ;;
1018         -K|-R)
1019             restore_args="$restore_args $1"
1020             ;;
1021         *)
1022             _fail "invalid argument to common/dump function: $1"
1023             ;;
1024         esac
1025         shift
1026     done
1027 }
1028
1029
1030 #
1031 # Dump a subdir
1032 #
1033 _do_dump_sub()
1034 {
1035     _parse_dump_args $*
1036
1037     echo "Dumping to tape..."
1038     opts="$_dump_debug$dump_args -s $dump_sdir -f $dumptape -M $media_label -L $session_label $SCRATCH_MNT"
1039     echo "xfsdump $opts" | _dir_filter
1040     $XFSDUMP_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter
1041 }
1042
1043 #
1044 # Do dump to tape
1045 #
1046 _do_dump()
1047 {
1048     _parse_dump_args $*
1049
1050     echo "Dumping to tape..."
1051     opts="$_dump_debug$dump_args -f $dumptape -M $media_label -L $session_label $SCRATCH_MNT"
1052     echo "xfsdump $opts" | _dir_filter
1053     $XFSDUMP_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter
1054 }
1055
1056
1057 #
1058 # Do full dump with -m
1059 #
1060 _do_dump_min()
1061 {
1062     _parse_dump_args $*
1063
1064     echo "Dumping to tape..."
1065     onemeg=1048576
1066     opts="$_dump_debug$dump_args -m -b $onemeg -l0 -f $dumptape -M $media_label -L $session_label $SCRATCH_MNT"
1067     echo "xfsdump $opts" | _dir_filter
1068     $XFSDUMP_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter
1069 }
1070
1071
1072 #
1073 # Do full dump to file
1074 #
1075 _do_dump_file()
1076 {
1077     _parse_dump_args $*
1078
1079     echo "Dumping to file..."
1080     opts="$_dump_debug$dump_args -f $dump_file -M $media_label -L $session_label $SCRATCH_MNT"
1081     echo "xfsdump $opts" | _dir_filter
1082     $XFSDUMP_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter
1083 }
1084
1085 #
1086 # Do full dump to multiple files
1087 #
1088 _do_dump_multi_file()
1089 {
1090     _parse_dump_args $*
1091
1092     multi_args=""
1093
1094     i=0
1095     while [ $i -lt $multi ]
1096     do
1097         multi_args="$multi_args -f $dump_file.$i -M $media_label.$i"
1098         let i=$i+1
1099     done
1100
1101     echo "Dumping to files..."
1102     opts="$_dump_debug$dump_args $multi_args -L $session_label $SCRATCH_MNT"
1103     echo "xfsdump $opts" | _dir_filter
1104     $XFSDUMP_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter
1105 }
1106
1107
1108 _prepare_restore_dir()
1109 {
1110     rm -rf $restore_dir
1111     mkdir $restore_dir || _fail "failed to mkdir $restore_dir"
1112 }
1113
1114
1115 #
1116 # Get tape ready and restore dir
1117 #
1118 _prepare_restore()
1119 {
1120     _prepare_restore_dir
1121
1122     echo "Rewinding tape"
1123     _rewind
1124 }
1125
1126 #
1127 # Restore the tape into $restore_dir
1128 #
1129 _do_restore()
1130 {
1131     _parse_restore_args $*
1132     _prepare_restore
1133
1134     echo "Restoring from tape..."
1135     opts="$_restore_debug$restore_args -f $dumptape  -L $session_label $restore_dir"
1136     echo "xfsrestore $opts" | _dir_filter
1137     $XFSRESTORE_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter
1138 }
1139
1140 #
1141 # Restore the tape into $restore_dir using -m
1142 #
1143 _do_restore_min()
1144 {
1145     _parse_restore_args $*
1146     _prepare_restore
1147
1148     echo "Restoring from tape..."
1149     onemeg=1048576
1150     opts="$_restore_debug$restore_args -m -b $onemeg -f $dumptape  -L $session_label $restore_dir"
1151     echo "xfsrestore $opts" | _dir_filter
1152     $XFSRESTORE_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter
1153 }
1154
1155 #
1156 # Restore the tape from a dump file
1157 #
1158 _do_restore_file()
1159 {
1160     _parse_restore_args $*
1161     _prepare_restore_dir
1162
1163     echo "Restoring from file..."
1164     opts="$_restore_debug$restore_args -f $dump_file  -L $session_label $restore_dir"
1165     echo "xfsrestore $opts" | _dir_filter
1166     $XFSRESTORE_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter
1167 }
1168
1169 #
1170 # Cumulative restore from a file
1171 # Must call _prepare_restore_dir before the first
1172 # (and only the first) call to this function.
1173 #
1174 _do_restore_file_cum()
1175 {
1176     _parse_restore_args $*
1177
1178     echo "Restoring cumumlative from file..."
1179     opts="$_restore_debug$restore_args -f $dump_file -r $restore_dir"
1180     echo "xfsrestore $opts" | _dir_filter
1181     $XFSRESTORE_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter
1182 }
1183
1184 _do_restore_toc()
1185 {
1186     _parse_restore_args $*
1187
1188     echo "Contents of dump ..."
1189     opts="$_restore_debug$restore_args -f $dump_file -t"
1190     echo "xfsrestore $opts" | _dir_filter
1191     cd $SCRATCH_MNT
1192     $XFSRESTORE_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter_main |\
1193     _check_quota_file |\
1194     _check_quota_entries |\
1195     $AWK_PROG 'NF != 1 { print; next }
1196                {files = sprintf("%s\n%s", files, $1)}
1197                 END { print files | "sort" } '
1198     # the above awk code is to alpha sort only the output
1199     # of files (and not the verbose restore msgs)
1200     cd $here # put back
1201 }
1202
1203 #
1204 # Restore the tape from multiple dump files
1205 #
1206 _do_restore_multi_file()
1207 {
1208     _parse_restore_args $*
1209     _prepare_restore_dir
1210
1211     multi_args=""
1212
1213     i=0
1214     while [ $i -lt $multi ]
1215     do
1216         multi_args="$multi_args -f $dump_file.$i"
1217         let i=$i+1
1218     done
1219
1220     echo "Restoring from file..."
1221     opts="$_restore_debug$restore_args $multi_args -L $session_label $restore_dir"
1222     echo "xfsrestore $opts" | _dir_filter
1223     $XFSRESTORE_PROG $opts 2>&1 | tee -a $seqres.full | _dump_filter
1224 }
1225
1226 #
1227 # Do xfsdump piped into xfsrestore - xfsdump | xfsrestore
1228 # Pass dump options in $1 and restore options in $2, if required. e.g.:
1229 #     _do_dump_restore "-o -F" "-R"
1230 #     _do_dump_restore "" "-R"
1231 #
1232 # Use -s as we want to dump and restore to the same xfs partition
1233 #
1234 _do_dump_restore()
1235 {
1236     _parse_dump_args $1
1237     _parse_restore_args $2
1238     _prepare_restore_dir
1239     echo "xfsdump|xfsrestore ..."
1240     restore_opts="$_restore_debug$restore_args - $restore_dir"
1241     dump_opts="$_dump_debug$dump_args -s $dump_sdir - $SCRATCH_MNT"
1242     echo "xfsdump $dump_opts | xfsrestore $restore_opts" | _dir_filter
1243     $XFSDUMP_PROG $dump_opts 2>$tmp.dump.mlog | $XFSRESTORE_PROG $restore_opts 2>&1 | tee -a $seqres.full | _dump_filter
1244     _dump_filter <$tmp.dump.mlog
1245 }
1246
1247 #
1248 # Compare dumped subdirectory with restored dir
1249 # using ls -nR.
1250 # Thus no contents are compared but permissions, sizes,
1251 # owners, etc... are.
1252 #
1253 _ls_compare_sub()
1254 {
1255     #
1256     # verify we got back what we dumped
1257     #
1258     echo "Comparing listing of dump directory with restore directory"
1259     ls -nR $dump_dir | tee -a $seqres.full | _ls_filter >$tmp.dump_dir
1260     ls -nR $restore_dir/$dump_sdir | tee -a $seqres.full | _ls_filter \
1261     | sed -e "s#$restore_sdir\/##" >$tmp.restore_dir
1262
1263     diff -bcs $tmp.dump_dir $tmp.restore_dir | sed -e "s#$tmp#TMP#g"
1264 }
1265
1266 #
1267 # filter out the date fields
1268 #
1269 _ls_nodate_filter()
1270 {
1271     $AWK_PROG 'NF == 9 { print $1, $2, $3, $4, $9 }'
1272 }
1273
1274 #
1275 # _ls_compare_sub but don't compare dates
1276 _ls_nodate_compare_sub()
1277 {
1278     #
1279     # verify we got back what we dumped
1280     #
1281     echo "Comparing listing of dump directory with restore directory"
1282     ls -nR $dump_dir | tee -a $seqres.full | _ls_filter | _ls_nodate_filter >$tmp.dump_dir
1283     ls -nR $restore_dir/$dump_sdir | tee -a $seqres.full | _ls_filter \
1284     | _ls_nodate_filter | sed -e "s#$restore_sdir\/##" >$tmp.restore_dir
1285
1286     diff -bcs $tmp.dump_dir $tmp.restore_dir | sed -e "s#$tmp#TMP#g"
1287 }
1288
1289 #
1290 # Compare using recursive diff the files of the dumped
1291 # subdirectory.
1292 # This one will compare the contents.
1293 #
1294 _diff_compare_sub()
1295 {
1296     echo "Comparing dump directory with restore directory"
1297     diff -rs $dump_dir $restore_dir/$dump_sdir | _dir_filter
1298 }
1299
1300 _get_eas_on_path()
1301 {
1302     _path=$1
1303
1304 # Tim - this is the IRIX way...
1305     # find $_path -exec attr -l {} \; |\
1306     # awk '{print $9, $2}' |\
1307     # sed 's/["]//g' |\
1308     # sort |\
1309 # and this is now the Linux way...
1310     echo "User names"
1311     getfattr --absolute-names -Rh -m user $_path |\
1312     perl -wn -e '
1313         if (m/^# file: (\S+)/) { $file = $1 }
1314         elsif (m/^user\.(\w+)/) { print $file, " ",$1,"\n" }' |\
1315     sort |\
1316     while read file ea_name; do
1317         attr -g $ea_name $file
1318     done
1319
1320     if [ "$USE_ATTR_SECURE" = yes ]; then
1321         echo "Security names"
1322         getfattr --absolute-names -Rh -m security $_path |\
1323         perl -wn -e '
1324             if (m/^# file: (\S+)/) { $file = $1 }
1325             elsif (m/^security\.(\w+)/) { print $file, " ",$1,"\n" }' |\
1326         sort |\
1327         while read file ea_name; do
1328             attr -g $ea_name $file
1329         done
1330     fi
1331
1332     echo "Root names"
1333     getfattr --absolute-names -Rh -m trusted $_path |\
1334     perl -wn -e '
1335         if (m/^# file: (\S+)/) { $file = $1 }
1336         elsif (m/^trusted\.(\w+)/) { print $file, " ",$1,"\n" }' |\
1337     sort |\
1338     while read file ea_name; do
1339         attr -R -g $ea_name $file
1340     done
1341 }
1342
1343 #
1344 # Compare the extended attributes of the files/dirs
1345 # b/w the dumped and restore dirs.
1346 #
1347 #
1348 # Attribute "attr5" had a 8 byte value for /spare1/dump.5460/dir:
1349 # Attribute "attr5" had a 8 byte value for /spare1/restore.5460/dump.5460/dir:
1350 #
1351 _diff_compare_eas()
1352 {
1353     echo "Comparing dump directory with restore directory"
1354     echo "Looking at the extended attributes (EAs)"
1355     echo "EAs on dump"
1356     _get_eas_on_path $dump_dir | tee $seqres.ea1 | _dir_filter
1357     echo "EAs on restore"
1358     _get_eas_on_path $restore_dir/$dump_sdir \
1359     | sed -e "s#$restore_sdir\/##" \
1360     | tee $seqres.ea2 \
1361     | _dir_filter
1362     diff -s $seqres.ea1 $seqres.ea2 | _dir_filter
1363 }
1364
1365
1366 #
1367 # Compare using recursive diff the files of the dumped
1368 # filesystem
1369 #
1370 _diff_compare()
1371 {
1372     echo "Comparing dump directory with restore directory"
1373     diff -rs $SCRATCH_MNT $restore_dir | _dir_filter | _check_quota_diff
1374 }
1375
1376 #
1377 # Check out the dump inventory
1378 #
1379 _dump_inventory()
1380 {
1381     $XFSDUMP_PROG $_dump_debug -I | tee -a $seqres.full | _dump_filter_main
1382 }
1383
1384 #
1385 # Do the xfsinvutil cmd with debug and filters
1386 # Need to set variable: "$middate" to the invutil date
1387 #
1388 _do_invutil()
1389 {
1390     host=`hostname`
1391     echo "xfsinvutil $_invutil_debug -M $host:$SCRATCH_MNT \"$middate\" $*" >$seqres.full
1392     $XFSINVUTIL_PROG $_invutil_debug $* -M $host:$SCRATCH_MNT "$middate" \
1393     | tee -a $seqres.full | _invutil_filter
1394 }
1395
1396 #
1397 # ensure we can find the user quota msg if user quotas are on
1398 # ensure we can find the group quota msg if group quotas are on
1399 #
1400 _check_quota()
1401 {
1402     usermsg=$1
1403     groupmsg=$2
1404     projectmsg=$3
1405     uquota=0
1406     gquota=0
1407     pquota=0
1408     $here/src/feature -U $SCRATCH_DEV && uquota=1
1409     $here/src/feature -G $SCRATCH_DEV && gquota=1
1410     $here/src/feature -P $SCRATCH_DEV && pquota=1
1411
1412     $AWK_PROG -v uquota=$uquota -v gquota=$gquota -v pquota=$pquota \
1413               -v full=$seqres.full -v usermsg="$usermsg" \
1414               -v groupmsg="$groupmsg" -v projectmsg="$projectmsg" '
1415         $0 ~ projectmsg {
1416                         print "Found project quota:", $0 >>full
1417                         found_pquota = 1
1418                         if (!pquota) {
1419                             print "Found extra:", $0
1420                         }
1421                         next
1422         }
1423         $0 ~ groupmsg {
1424                         print "Found group quota:", $0 >>full
1425                         found_gquota = 1
1426                         if (!gquota) {
1427                             print "Found extra:", $0
1428                         }
1429                         next
1430         }
1431         $0 ~ usermsg {
1432                         print "Found user quota:", $0 >>full
1433                         found_uquota = 1
1434                         if (!uquota) {
1435                             print "Found extra:", $0
1436                         }
1437                         next
1438         }
1439         $0 ~ "Restore Status: INCOMPLETE" {
1440                         incomplete = 1
1441         }
1442                         { print }
1443         END {
1444                 if (uquota && !found_uquota && !incomplete) {
1445                     print "Missing user quota msg:", usermsg
1446                 }
1447                 if (gquota && !found_gquota && !incomplete) {
1448                     print "Missing group quota msg:", groupmsg
1449                 }
1450                 if (pquota && !found_pquota && !incomplete) {
1451                     print "Missing project quota msg:", projectmsg
1452                 }
1453         }
1454     '
1455 }
1456
1457 #
1458 # xfsrestore: 3 directories and 40 entries processed
1459 #   $5 = 40
1460 #   num entries needs to be reduced by num quota file(s)
1461 #
1462 _check_quota_entries()
1463 {
1464     uquota=0
1465     gquota=0
1466     pquota=0
1467     $here/src/feature -U $SCRATCH_DEV && uquota=1
1468     $here/src/feature -G $SCRATCH_DEV && gquota=1
1469     $here/src/feature -P $SCRATCH_DEV && pquota=1
1470     $AWK_PROG -v uquota=$uquota -v gquota=$gquota -v pquota=$pquota '
1471         /entries processed/ {
1472                 if (uquota) $5--
1473                 if (gquota) $5--
1474                 if (pquota) $5--
1475         }
1476         {print}'
1477 }
1478
1479 #
1480 # Look for:
1481 # xfsdump: saving user quota information for: SCRATCH_MNT
1482 # xfsdump: saving group quota information for: SCRATCH_MNT
1483 # xfsdump: saving project quota information for: SCRATCH_MNT
1484 # xfsrestore: user quota information written to ...'
1485 # xfsrestore: group quota information written to ...'
1486 # xfsrestore: project quota information written to ...'
1487 # xfsrestore: use 'xfs_quota' to restore quotas
1488 #
1489 _check_quota_dumprestore()
1490 {
1491         _check_quota 'user quota information' \
1492                      'group quota information' \
1493                      'project quota information' | \
1494                 sed "/xfsrestore:.*use 'xfs_quota' to restore quotas/d"
1495 }
1496
1497 #
1498 # Look for:
1499 # Only in RESTORE_DIR: xfsdump_quotas
1500 # Only in RESTORE_DIR: xfsdump_quotas_group
1501 # Only in RESTORE_DIR: xfsdump_quotas_project
1502 #
1503 _check_quota_diff()
1504 {
1505    _check_quota 'Only in RESTORE_DIR: xfsdump_quotas' \
1506         'Only in RESTORE_DIR: xfsdump_quotas_group' \
1507         'Only in RESTORE_DIR: xfsdump_quotas_proj'
1508 }
1509
1510 #
1511 # Look for the quota file in the output
1512 # Ensure that it is there if it should be
1513 # Filter it out so that the output is always the same
1514 # even with no quotas
1515 #
1516 _check_quota_file()
1517 {
1518    _check_quota 'xfsdump_quotas' 'xfsdump_quotas_group' 'xfsdump_quotas_proj'
1519 }
1520
1521
1522 # make sure this script returns success
1523 /bin/true