]> git.wh0rd.org Git - dump.git/blob - dump/traverse.c
Fix invalid EA metainformation in dump, add a workaround to restore to
[dump.git] / dump / traverse.c
1 /*
2  *      Ported to Linux's Second Extended File System as part of the
3  *      dump and restore backup suit
4  *      Remy Card <card@Linux.EU.Org>, 1994-1997
5  *      Stelian Pop <stelian@popies.net>, 1999-2000
6  *      Stelian Pop <stelian@popies.net> - AlcĂ´ve <www.alcove.com>, 2000-2002
7  */
8
9 /*-
10  * Copyright (c) 1980, 1988, 1991, 1993
11  *      The Regents of the University of California.  All rights reserved.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  * 3. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  */
37
38 #ifndef lint
39 static const char rcsid[] =
40         "$Id: traverse.c,v 1.68 2010/03/22 15:40:55 stelian Exp $";
41 #endif /* not lint */
42
43 #include <config.h>
44 #include <ctype.h>
45 #include <stdio.h>
46 #include <sys/types.h>
47 #ifdef __STDC__
48 #include <string.h>
49 #include <unistd.h>
50 #endif
51 #include <errno.h>
52
53 #include <sys/param.h>
54 #include <sys/stat.h>
55 #ifdef  __linux__
56 #ifdef HAVE_EXT2FS_EXT2_FS_H
57 #include <ext2fs/ext2_fs.h>
58 #else
59 #include <linux/ext2_fs.h>
60 #endif
61 #include <ext2fs/ext2fs.h>
62 #include <bsdcompat.h>
63 #include <compaterr.h>
64 #include <stdlib.h>
65 #elif defined sunos
66 #include <sys/vnode.h>
67
68 #include <ufs/fs.h>
69 #include <ufs/fsdir.h>
70 #include <ufs/inode.h>
71 #else
72 #include <ufs/ufs/dir.h>
73 #include <ufs/ufs/dinode.h>
74 #include <ufs/ffs/fs.h>
75 #endif  /* __linux__ */
76
77 #include <protocols/dumprestore.h>
78
79 #include "dump.h"
80
81 #define HASDUMPEDFILE   0x1
82 #define HASSUBDIRS      0x2
83
84 #ifdef __linux__
85 typedef u_quad_t fsizeT;
86 #else
87 #ifdef  FS_44INODEFMT
88 typedef quad_t fsizeT;
89 #else
90 typedef long fsizeT;
91 #endif
92 #endif
93
94 #ifdef  __linux__
95 static  int searchdir __P((struct ext2_dir_entry *dp, int offset,
96                            int blocksize, char *buf, void *private));
97 #else
98 static  int dirindir __P((dump_ino_t ino, daddr_t blkno, int level, long *size));
99 static  void dmpindir __P((dump_ino_t ino, daddr_t blk, int level, fsizeT *size));
100 static  int searchdir __P((dump_ino_t ino, daddr_t blkno, long size, long filesize));
101 #endif
102 static  void mapfileino __P((dump_ino_t ino, struct dinode const *dp, long *tapesize, int *dirskipped));
103 static void dump_xattr __P((dump_ino_t ino, struct dinode *dp));
104
105 #ifdef HAVE_EXT2_JOURNAL_INUM
106 #define ext2_journal_ino(sb) (sb->s_journal_inum)
107 #else
108 #define ext2_journal_ino(sb) (*((u_int32_t *)sb + 0x38))
109 #endif
110 #ifndef HAVE_EXT2_INO_T
111 typedef ino_t ext2_ino_t;
112 #endif
113
114 #ifndef EXT3_FEATURE_COMPAT_HAS_JOURNAL
115 #define EXT3_FEATURE_COMPAT_HAS_JOURNAL         0x0004
116 #endif
117 #ifndef EXT2_FEATURE_INCOMPAT_FILETYPE
118 #define EXT2_FEATURE_INCOMPAT_FILETYPE          0x0002
119 #endif
120 #ifndef EXT3_FEATURE_INCOMPAT_RECOVER
121 #define EXT3_FEATURE_INCOMPAT_RECOVER           0x0004
122 #endif
123 #ifndef EXT3_FEATURE_INCOMPAT_JOURNAL_DEV
124 #define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV       0x0008
125 #endif
126
127 #ifndef EXT2_LIB_FEATURE_INCOMPAT_SUPP
128 #define EXT2_LIB_FEATURE_INCOMPAT_SUPP (EXT3_FEATURE_INCOMPAT_RECOVER | \
129                                         EXT2_FEATURE_INCOMPAT_FILETYPE)
130 #endif
131 #ifndef EXT2_RESIZE_INO
132 #define EXT2_RESIZE_INO                 7
133 #endif
134 #ifndef EXT2_FT_UNKNOWN
135 #define EXT2_FT_UNKNOWN         0
136 #define EXT2_FT_REG_FILE        1
137 #define EXT2_FT_DIR             2
138 #define EXT2_FT_CHRDEV          3
139 #define EXT2_FT_BLKDEV          4
140 #define EXT2_FT_FIFO            5
141 #define EXT2_FT_SOCK            6
142 #define EXT2_FT_SYMLINK         7
143 #define EXT2_FT_MAX             8
144 #endif
145
146 int dump_fs_open(const char *disk, ext2_filsys *fs)
147 {
148         int retval;
149
150         retval = ext2fs_open(disk, EXT2_FLAG_FORCE, 0, 0, unix_io_manager, fs);
151         if (!retval) {
152                 struct ext2_super_block *es = (*fs)->super;
153                 dump_ino_t journal_ino = ext2_journal_ino(es);
154
155                 if (es->s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV){
156                         msg("This is a journal, not a filesystem!\n");
157                         retval = EXT2_ET_UNSUPP_FEATURE;
158                         ext2fs_close(*fs);
159                 }
160                 else if ((retval = es->s_feature_incompat &
161                                         ~(EXT2_LIB_FEATURE_INCOMPAT_SUPP |
162                                           EXT3_FEATURE_INCOMPAT_RECOVER))) {
163                         msg("Unsupported feature(s) 0x%x in filesystem\n",
164                                 retval);
165                         retval = EXT2_ET_UNSUPP_FEATURE;
166                         ext2fs_close(*fs);
167                 }
168                 else {
169                         if (es->s_feature_compat &
170                                 EXT3_FEATURE_COMPAT_HAS_JOURNAL && 
171                                 journal_ino)
172                                 do_exclude_ino(journal_ino, "journal inode");
173                         do_exclude_ino(EXT2_RESIZE_INO, "resize inode");
174                 }
175         }
176         return retval;
177 }
178
179 /*
180  * This is an estimation of the number of TP_BSIZE blocks in the file.
181  * It estimates the number of blocks in files with holes by assuming
182  * that all of the blocks accounted for by di_blocks are data blocks
183  * (when some of the blocks are usually used for indirect pointers);
184  * hence the estimate may be high.
185  */
186 long
187 blockest(struct dinode const *dp)
188 {
189         long blkest, sizeest;
190         u_quad_t i_size;
191
192         /*
193          * dp->di_size is the size of the file in bytes.
194          * dp->di_blocks stores the number of sectors actually in the file.
195          * If there are more sectors than the size would indicate, this just
196          *      means that there are indirect blocks in the file or unused
197          *      sectors in the last file block; we can safely ignore these
198          *      (blkest = sizeest below).
199          * If the file is bigger than the number of sectors would indicate,
200          *      then the file has holes in it.  In this case we must use the
201          *      block count to estimate the number of data blocks used, but
202          *      we use the actual size for estimating the number of indirect
203          *      dump blocks (sizeest vs. blkest in the indirect block
204          *      calculation).
205          */
206         blkest = howmany((u_quad_t)dp->di_blocks * 512, fs->blocksize) * (fs->blocksize / TP_BSIZE);
207         i_size = dp->di_size + ((u_quad_t) dp->di_size_high << 32);
208         sizeest = howmany(i_size, fs->blocksize) * (fs->blocksize / TP_BSIZE);
209         if (blkest > sizeest)
210                 blkest = sizeest;
211 #ifdef  __linux__
212         if ((dp->di_mode & IFMT) == IFDIR) {
213                 /*
214                  * for directories, assume only half of space is filled
215                  * with entries.  
216                  */
217                  blkest = blkest / 2;
218                  sizeest = sizeest / 2;
219         }
220         if (i_size > (u_quad_t)fs->blocksize * NDADDR) {
221                 /* calculate the number of indirect blocks on the dump tape */
222                 blkest +=
223                         howmany(sizeest - NDADDR * fs->blocksize / TP_BSIZE,
224                         TP_NINDIR);
225         }
226 #else
227         if (i_size > sblock->fs_bsize * NDADDR) {
228                 /* calculate the number of indirect blocks on the dump tape */
229                 blkest +=
230                         howmany(sizeest - NDADDR * sblock->fs_bsize / TP_BSIZE,
231                         TP_NINDIR);
232         }
233 #endif
234         return (blkest + 1);
235 }
236
237 /* Auxiliary macro to pick up files changed since previous dump. */
238 #define CSINCE(dp, t) \
239         ((dp)->di_ctime >= (t))
240 #define MSINCE(dp, t) \
241         ((dp)->di_mtime >= (t))
242 #define CHANGEDSINCE(dp, t) \
243         (CSINCE(dp, t) || MSINCE(dp, t))
244
245 /* The NODUMP_FLAG macro tests if a file has the nodump flag. */
246 #ifdef UF_NODUMP
247 #define NODUMP_FLAG(dp) (!nonodump && (((dp)->di_flags & UF_NODUMP) == UF_NODUMP))
248 #else
249 #define NODUMP_FLAG(dp) 0
250 #endif
251
252 /* The WANTTODUMP macro decides whether a file should be dumped. */
253 #define WANTTODUMP(dp, ino) \
254         (CHANGEDSINCE(dp, ((u_int32_t)spcl.c_ddate)) && \
255          (!NODUMP_FLAG(dp)) && \
256          (!exclude_ino(ino)))
257
258 /*
259  * Determine if given inode should be dumped. "dp" must either point to a
260  * copy of the given inode, or be NULL (in which case it is fetched.)
261  */
262 static void
263 mapfileino(dump_ino_t ino, struct dinode const *dp, long *tapesize, int *dirskipped)
264 {
265         int mode;
266
267         /*
268          * Skip inode if we've already marked it for dumping
269          */
270         if (TSTINO(ino, usedinomap))
271                 return;
272         if (!dp)
273                 dp = getino(ino);
274         if ((mode = (dp->di_mode & IFMT)) == 0)
275                 return;
276 #ifdef  __linux__
277         if (dp->di_nlink == 0 || dp->di_dtime != 0)
278                 return;
279 #endif
280         /*
281          * Put all dirs in dumpdirmap, inodes that are to be dumped in the
282          * used map. All inode but dirs who have the nodump attribute go
283          * to the usedinomap.
284          */
285         SETINO(ino, usedinomap);
286
287         if (NODUMP_FLAG(dp))
288                 do_exclude_ino(ino, "nodump attribute");
289
290         if (mode == IFDIR)
291                 SETINO(ino, dumpdirmap);
292         if (WANTTODUMP(dp, ino)) {
293                 SETINO(ino, dumpinomap);
294                 if (!MSINCE(dp, (u_int32_t)spcl.c_ddate))
295                         SETINO(ino, metainomap);
296                 if (mode != IFREG && mode != IFDIR && mode != IFLNK)
297                         *tapesize += 1;
298                 else
299                         *tapesize += blockest(dp);
300                 return;
301         }
302         if (mode == IFDIR) {
303                 if (exclude_ino(ino))
304                         CLRINO(ino, usedinomap);
305                 *dirskipped = 1;
306         }
307 }
308
309 /*
310  * Dump pass 1.
311  *
312  * Walk the inode list for a filesystem to find all allocated inodes
313  * that have been modified since the previous dump time. Also, find all
314  * the directories in the filesystem.
315  */
316 #ifdef __linux__
317 int
318 mapfiles(UNUSED(dump_ino_t maxino), long *tapesize)
319 {
320         ext2_ino_t ino;
321         int anydirskipped = 0;
322         ext2_inode_scan scan;
323         errcode_t err;
324         struct ext2_inode inode;
325
326         /*
327          * We use libext2fs's inode scanning routines, which are particularly
328          * robust.  (Note that getino cannot return an error.)
329          */
330         err = ext2fs_open_inode_scan(fs, 0, &scan);
331         if (err) {
332                 com_err(disk, err, "while opening inodes\n");
333                 exit(X_ABORT);
334         }
335         for (;;) {
336                 err = ext2fs_get_next_inode(scan, &ino, &inode);
337                 if (err == EXT2_ET_BAD_BLOCK_IN_INODE_TABLE)
338                         continue;
339                 if (err) {
340                         com_err(disk, err, "while scanning inode #%ld\n",
341                                 (long)ino);
342                         exit(X_ABORT);
343                 }
344                 if (ino == 0)
345                         break;
346
347                 curino = ino;
348                 mapfileino(ino, (struct dinode const *)&inode, tapesize,
349                            &anydirskipped);
350         }
351         ext2fs_close_inode_scan(scan);
352
353         /*
354          * Restore gets very upset if the root is not dumped,
355          * so ensure that it always is dumped.
356          */
357         SETINO(ROOTINO, dumpinomap);
358         return (anydirskipped);
359 }
360 #else
361 int
362 mapfiles(dump_ino_t maxino, long *tapesize)
363 {
364         dump_ino_t ino;
365         int anydirskipped = 0;
366
367         for (ino = ROOTINO; ino < maxino; ino++)
368                 mapfileino(ino, tapesize, &anydirskipped);
369
370         /*
371          * Restore gets very upset if the root is not dumped,
372          * so ensure that it always is dumped.
373          */
374         SETINO(ROOTINO, dumpinomap);
375         return (anydirskipped);
376 }
377 #endif /* __linux__ */
378
379 #ifdef __linux__
380 int
381 maponefile(UNUSED(dump_ino_t maxino), long *tapesize, char *directory)
382 {
383         errcode_t retval;
384         ext2_ino_t dir_ino;
385         char dir_name [MAXPATHLEN];
386         int i, anydirskipped = 0;
387
388         /*
389          * Mark every directory in the path as being dumped
390          */
391         for (i = 0; i < (int)strlen (directory); i++) {
392                 if (directory[i] == '/') {
393                         strncpy (dir_name, directory, i);
394                         dir_name[i] = '\0';
395                         retval = ext2fs_namei(fs, ROOTINO, ROOTINO, 
396                                               dir_name, &dir_ino);
397                         if (retval) {
398                                 com_err(disk, retval, 
399                                         "while translating %s", dir_name);
400                                 exit(X_ABORT);
401                         }
402                         mapfileino((dump_ino_t) dir_ino, 0,
403                                    tapesize, &anydirskipped);
404                 }
405         }
406         /*
407          * Mark the final directory
408          */
409         retval = ext2fs_namei(fs, ROOTINO, ROOTINO, directory, &dir_ino);
410         if (retval) {
411                 com_err(disk, retval, "while translating %s", directory);
412                 exit(X_ABORT);
413         }
414         mapfileino((dump_ino_t)dir_ino, 0, tapesize, &anydirskipped);
415
416         mapfileino(ROOTINO, 0, tapesize, &anydirskipped);
417
418         /*
419          * Restore gets very upset if the root is not dumped,
420          * so ensure that it always is dumped.
421          */
422         SETINO(ROOTINO, dumpdirmap);
423         return anydirskipped;
424 }
425 #endif /* __linux__ */
426
427 #ifdef  __linux__
428 struct mapfile_context {
429         long *tapesize;
430         int *anydirskipped;
431 };
432
433 static int
434 mapfilesindir(struct ext2_dir_entry *dirent, UNUSED(int offset), 
435               UNUSED(int blocksize), UNUSED(char *buf), void *private)
436 {
437         struct dinode const *dp;
438         int mode;
439         errcode_t retval;
440         struct mapfile_context *mfc;
441         ext2_ino_t ino;
442
443         ino = dirent->inode;
444         mfc = (struct mapfile_context *)private;
445         dp = getino(dirent->inode);
446
447         mapfileino(dirent->inode, dp, mfc->tapesize, mfc->anydirskipped);
448
449         mode = dp->di_mode & IFMT;
450         if (mode == IFDIR && dp->di_nlink != 0 && dp->di_dtime == 0) {
451                 if ((dirent->name[0] != '.' || ( dirent->name_len & 0xFF ) != 1) &&
452                     (dirent->name[0] != '.' || dirent->name[1] != '.' ||
453                      ( dirent->name_len & 0xFF ) != 2)) {
454                 retval = ext2fs_dir_iterate(fs, ino, 0, NULL,
455                                             mapfilesindir, private);
456                 if (retval)
457                         return retval;
458                 }
459         }
460         return 0;
461 }
462
463 /*
464  * Dump pass 1.
465  *
466  * Walk the inode list for a filesystem to find all allocated inodes
467  * that have been modified since the previous dump time. Also, find all
468  * the directories in the filesystem.
469  */
470 int
471 mapfilesfromdir(UNUSED(dump_ino_t maxino), long *tapesize, char *directory)
472 {
473         errcode_t retval;
474         struct mapfile_context mfc;
475         ext2_ino_t dir_ino;
476         char dir_name [MAXPATHLEN];
477         int i, anydirskipped = 0;
478
479         /*
480          * Mark every directory in the path as being dumped
481          */
482         for (i = 0; i < (int)strlen (directory); i++) {
483                 if (directory[i] == '/') {
484                         strncpy (dir_name, directory, i);
485                         dir_name[i] = '\0';
486                         retval = ext2fs_namei(fs, ROOTINO, ROOTINO, dir_name,
487                                               &dir_ino);
488                         if (retval) {
489                                 com_err(disk, retval, "while translating %s",
490                                         dir_name);
491                                 exit(X_ABORT);
492                         }
493                         mapfileino(dir_ino, 0, tapesize, &anydirskipped);
494                 }
495         }
496         /*
497          * Mark the final directory
498          */
499         retval = ext2fs_namei(fs, ROOTINO, ROOTINO, directory, &dir_ino);
500         if (retval) {
501                 com_err(disk, retval, "while translating %s", directory);
502                 exit(X_ABORT);
503         }
504         mapfileino(dir_ino, 0, tapesize, &anydirskipped);
505
506         mfc.tapesize = tapesize;
507         mfc.anydirskipped = &anydirskipped;
508         retval = ext2fs_dir_iterate(fs, dir_ino, 0, NULL, mapfilesindir,
509                                     (void *)&mfc);
510
511         if (retval) {
512                 com_err(disk, retval, "while mapping files in %s", directory);
513                 exit(X_ABORT);
514         }
515         /*
516          * Ensure that the root inode actually appears in the file list
517          * for a subdir
518          */
519         mapfileino(ROOTINO, 0, tapesize, &anydirskipped);
520         /*
521          * Restore gets very upset if the root is not dumped,
522          * so ensure that it always is dumped.
523          */
524         SETINO(ROOTINO, dumpinomap);
525         return anydirskipped;
526 }
527 #endif
528
529 #ifdef __linux__
530 struct mapdirs_context {
531         int *ret;
532         int nodump;
533         long *tapesize;
534 };
535 #endif
536
537 /*
538  * Dump pass 2.
539  *
540  * Scan each directory on the filesystem to see if it has any modified
541  * files in it. If it does, and has not already been added to the dump
542  * list (because it was itself modified), then add it. If a directory
543  * has not been modified itself, contains no modified files and has no
544  * subdirectories, then it can be deleted from the dump list and from
545  * the list of directories. By deleting it from the list of directories,
546  * its parent may now qualify for the same treatment on this or a later
547  * pass using this algorithm.
548  */
549 int
550 mapdirs(dump_ino_t maxino, long *tapesize)
551 {
552         struct  dinode *dp;
553         int isdir;
554         char *map;
555         dump_ino_t ino;
556 #ifndef __linux__
557         int i;
558         long filesize;
559 #else
560         struct mapdirs_context mdc;
561 #endif
562         int ret, change = 0, nodump;
563
564         isdir = 0;              /* XXX just to get gcc to shut up */
565         for (map = dumpdirmap, ino = 1; ino < maxino; ino++) {
566                 if (((ino - 1) % NBBY) == 0)    /* map is offset by 1 */
567                         isdir = *map++;
568                 else
569                         isdir >>= 1;
570                 /*
571                  * If dir has been removed from the used map, it's either
572                  * because it had the nodump flag, or it herited it from
573                  * its parent. A directory can't be in dumpinomap if not
574                  * in usedinomap, but we have to go through it anyway 
575                  * to propagate the nodump attribute.
576                  */
577                 nodump = (TSTINO(ino, usedinomap) == 0);
578                 if ((isdir & 1) == 0 ||
579                     (TSTINO(ino, dumpinomap) && nodump == 0))
580                         continue;
581                 dp = getino(ino);
582 #ifdef  __linux__
583                 ret = 0;
584                 mdc.ret = &ret;
585                 mdc.nodump = nodump;
586                 mdc.tapesize = tapesize;
587                 ext2fs_dir_iterate(fs, ino, 0, NULL, searchdir, (void *) &mdc);
588 #else   /* __linux__ */
589                 filesize = dp->di_size;
590                 for (ret = 0, i = 0; filesize > 0 && i < NDADDR; i++) {
591                         if (dp->di_db[i] != 0)
592                                 ret |= searchdir(ino, dp->di_db[i],
593                                         (long)dblksize(sblock, dp, i),
594                                         filesize);
595                         if (ret & HASDUMPEDFILE)
596                                 filesize = 0;
597                         else
598                                 filesize -= sblock->fs_bsize;
599                 }
600                 for (i = 0; filesize > 0 && i < NIADDR; i++) {
601                         if (dp->di_ib[i] == 0)
602                                 continue;
603                         ret |= dirindir(ino, dp->di_ib[i], i, &filesize);
604                 }
605 #endif  /* __linux__ */
606                 if (ret & HASDUMPEDFILE) {
607                         SETINO(ino, dumpinomap);
608                         *tapesize += blockest(dp);
609                         change = 1;
610                         continue;
611                 }
612                 if (nodump) {
613                         if (ret & HASSUBDIRS)
614                                 change = 1; /* subdirs have inherited nodump */
615                         CLRINO(ino, dumpdirmap);
616                 } else if ((ret & HASSUBDIRS) == 0) {
617                         if (!TSTINO(ino, dumpinomap)) {
618                                 CLRINO(ino, dumpdirmap);
619                                 change = 1;
620                         }
621                 }
622         }
623         return (change);
624 }
625
626 #ifndef __linux__
627 /*
628  * Read indirect blocks, and pass the data blocks to be searched
629  * as directories. Quit as soon as any entry is found that will
630  * require the directory to be dumped.
631  */
632 static int
633 dirindir(dump_ino_t ino, daddr_t blkno, int ind_level, long *filesize)
634 {
635         int ret = 0;
636         int i;
637         daddr_t idblk[MAXNINDIR];
638
639         bread(fsbtodb(sblock, blkno), (char *)idblk, (int)sblock->fs_bsize);
640         if (ind_level <= 0) {
641                 for (i = 0; *filesize > 0 && i < NINDIR(sblock); i++) {
642                         blkno = idblk[i];
643                         if (blkno != 0)
644                                 ret |= searchdir(ino, blkno, sblock->fs_bsize,
645                                         *filesize);
646                         if (ret & HASDUMPEDFILE)
647                                 *filesize = 0;
648                         else
649                                 *filesize -= sblock->fs_bsize;
650                 }
651                 return (ret);
652         }
653         ind_level--;
654         for (i = 0; *filesize > 0 && i < NINDIR(sblock); i++) {
655                 blkno = idblk[i];
656                 if (blkno != 0)
657                         ret |= dirindir(ino, blkno, ind_level, filesize);
658         }
659         return (ret);
660 }
661 #endif  /* !__linux__ */
662
663 /*
664  * Scan a disk block containing directory information looking to see if
665  * any of the entries are on the dump list and to see if the directory
666  * contains any subdirectories.
667  */
668 #ifdef  __linux__
669 static  int
670 searchdir(struct ext2_dir_entry *dp, UNUSED(int offset), 
671           UNUSED(int blocksize), UNUSED(char *buf), void *private)
672 {
673         struct mapdirs_context *mdc;
674         int *ret;
675         long *tapesize;
676         struct dinode *ip;
677
678         mdc = (struct mapdirs_context *)private;
679         ret = mdc->ret;
680         tapesize = mdc->tapesize;
681
682         if (dp->inode == 0)
683                 return 0;
684         if (dp->name[0] == '.') {
685                 if (( dp->name_len & 0xFF ) == 1)
686                         return 0;
687                 if (dp->name[1] == '.' && ( dp->name_len & 0xFF ) == 2)
688                         return 0;
689         }
690         if (mdc->nodump) {
691                 ip = getino(dp->inode);
692                 if (TSTINO(dp->inode, dumpinomap)) {
693                         CLRINO(dp->inode, dumpinomap);
694                         *tapesize -= blockest(ip);
695                 }
696                 /* Add dir back to the dir map and remove from
697                  * usedinomap to propagate nodump */
698                 if ((ip->di_mode & IFMT) == IFDIR) {
699                         SETINO(dp->inode, dumpdirmap);
700                         CLRINO(dp->inode, usedinomap);
701                         *ret |= HASSUBDIRS;
702                 }
703         } else {
704                 if (TSTINO(dp->inode, dumpinomap)) {
705                         *ret |= HASDUMPEDFILE;
706                         if (*ret & HASSUBDIRS)
707                                 return DIRENT_ABORT;
708                 }
709                 if (TSTINO(dp->inode, dumpdirmap)) {
710                         *ret |= HASSUBDIRS;
711                         if (*ret & HASDUMPEDFILE)
712                                 return DIRENT_ABORT;
713                 }
714         }
715         return 0;
716 }
717
718 #else   /* __linux__ */
719
720 static int
721 searchdir(dump_ino_t ino, daddr_t blkno, long size, long filesize)
722 {
723         struct direct *dp;
724         long loc, ret = 0;
725         char dblk[MAXBSIZE];
726
727         bread(fsbtodb(sblock, blkno), dblk, (int)size);
728         if (filesize < size)
729                 size = filesize;
730         for (loc = 0; loc < size; ) {
731                 dp = (struct direct *)(dblk + loc);
732                 if (dp->d_reclen == 0) {
733                         msg("corrupted directory, inumber %d\n", ino);
734                         break;
735                 }
736                 loc += dp->d_reclen;
737                 if (dp->d_ino == 0)
738                         continue;
739                 if (dp->d_name[0] == '.') {
740                         if (dp->d_name[1] == '\0')
741                                 continue;
742                         if (dp->d_name[1] == '.' && dp->d_name[2] == '\0')
743                                 continue;
744                 }
745                 if (TSTINO(dp->d_ino, dumpinomap)) {
746                         ret |= HASDUMPEDFILE;
747                         if (ret & HASSUBDIRS)
748                                 break;
749                 }
750                 if (TSTINO(dp->d_ino, dumpdirmap)) {
751                         ret |= HASSUBDIRS;
752                         if (ret & HASDUMPEDFILE)
753                                 break;
754                 }
755         }
756         return (ret);
757 }
758 #endif  /* __linux__ */
759
760 #ifdef  __linux__
761
762 struct block_context {
763         ext2_ino_t ino;
764         int     *buf;
765         int     cnt;
766         int     max;
767         int     next_block;
768 };
769
770 /*
771  * Dump a block to the tape
772  */
773 static int
774 dumponeblock(UNUSED(ext2_filsys fs), blk_t *blocknr, e2_blkcnt_t blockcnt,
775              UNUSED(blk_t ref_block), UNUSED(int ref_offset), void * private)
776 {
777         struct block_context *p;
778         e2_blkcnt_t i;
779
780         p = (struct block_context *)private;
781         for (i = p->next_block; i < blockcnt; i++) {
782                 p->buf[p->cnt++] = 0;
783                 if (p->cnt == p->max) {
784                         blksout (p->buf, p->cnt, p->ino);
785                         p->cnt = 0;
786                 }
787         }
788         p->buf[p->cnt++] = *blocknr;
789         if (p->cnt == p->max) {
790                 blksout (p->buf, p->cnt, p->ino);
791                 p->cnt = 0;
792         }
793         p->next_block = blockcnt + 1;
794         return 0;
795 }
796 #endif
797
798 static void
799 dump_xattr(dump_ino_t ino, struct dinode *dp) {
800
801         if (dp->di_extraisize != 0) {
802 #ifdef HAVE_EXT2FS_READ_INODE_FULL
803                 char inode[EXT2_INODE_SIZE(fs->super)];
804                 errcode_t err;
805                 u_int32_t *magic;
806
807                 memset(inode, 0, EXT2_INODE_SIZE(fs->super));
808                 err = ext2fs_read_inode_full(fs, (ext2_ino_t)ino,
809                                              (struct ext2_inode *) inode,
810                                              EXT2_INODE_SIZE(fs->super));
811                 if (err) {
812                         com_err(disk, err, "while reading inode #%ld\n", (long)ino);
813                         exit(X_ABORT);
814                 }
815
816                 magic = (void *)inode + EXT2_GOOD_OLD_INODE_SIZE + dp->di_extraisize;
817                 if (*magic == EXT2_XATTR_MAGIC) {
818                         char xattr[EXT2_INODE_SIZE(fs->super)];
819                         int i;
820                         char *cp;
821
822                         if (vflag)
823                                 msg("dumping EA (inode) in inode #%ld\n", (long)ino);
824                         memset(xattr, 0, EXT2_INODE_SIZE(fs->super));
825                         memcpy(xattr, (void *)magic,
826                                EXT2_INODE_SIZE(fs->super) - 
827                                (EXT2_GOOD_OLD_INODE_SIZE + dp->di_extraisize));
828                         magic = (u_int32_t *)xattr;
829                         *magic = EXT2_XATTR_MAGIC2;
830
831                         spcl.c_type = TS_INODE;
832                         spcl.c_dinode.di_size = EXT2_INODE_SIZE(fs->super);
833                         spcl.c_flags |= DR_EXTATTRIBUTES;
834                         spcl.c_extattributes = EXT_XATTR;
835                         spcl.c_count = howmany(EXT2_INODE_SIZE(fs->super), TP_BSIZE);
836                         for (i = 0; i < spcl.c_count; i++)
837                                 spcl.c_addr[i] = 1;
838                         writeheader(ino);
839                         for (i = 0, cp = xattr; i < spcl.c_count; i++, cp += TP_BSIZE)
840                                 writerec(cp, 0);
841                         spcl.c_flags &= ~DR_EXTATTRIBUTES;
842                         spcl.c_extattributes = 0;
843                 }
844 #endif
845         }
846
847         if (dp->di_file_acl) {
848
849                 if (vflag)
850                         msg("dumping EA (block) in inode #%ld\n", (long)ino);
851
852                 spcl.c_type = TS_INODE;
853                 spcl.c_dinode.di_size = sblock->fs_bsize;
854                 spcl.c_flags |= DR_EXTATTRIBUTES;
855                 spcl.c_extattributes = EXT_XATTR;
856                 blksout(&dp->di_file_acl, EXT2_FRAGS_PER_BLOCK(fs->super), ino);
857                 spcl.c_flags &= ~DR_EXTATTRIBUTES;
858                 spcl.c_extattributes = 0;
859         }
860 }
861
862 /*
863  * Dump passes 3 and 4.
864  *
865  * Dump the contents of an inode to tape.
866  */
867 void
868 dumpino(struct dinode *dp, dump_ino_t ino, int metaonly)
869 {
870         unsigned long cnt;
871         fsizeT size, remaining;
872         char buf[TP_BSIZE];
873         struct new_bsd_inode nbi;
874         int i;
875 #ifdef  __linux__
876         struct block_context bc;
877 #else
878         int ind_level;
879 #endif
880         u_quad_t i_size;
881         
882         if (metaonly)
883                 i_size = 0;
884         else 
885                 i_size = dp->di_size + ((u_quad_t) dp->di_size_high << 32);
886
887         if (newtape) {
888                 newtape = 0;
889                 dumpmap(dumpinomap, TS_BITS, ino);
890         }
891         CLRINO(ino, dumpinomap);
892 #ifdef  __linux__
893         memset(&nbi, 0, sizeof(nbi));
894         nbi.di_mode = dp->di_mode;
895         nbi.di_nlink = dp->di_nlink;
896         nbi.di_ouid = dp->di_uid;
897         nbi.di_ogid = dp->di_gid;
898         nbi.di_size = i_size;
899         nbi.di_atime.tv_sec = dp->di_atime;
900         nbi.di_mtime.tv_sec = dp->di_mtime;
901         nbi.di_ctime.tv_sec = dp->di_ctime;
902         memmove(&nbi.di_db, &dp->di_db, (NDADDR + NIADDR) * sizeof(daddr_t));
903         nbi.di_flags = dp->di_flags;
904         nbi.di_blocks = dp->di_blocks;
905         nbi.di_gen = dp->di_gen;
906         nbi.di_uid = (((int32_t)dp->di_uidhigh) << 16) | dp->di_uid;
907         nbi.di_gid = (((int32_t)dp->di_gidhigh) << 16) | dp->di_gid;
908         memmove(&spcl.c_dinode, &nbi, sizeof(nbi));
909 #else   /* __linux__ */
910         spcl.c_dinode = *dp;
911 #endif  /* __linux__ */
912         spcl.c_type = TS_INODE;
913         spcl.c_count = 0;
914
915         if (metaonly && (dp->di_mode & S_IFMT)) {
916                 spcl.c_flags |= DR_METAONLY;
917                 spcl.c_count = 0;
918                 writeheader(ino);
919                 spcl.c_flags &= ~DR_METAONLY;
920                 dump_xattr(ino, dp);
921                 return;
922         }
923
924         switch (dp->di_mode & S_IFMT) {
925
926         case 0:
927                 /*
928                  * Freed inode.
929                  */
930                 return;
931
932 #ifdef  __linux__
933         case S_IFDIR:
934                 msg("Warning: dumpino called on a directory (ino %d)\n", ino);
935                 return;
936 #endif
937
938         case S_IFLNK:
939                 /*
940                  * Check for short symbolic link.
941                  */
942 #ifdef  __linux__
943                 if (i_size > 0 &&
944                     i_size < EXT2_N_BLOCKS * sizeof (daddr_t)) {
945                         spcl.c_addr[0] = 1;
946                         spcl.c_count = 1;
947                         writeheader(ino);
948                         memmove(buf, dp->di_db, (u_long)dp->di_size);
949                         buf[dp->di_size] = '\0';
950                         writerec(buf, 0);
951                         dump_xattr(ino, dp);
952                         return;
953                 }
954 #endif  /* __linux__ */
955 #ifdef FS_44INODEFMT
956                 if (dp->di_size > 0 &&
957                     dp->di_size < sblock->fs_maxsymlinklen) {
958                         spcl.c_addr[0] = 1;
959                         spcl.c_count = 1;
960                         writeheader(ino);
961                         memmove(buf, dp->di_shortlink, (u_long)dp->di_size);
962                         buf[dp->di_size] = '\0';
963                         writerec(buf, 0);
964                         return;
965                 }
966 #endif
967                 /* fall through */
968
969 #ifndef __linux__
970         case S_IFDIR:
971 #endif
972         case S_IFREG:
973                 if (i_size)
974                         break;
975                 /* fall through */
976
977         case S_IFIFO:
978         case S_IFSOCK:
979         case S_IFCHR:
980         case S_IFBLK:
981                 writeheader(ino);
982                 dump_xattr(ino, dp);
983                 return;
984
985         default:
986                 msg("Warning: undefined file type 0%o\n", dp->di_mode & IFMT);
987                 return;
988         }
989 #ifdef  __linux__
990         bc.max = NINDIR(sblock) * EXT2_FRAGS_PER_BLOCK(fs->super);
991         bc.buf = (int *)malloc (bc.max * sizeof (int));
992         bc.cnt = 0;
993         bc.ino = ino;
994         bc.next_block = NDADDR;
995
996         ext2fs_block_iterate2(fs, (ext2_ino_t)ino, BLOCK_FLAG_DATA_ONLY, NULL, dumponeblock, (void *)&bc);
997         /* deal with holes at the end of the inode */
998         if (i_size > ((u_quad_t)bc.next_block) * sblock->fs_fsize) {
999                 remaining = i_size - ((u_quad_t)bc.next_block) * sblock->fs_fsize;
1000                 for (i = 0; i < (int)howmany(remaining, sblock->fs_fsize); i++) {
1001                         bc.buf[bc.cnt++] = 0;
1002                         if (bc.cnt == bc.max) {
1003                                 blksout (bc.buf, bc.cnt, bc.ino);
1004                                 bc.cnt = 0;
1005                         }
1006                 }
1007         }
1008         if (bc.cnt > 0) {
1009                 blksout (bc.buf, bc.cnt, bc.ino);
1010         }
1011         free(bc.buf);
1012         dump_xattr(ino, dp);
1013 #else
1014         if (i_size > (u_quad_t)NDADDR * sblock->fs_bsize)
1015                 cnt = NDADDR * sblock->fs_frag;
1016         else
1017                 cnt = howmany(i_size, sblock->fs_fsize);
1018         blksout(&dp->di_db[0], cnt, ino);
1019         if ((quad_t) (size = i_size - NDADDR * sblock->fs_bsize) <= 0) {
1020                 dump_xattr(ino, dp);
1021                 return;
1022         }
1023         for (ind_level = 0; ind_level < NIADDR; ind_level++) {
1024                 dmpindir(ino, dp->di_ib[ind_level], ind_level, &size);
1025                 if (size <= 0)
1026                         return;
1027         }
1028 #endif
1029 }
1030
1031 #ifdef  __linux__
1032
1033 struct convert_dir_context {
1034         char *buf;
1035         int prev_offset;
1036         int offset;
1037         int bs;
1038 };
1039
1040 /*
1041  * This function converts an ext2fs directory entry to the BSD format.
1042  *
1043  * Basically, it adds a null-character at the end of the name, recomputes the
1044  * size of the entry, and creates it in a temporary buffer
1045  */
1046 static int
1047 convert_dir(struct ext2_dir_entry *dirent, UNUSED(int offset), 
1048             UNUSED(int blocksize), UNUSED(char *buf), void *private)
1049 {
1050         struct convert_dir_context *p;
1051         struct direct *dp;
1052         int reclen;
1053
1054         /* do not save entries to excluded inodes */
1055         if (exclude_ino(dirent->inode))
1056                 return 0;
1057
1058         p = (struct convert_dir_context *)private;
1059
1060         reclen = EXT2_DIR_REC_LEN((dirent->name_len & 0xFF) + 1);
1061         if (((p->offset + reclen - 1) / p->bs) != (p->offset / p->bs)) {
1062                 dp = (struct direct *)(p->buf + p->prev_offset);
1063                 dp->d_reclen += p->bs - (p->offset % p->bs);
1064                 p->offset += p->bs - (p->offset % p->bs);
1065         }
1066
1067         dp = (struct direct *)(p->buf + p->offset);
1068         dp->d_ino = dirent->inode;
1069         dp->d_reclen = reclen;
1070         dp->d_namlen = dirent->name_len & 0xFF;
1071         switch ((dirent->name_len & 0xFF00) >> 8) {
1072         default:
1073                 dp->d_type = DT_UNKNOWN;
1074                 break;
1075         case EXT2_FT_REG_FILE:
1076                 dp->d_type = DT_REG;
1077                 break;
1078         case EXT2_FT_DIR:
1079                 dp->d_type = DT_DIR;
1080                 break;
1081         case EXT2_FT_CHRDEV:
1082                 dp->d_type = DT_CHR;
1083                 break;
1084         case EXT2_FT_BLKDEV:
1085                 dp->d_type = DT_BLK;
1086                 break;
1087         case EXT2_FT_FIFO:
1088                 dp->d_type = DT_FIFO;
1089                 break;
1090         case EXT2_FT_SOCK:
1091                 dp->d_type = DT_SOCK;
1092                 break;
1093         case EXT2_FT_SYMLINK:
1094                 dp->d_type = DT_LNK;
1095                 break;
1096         }
1097         strncpy(dp->d_name, dirent->name, dp->d_namlen);
1098         dp->d_name[dp->d_namlen] = '\0';
1099         p->prev_offset = p->offset;
1100         p->offset += reclen;
1101
1102         return 0;
1103 }
1104
1105 /*
1106  * Dump pass 3
1107  *
1108  * Dumps a directory to tape after converting it to the BSD format
1109  */
1110 void
1111 dumpdirino(struct dinode *dp, dump_ino_t ino)
1112 {
1113         fsizeT size;
1114         char buf[TP_BSIZE];
1115         struct new_bsd_inode nbi;
1116         struct convert_dir_context cdc;
1117         errcode_t retval;
1118         struct ext2_dir_entry *de;
1119         fsizeT dir_size;
1120
1121         if (newtape) {
1122                 newtape = 0;
1123                 dumpmap(dumpinomap, TS_BITS, ino);
1124         }
1125         CLRINO(ino, dumpinomap);
1126
1127         /*
1128          * Convert the directory to the BSD format
1129          */
1130         /* Allocate a buffer for the conversion (twice the size of the
1131            ext2fs directory to avoid problems ;-) */
1132         cdc.buf = (char *)malloc(dp->di_size * 2 * sizeof(char));
1133         if (cdc.buf == NULL)
1134                 err(1, "Cannot allocate buffer to convert directory #%lu\n",
1135                     (unsigned long)ino);
1136         cdc.offset = 0;
1137         cdc.prev_offset = 0;
1138         cdc.bs = MIN(DIRBLKSIZ, TP_BSIZE);
1139         /* Do the conversion */
1140         retval = ext2fs_dir_iterate(fs, (ext2_ino_t)ino, 0, NULL, convert_dir, (void *)&cdc);
1141         if (retval) {
1142                 com_err(disk, retval, "while converting directory #%ld\n", (long)ino);
1143                 exit(X_ABORT);
1144         }
1145         /* Fix the last entry */
1146         if ((cdc.offset % cdc.bs) != 0) {
1147                 de = (struct ext2_dir_entry *)(cdc.buf + cdc.prev_offset);
1148                 de->rec_len += cdc.bs - (cdc.offset % cdc.bs);
1149                 cdc.offset += cdc.bs - (cdc.offset % cdc.bs);
1150         }
1151
1152         dir_size = cdc.offset;
1153
1154 #ifdef  __linux__
1155         memset(&nbi, 0, sizeof(nbi));
1156         nbi.di_mode = dp->di_mode;
1157         nbi.di_nlink = dp->di_nlink;
1158         nbi.di_ouid = dp->di_uid;
1159         nbi.di_ogid = dp->di_gid;
1160         nbi.di_size = dir_size; /* (u_quad_t)dp->di_size; */
1161         nbi.di_atime.tv_sec = dp->di_atime;
1162         nbi.di_mtime.tv_sec = dp->di_mtime;
1163         nbi.di_ctime.tv_sec = dp->di_ctime;
1164         memmove(&nbi.di_db, &dp->di_db, (NDADDR + NIADDR) * sizeof(daddr_t));
1165         nbi.di_flags = dp->di_flags;
1166         nbi.di_blocks = dp->di_blocks;
1167         nbi.di_gen = dp->di_gen;
1168         nbi.di_uid = (((int32_t)dp->di_uidhigh) << 16) | dp->di_uid;
1169         nbi.di_gid = (((int32_t)dp->di_gidhigh) << 16) | dp->di_gid;
1170         memmove(&spcl.c_dinode, &nbi, sizeof(nbi));
1171 #else   /* __linux__ */
1172         spcl.c_dinode = *dp;
1173 #endif  /* __linux__ */
1174         spcl.c_type = TS_INODE;
1175         spcl.c_count = 0;
1176         switch (dp->di_mode & S_IFMT) {
1177
1178         case 0:
1179                 /*
1180                  * Freed inode.
1181                  */
1182                 return;
1183
1184         case S_IFDIR:
1185                 if (dir_size > 0)
1186                         break;
1187                 msg("Warning: size of directory inode #%d is <= 0 (%d)!\n",
1188                         ino, dir_size);
1189                 return;
1190
1191         default:
1192                 msg("Warning: dumpdirino called with file type 0%o (inode #%d)\n",
1193                         dp->di_mode & IFMT, ino);
1194                 return;
1195         }
1196         for (size = 0; size < dir_size; size += TP_BSIZE) {
1197                 spcl.c_addr[0] = 1;
1198                 spcl.c_count = 1;
1199                 writeheader(ino);
1200                 memmove(buf, cdc.buf + size, TP_BSIZE);
1201                 writerec(buf, 0);
1202                 spcl.c_type = TS_ADDR;
1203         }
1204
1205         (void)free(cdc.buf);
1206         dump_xattr(ino, dp);
1207 }
1208 #endif  /* __linux__ */
1209
1210 #ifndef __linux__
1211 /*
1212  * Read indirect blocks, and pass the data blocks to be dumped.
1213  */
1214 static void
1215 dmpindir(dump_ino_t ino, daddr_t blk, int ind_level, fsizeT *size)
1216 {
1217         int i, cnt;
1218 #ifdef __linux__
1219         int max;
1220         blk_t *swapme;
1221 #endif
1222         daddr_t idblk[MAXNINDIR];
1223
1224         if (blk != 0) {
1225                 bread(fsbtodb(sblock, blk), (char *)idblk, (int) sblock->fs_bsize);
1226 #ifdef __linux__
1227         /* 
1228          * My RedHat 4.0 system doesn't have these flags; I haven't
1229          * upgraded e2fsprogs yet
1230          */
1231 #if defined(EXT2_FLAG_SWAP_BYTES)
1232         if ((fs->flags & EXT2_FLAG_SWAP_BYTES) ||
1233             (fs->flags & EXT2_FLAG_SWAP_BYTES_READ))
1234 #endif
1235         {
1236                 max = sblock->fs_bsize >> 2;
1237                 swapme = (blk_t *) idblk;
1238                 for (i = 0; i < max; i++, swapme++)
1239                         *swapme = ext2fs_swab32(*swapme);
1240         }
1241 #endif /* __linux__ */
1242         else
1243                 memset(idblk, 0, (int)sblock->fs_bsize);
1244         if (ind_level <= 0) {
1245                 if (*size < NINDIR(sblock) * sblock->fs_bsize)
1246                         cnt = howmany(*size, sblock->fs_fsize);
1247                 else
1248 #ifdef  __linux__
1249                         cnt = NINDIR(sblock) * EXT2_FRAGS_PER_BLOCK(fs->super);
1250 #else
1251                         cnt = NINDIR(sblock) * sblock->fs_frag;
1252 #endif
1253                 *size -= NINDIR(sblock) * sblock->fs_bsize;
1254                 blksout(&idblk[0], cnt, ino);
1255                 return;
1256         }
1257         ind_level--;
1258         for (i = 0; i < NINDIR(sblock); i++) {
1259                 dmpindir(ino, idblk[i], ind_level, size);
1260                 if (*size <= 0)
1261                         return;
1262         }
1263 }
1264 #endif
1265
1266 /*
1267  * Collect up the data into tape record sized buffers and output them.
1268  */
1269 void
1270 blksout(blk_t *blkp, int frags, dump_ino_t ino)
1271 {
1272         blk_t *bp;
1273         int i, j, count, blks, tbperdb;
1274
1275         blks = howmany(frags * sblock->fs_fsize, TP_BSIZE);
1276         tbperdb = sblock->fs_bsize >> tp_bshift;
1277         for (i = 0; i < blks; i += TP_NINDIR) {
1278                 if (i + TP_NINDIR > blks)
1279                         count = blks;
1280                 else
1281                         count = i + TP_NINDIR;
1282                 for (j = i; j < count; j++)
1283                         if (blkp[j / tbperdb] != 0)
1284                                 spcl.c_addr[j - i] = 1;
1285                         else
1286                                 spcl.c_addr[j - i] = 0;
1287                 spcl.c_count = count - i;
1288                 writeheader(ino);
1289                 bp = &blkp[i / tbperdb];
1290                 for (j = i; j < count; j += tbperdb, bp++) {
1291                         if (*bp != 0) {
1292                                 if (j + tbperdb <= count)
1293                                         dumpblock(*bp, (int)sblock->fs_bsize);
1294                                 else
1295                                         dumpblock(*bp, (count - j) * TP_BSIZE);
1296                         }
1297                 }
1298                 spcl.c_type = TS_ADDR;
1299         }
1300 }
1301
1302 /*
1303  * Dump a map to the tape.
1304  */
1305 void
1306 dumpmap(char *map, int type, dump_ino_t ino)
1307 {
1308         int i;
1309         char *cp;
1310
1311         spcl.c_type = type;
1312         spcl.c_count = howmany(mapsize * sizeof(char), TP_BSIZE);
1313         spcl.c_dinode.di_size = mapsize;
1314         writeheader(ino);
1315         for (i = 0, cp = map; i < spcl.c_count; i++, cp += TP_BSIZE)
1316                 writerec(cp, 0);
1317 }
1318
1319 #if defined(__linux__) && !defined(int32_t)
1320 #define int32_t __s32
1321 #endif
1322
1323 /* 
1324  * Compute and fill in checksum information.
1325  */
1326 void
1327 mkchecksum(union u_spcl *tmpspcl) 
1328 {
1329         int32_t sum, cnt, *lp;
1330
1331         tmpspcl->s_spcl.c_checksum = 0;
1332         lp = (int32_t *)&tmpspcl->s_spcl;
1333         sum = 0;
1334         cnt = sizeof(union u_spcl) / (4 * sizeof(int32_t));
1335         while (--cnt >= 0) {
1336                 sum += *lp++;
1337                 sum += *lp++;
1338                 sum += *lp++;
1339                 sum += *lp++;
1340         }
1341         tmpspcl->s_spcl.c_checksum = CHECKSUM - sum;
1342 }
1343
1344 /*
1345  * Write a header record to the dump tape.
1346  */
1347 void
1348 writeheader(dump_ino_t ino)
1349 {
1350         spcl.c_inumber = ino;
1351         spcl.c_magic = NFS_MAGIC;
1352         mkchecksum((union u_spcl *)&spcl);
1353         writerec((char *)&spcl, 1);
1354 }
1355
1356 #ifdef  __linux__
1357 struct dinode *
1358 getino(dump_ino_t inum)
1359 {
1360         static struct dinode dinode;
1361         errcode_t err;
1362
1363         curino = inum;
1364 #ifdef HAVE_EXT2FS_READ_INODE_FULL
1365         err = ext2fs_read_inode_full(fs, (ext2_ino_t)inum, (struct ext2_inode *) &dinode, sizeof(struct dinode));
1366 #else
1367         err = ext2fs_read_inode(fs, (ext2_ino_t)inum, (struct ext2_inode *) &dinode);
1368 #endif
1369         if (err) {
1370                 com_err(disk, err, "while reading inode #%ld\n", (long)inum);
1371                 exit(X_ABORT);
1372         }
1373         return &dinode;
1374 }
1375 #else   /* __linux__ */
1376 struct dinode *
1377 getino(dump_ino_t inum)
1378 {
1379         static daddr_t minino, maxino;
1380         static struct dinode inoblock[MAXINOPB];
1381
1382         curino = inum;
1383         if (inum >= minino && inum < maxino)
1384                 return (&inoblock[inum - minino]);
1385         bread(fsbtodb(sblock, ino_to_fsba(sblock, inum)), (char *)inoblock,
1386             (int)sblock->fs_bsize);
1387         minino = inum - (inum % INOPB(sblock));
1388         maxino = minino + INOPB(sblock);
1389         return (&inoblock[inum - minino]);
1390 }
1391 #endif  /* __linux__ */
1392
1393 /*
1394  * Read a chunk of data from the disk.
1395  * Try to recover from hard errors by reading in sector sized pieces.
1396  * Error recovery is attempted at most BREADEMAX times before seeking
1397  * consent from the operator to continue.
1398  */
1399 int     breaderrors = 0;
1400
1401 void
1402 bread(ext2_loff_t blkno, char *buf, int size)
1403 {
1404         int cnt, i;
1405
1406 loop:
1407 #ifdef  __linux__
1408         if (ext2fs_llseek(diskfd, (blkno << dev_bshift), 0) !=
1409                         (blkno << dev_bshift))
1410 #else
1411         if (lseek(diskfd, ((off_t)blkno << dev_bshift), 0) !=
1412                                                 ((off_t)blkno << dev_bshift))
1413 #endif
1414                 msg("bread: lseek fails\n");
1415         if ((cnt = read(diskfd, buf, size)) == size)
1416                 return;
1417         if (blkno + (size / dev_bsize) > fsbtodb(sblock, sblock->fs_size)) {
1418                 /*
1419                  * Trying to read the final fragment.
1420                  *
1421                  * NB - dump only works in TP_BSIZE blocks, hence
1422                  * rounds `dev_bsize' fragments up to TP_BSIZE pieces.
1423                  * It should be smarter about not actually trying to
1424                  * read more than it can get, but for the time being
1425                  * we punt and scale back the read only when it gets
1426                  * us into trouble. (mkm 9/25/83)
1427                  */
1428                 size -= dev_bsize;
1429                 goto loop;
1430         }
1431         if (cnt == -1)
1432                 msg("read error from %s: %s: [block %d, ext2blk %d]: count=%d\n",
1433                         disk, strerror(errno), blkno, 
1434                         dbtofsb(sblock, blkno), size);
1435         else
1436                 msg("short read error from %s: [block %d, ext2blk %d]: count=%d, got=%d\n",
1437                         disk, blkno, dbtofsb(sblock, blkno), size, cnt);
1438         if (breademax && ++breaderrors > breademax) {
1439                 msg("More than %d block read errors from %d\n",
1440                         breademax, disk);
1441                 broadcast("DUMP IS AILING!\n");
1442                 msg("This is an unrecoverable error.\n");
1443                 if (!query("Do you want to attempt to continue?")){
1444                         dumpabort(0);
1445                         /*NOTREACHED*/
1446                 } else
1447                         breaderrors = 0;
1448         }
1449         /*
1450          * Zero buffer, then try to read each sector of buffer separately.
1451          */
1452         memset(buf, 0, size);
1453         for (i = 0; i < size; i += dev_bsize, buf += dev_bsize, blkno++) {
1454 #ifdef  __linux__
1455                 if (ext2fs_llseek(diskfd, (blkno << dev_bshift), 0) !=
1456                                 (blkno << dev_bshift))
1457 #else
1458                 if (lseek(diskfd, ((off_t)blkno << dev_bshift), 0) !=
1459                                                 ((off_t)blkno << dev_bshift))
1460 #endif
1461                         msg("bread: lseek2 fails!\n");
1462                 if ((cnt = read(diskfd, buf, (int)dev_bsize)) == dev_bsize)
1463                         continue;
1464                 if (cnt == -1) {
1465                         msg("read error from %s: %s: [sector %d, ext2blk %d]: count=%d\n",
1466                                 disk, strerror(errno), blkno, 
1467                                 dbtofsb(sblock, blkno), dev_bsize);
1468                         continue;
1469                 }
1470                 msg("short read error from %s: [sector %d, ext2blk %d]: count=%d, got=%d\n",
1471                         disk, blkno, dbtofsb(sblock, blkno), dev_bsize, cnt);
1472         }
1473 }