file_cmds-184.tar.gz
[apple/file_cmds.git] / pax / tables.c
1 /* $OpenBSD: tables.c,v 1.22 2004/11/29 16:23:22 otto Exp $ */
2 /* $NetBSD: tables.c,v 1.4 1995/03/21 09:07:45 cgd Exp $ */
3
4 /*-
5 * Copyright (c) 1992 Keith Muller.
6 * Copyright (c) 1992, 1993
7 * The Regents of the University of California. All rights reserved.
8 *
9 * This code is derived from software contributed to Berkeley by
10 * Keith Muller of the University of California, San Diego.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37 #ifndef lint
38 #if 0
39 static const char sccsid[] = "@(#)tables.c 8.1 (Berkeley) 5/31/93";
40 #else
41 static const char rcsid[] __attribute__((__unused__)) = "$OpenBSD: tables.c,v 1.22 2004/11/29 16:23:22 otto Exp $";
42 #endif
43 #endif /* not lint */
44
45 #include <sys/types.h>
46 #include <sys/time.h>
47 #include <sys/stat.h>
48 #include <sys/param.h>
49 #include <sys/fcntl.h>
50 #include <stdio.h>
51 #include <string.h>
52 #include <unistd.h>
53 #include <errno.h>
54 #include <stdlib.h>
55 #include "pax.h"
56 #include "tables.h"
57 #include "extern.h"
58
59 /*
60 * Routines for controlling the contents of all the different databases pax
61 * keeps. Tables are dynamically created only when they are needed. The
62 * goal was speed and the ability to work with HUGE archives. The databases
63 * were kept simple, but do have complex rules for when the contents change.
64 * As of this writing, the posix library functions were more complex than
65 * needed for this application (pax databases have very short lifetimes and
66 * do not survive after pax is finished). Pax is required to handle very
67 * large archives. These database routines carefully combine memory usage and
68 * temporary file storage in ways which will not significantly impact runtime
69 * performance while allowing the largest possible archives to be handled.
70 * Trying to force the fit to the posix database routines was not considered
71 * time well spent.
72 */
73
74 static HRDLNK **ltab = NULL; /* hard link table for detecting hard links */
75 static FTM **ftab = NULL; /* file time table for updating arch */
76 static NAMT **ntab = NULL; /* interactive rename storage table */
77 static DEVT **dtab = NULL; /* device/inode mapping tables */
78 static ATDIR **atab = NULL; /* file tree directory time reset table */
79 static DIRDATA *dirp = NULL; /* storage for setting created dir time/mode */
80 static size_t dirsize; /* size of dirp table */
81 static long dircnt = 0; /* entries in dir time/mode storage */
82 static int ffd = -1; /* tmp file for file time table name storage */
83
84 static DEVT *chk_dev(dev_t, int);
85
86 /*
87 * hard link table routines
88 *
89 * The hard link table tries to detect hard links to files using the device and
90 * inode values. We do this when writing an archive, so we can tell the format
91 * write routine that this file is a hard link to another file. The format
92 * write routine then can store this file in whatever way it wants (as a hard
93 * link if the format supports that like tar, or ignore this info like cpio).
94 * (Actually a field in the format driver table tells us if the format wants
95 * hard link info. if not, we do not waste time looking for them). We also use
96 * the same table when reading an archive. In that situation, this table is
97 * used by the format read routine to detect hard links from stored dev and
98 * inode numbers (like cpio). This will allow pax to create a link when one
99 * can be detected by the archive format.
100 */
101
102 /*
103 * lnk_start
104 * Creates the hard link table.
105 * Return:
106 * 0 if created, -1 if failure
107 */
108
109 int
110 lnk_start(void)
111 {
112 if (ltab != NULL)
113 return(0);
114 if ((ltab = (HRDLNK **)calloc(L_TAB_SZ, sizeof(HRDLNK *))) == NULL) {
115 paxwarn(1, "Cannot allocate memory for hard link table");
116 return(-1);
117 }
118 return(0);
119 }
120
121 /*
122 * chk_lnk()
123 * Looks up entry in hard link hash table. If found, it copies the name
124 * of the file it is linked to (we already saw that file) into ln_name.
125 * lnkcnt is decremented and if goes to 1 the node is deleted from the
126 * database. (We have seen all the links to this file). If not found,
127 * we add the file to the database if it has the potential for having
128 * hard links to other files we may process (it has a link count > 1)
129 * Return:
130 * if found returns 1; if not found returns 0; -1 on error
131 */
132
133 int
134 chk_lnk(ARCHD *arcn)
135 {
136 HRDLNK *pt;
137 HRDLNK **ppt;
138 u_int indx;
139
140 if (ltab == NULL)
141 return(-1);
142 /*
143 * ignore those nodes that cannot have hard links
144 */
145 if ((arcn->type == PAX_DIR) || (arcn->sb.st_nlink <= 1))
146 return(0);
147
148 /*
149 * Conformance tests: ignore symlink because cannot create hard link to it
150 */
151 if ((arcn->type == PAX_SLK))
152 return(0);
153
154 /*
155 * hash inode number and look for this file
156 */
157 indx = ((unsigned)arcn->sb.st_ino) % L_TAB_SZ;
158 if ((pt = ltab[indx]) != NULL) {
159 /*
160 * it's hash chain in not empty, walk down looking for it
161 */
162 ppt = &(ltab[indx]);
163 while (pt != NULL) {
164 if ((pt->ino == arcn->sb.st_ino) &&
165 (pt->dev == arcn->sb.st_dev))
166 break;
167 ppt = &(pt->fow);
168 pt = pt->fow;
169 }
170
171 if (pt != NULL) {
172 /*
173 * found a link. set the node type and copy in the
174 * name of the file it is to link to. we need to
175 * handle hardlinks to regular files differently than
176 * other links.
177 */
178 arcn->ln_nlen = strlcpy(arcn->ln_name, pt->name,
179 sizeof(arcn->ln_name));
180 if (arcn->type == PAX_REG)
181 arcn->type = PAX_HRG;
182 else
183 arcn->type = PAX_HLK;
184
185 /*
186 * if we have found all the links to this file, remove
187 * it from the database
188 */
189 if (--pt->nlink <= 1) {
190 *ppt = pt->fow;
191 (void)free((char *)pt->name);
192 (void)free((char *)pt);
193 }
194 return(1);
195 }
196 }
197
198 /*
199 * we never saw this file before. It has links so we add it to the
200 * front of this hash chain
201 */
202 if ((pt = (HRDLNK *)malloc(sizeof(HRDLNK))) != NULL) {
203 if ((pt->name = strdup(arcn->name)) != NULL) {
204 pt->dev = arcn->sb.st_dev;
205 pt->ino = arcn->sb.st_ino;
206 pt->nlink = arcn->sb.st_nlink;
207 pt->fow = ltab[indx];
208 ltab[indx] = pt;
209 return(0);
210 }
211 (void)free((char *)pt);
212 }
213
214 paxwarn(1, "Hard link table out of memory");
215 return(-1);
216 }
217
218 /*
219 * purg_lnk
220 * remove reference for a file that we may have added to the data base as
221 * a potential source for hard links. We ended up not using the file, so
222 * we do not want to accidently point another file at it later on.
223 */
224
225 void
226 purg_lnk(ARCHD *arcn)
227 {
228 HRDLNK *pt;
229 HRDLNK **ppt;
230 u_int indx;
231
232 if (ltab == NULL)
233 return;
234 /*
235 * do not bother to look if it could not be in the database
236 */
237 if ((arcn->sb.st_nlink <= 1) || (arcn->type == PAX_DIR) ||
238 (arcn->type == PAX_HLK) || (arcn->type == PAX_HRG))
239 return;
240
241 /*
242 * find the hash chain for this inode value, if empty return
243 */
244 indx = ((unsigned)arcn->sb.st_ino) % L_TAB_SZ;
245 if ((pt = ltab[indx]) == NULL)
246 return;
247
248 /*
249 * walk down the list looking for the inode/dev pair, unlink and
250 * free if found
251 */
252 ppt = &(ltab[indx]);
253 while (pt != NULL) {
254 if ((pt->ino == arcn->sb.st_ino) &&
255 (pt->dev == arcn->sb.st_dev))
256 break;
257 ppt = &(pt->fow);
258 pt = pt->fow;
259 }
260 if (pt == NULL)
261 return;
262
263 /*
264 * remove and free it
265 */
266 *ppt = pt->fow;
267 (void)free((char *)pt->name);
268 (void)free((char *)pt);
269 }
270
271 /*
272 * lnk_end()
273 * pull apart a existing link table so we can reuse it. We do this between
274 * read and write phases of append with update. (The format may have
275 * used the link table, and we need to start with a fresh table for the
276 * write phase
277 */
278
279 void
280 lnk_end(void)
281 {
282 int i;
283 HRDLNK *pt;
284 HRDLNK *ppt;
285
286 if (ltab == NULL)
287 return;
288
289 for (i = 0; i < L_TAB_SZ; ++i) {
290 if (ltab[i] == NULL)
291 continue;
292 pt = ltab[i];
293 ltab[i] = NULL;
294
295 /*
296 * free up each entry on this chain
297 */
298 while (pt != NULL) {
299 ppt = pt;
300 pt = ppt->fow;
301 (void)free((char *)ppt->name);
302 (void)free((char *)ppt);
303 }
304 }
305 return;
306 }
307
308 /*
309 * modification time table routines
310 *
311 * The modification time table keeps track of last modification times for all
312 * files stored in an archive during a write phase when -u is set. We only
313 * add a file to the archive if it is newer than a file with the same name
314 * already stored on the archive (if there is no other file with the same
315 * name on the archive it is added). This applies to writes and appends.
316 * An append with an -u must read the archive and store the modification time
317 * for every file on that archive before starting the write phase. It is clear
318 * that this is one HUGE database. To save memory space, the actual file names
319 * are stored in a scratch file and indexed by an in-memory hash table. The
320 * hash table is indexed by hashing the file path. The nodes in the table store
321 * the length of the filename and the lseek offset within the scratch file
322 * where the actual name is stored. Since there are never any deletions from
323 * this table, fragmentation of the scratch file is never a issue. Lookups
324 * seem to not exhibit any locality at all (files in the database are rarely
325 * looked up more than once...), so caching is just a waste of memory. The
326 * only limitation is the amount of scratch file space available to store the
327 * path names.
328 */
329
330 /*
331 * ftime_start()
332 * create the file time hash table and open for read/write the scratch
333 * file. (after created it is unlinked, so when we exit we leave
334 * no witnesses).
335 * Return:
336 * 0 if the table and file was created ok, -1 otherwise
337 */
338
339 int
340 ftime_start(void)
341 {
342
343 if (ftab != NULL)
344 return(0);
345 if ((ftab = (FTM **)calloc(F_TAB_SZ, sizeof(FTM *))) == NULL) {
346 paxwarn(1, "Cannot allocate memory for file time table");
347 return(-1);
348 }
349
350 /*
351 * get random name and create temporary scratch file, unlink name
352 * so it will get removed on exit
353 */
354 memcpy(tempbase, _TFILE_BASE, sizeof(_TFILE_BASE));
355 if ((ffd = mkstemp(tempfile)) < 0) {
356 syswarn(1, errno, "Unable to create temporary file: %s",
357 tempfile);
358 return(-1);
359 }
360 (void)unlink(tempfile);
361
362 return(0);
363 }
364
365 /*
366 * chk_ftime()
367 * looks up entry in file time hash table. If not found, the file is
368 * added to the hash table and the file named stored in the scratch file.
369 * If a file with the same name is found, the file times are compared and
370 * the most recent file time is retained. If the new file was younger (or
371 * was not in the database) the new file is selected for storage.
372 * Return:
373 * 0 if file should be added to the archive, 1 if it should be skipped,
374 * -1 on error
375 */
376
377 int
378 chk_ftime(ARCHD *arcn)
379 {
380 FTM *pt;
381 int namelen;
382 u_int indx;
383 char ckname[PAXPATHLEN+1];
384
385 /*
386 * no info, go ahead and add to archive
387 */
388 if (ftab == NULL)
389 return(0);
390
391 /*
392 * hash the pathname and look up in table
393 */
394 namelen = arcn->nlen;
395 indx = st_hash(arcn->name, namelen, F_TAB_SZ);
396 if ((pt = ftab[indx]) != NULL) {
397 /*
398 * the hash chain is not empty, walk down looking for match
399 * only read up the path names if the lengths match, speeds
400 * up the search a lot
401 */
402 while (pt != NULL) {
403 if (pt->namelen == namelen) {
404 /*
405 * potential match, have to read the name
406 * from the scratch file.
407 */
408 if (lseek(ffd,pt->seek,SEEK_SET) != pt->seek) {
409 syswarn(1, errno,
410 "Failed ftime table seek");
411 return(-1);
412 }
413 if (read(ffd, ckname, namelen) != namelen) {
414 syswarn(1, errno,
415 "Failed ftime table read");
416 return(-1);
417 }
418
419 /*
420 * if the names match, we are done
421 */
422 if (!strncmp(ckname, arcn->name, namelen))
423 break;
424 }
425
426 /*
427 * try the next entry on the chain
428 */
429 pt = pt->fow;
430 }
431
432 if (pt != NULL) {
433 /*
434 * found the file, compare the times, save the newer
435 */
436 if (arcn->sb.st_mtime > pt->mtime) {
437 /*
438 * file is newer
439 */
440 pt->mtime = arcn->sb.st_mtime;
441 return(0);
442 }
443 /*
444 * file is older
445 */
446 return(1);
447 }
448 }
449
450 /*
451 * not in table, add it
452 */
453 if ((pt = (FTM *)malloc(sizeof(FTM))) != NULL) {
454 /*
455 * add the name at the end of the scratch file, saving the
456 * offset. add the file to the head of the hash chain
457 */
458 if ((pt->seek = lseek(ffd, (off_t)0, SEEK_END)) >= 0) {
459 if (write(ffd, arcn->name, namelen) == namelen) {
460 pt->mtime = arcn->sb.st_mtime;
461 pt->namelen = namelen;
462 pt->fow = ftab[indx];
463 ftab[indx] = pt;
464 return(0);
465 }
466 syswarn(1, errno, "Failed write to file time table");
467 } else
468 syswarn(1, errno, "Failed seek on file time table");
469 } else
470 paxwarn(1, "File time table ran out of memory");
471
472 if (pt != NULL)
473 (void)free((char *)pt);
474 return(-1);
475 }
476
477 /*
478 * Interactive rename table routines
479 *
480 * The interactive rename table keeps track of the new names that the user
481 * assigns to files from tty input. Since this map is unique for each file
482 * we must store it in case there is a reference to the file later in archive
483 * (a link). Otherwise we will be unable to find the file we know was
484 * extracted. The remapping of these files is stored in a memory based hash
485 * table (it is assumed since input must come from /dev/tty, it is unlikely to
486 * be a very large table).
487 */
488
489 /*
490 * name_start()
491 * create the interactive rename table
492 * Return:
493 * 0 if successful, -1 otherwise
494 */
495
496 int
497 name_start(void)
498 {
499 if (ntab != NULL)
500 return(0);
501 if ((ntab = (NAMT **)calloc(N_TAB_SZ, sizeof(NAMT *))) == NULL) {
502 paxwarn(1, "Cannot allocate memory for interactive rename table");
503 return(-1);
504 }
505 return(0);
506 }
507
508 /*
509 * add_name()
510 * add the new name to old name mapping just created by the user.
511 * If an old name mapping is found (there may be duplicate names on an
512 * archive) only the most recent is kept.
513 * Return:
514 * 0 if added, -1 otherwise
515 */
516
517 int
518 add_name(char *oname, int onamelen, char *nname)
519 {
520 NAMT *pt;
521 u_int indx;
522
523 if (ntab == NULL) {
524 /*
525 * should never happen
526 */
527 paxwarn(0, "No interactive rename table, links may fail");
528 return(0);
529 }
530
531 /*
532 * look to see if we have already mapped this file, if so we
533 * will update it
534 */
535 indx = st_hash(oname, onamelen, N_TAB_SZ);
536 if ((pt = ntab[indx]) != NULL) {
537 /*
538 * look down the has chain for the file
539 */
540 while ((pt != NULL) && (strcmp(oname, pt->oname) != 0))
541 pt = pt->fow;
542
543 if (pt != NULL) {
544 /*
545 * found an old mapping, replace it with the new one
546 * the user just input (if it is different)
547 */
548 if (strcmp(nname, pt->nname) == 0)
549 return(0);
550
551 (void)free((char *)pt->nname);
552 if ((pt->nname = strdup(nname)) == NULL) {
553 paxwarn(1, "Cannot update rename table");
554 return(-1);
555 }
556 return(0);
557 }
558 }
559
560 /*
561 * this is a new mapping, add it to the table
562 */
563 if ((pt = (NAMT *)malloc(sizeof(NAMT))) != NULL) {
564 if ((pt->oname = strdup(oname)) != NULL) {
565 if ((pt->nname = strdup(nname)) != NULL) {
566 pt->fow = ntab[indx];
567 ntab[indx] = pt;
568 return(0);
569 }
570 (void)free((char *)pt->oname);
571 }
572 (void)free((char *)pt);
573 }
574 paxwarn(1, "Interactive rename table out of memory");
575 return(-1);
576 }
577
578 /*
579 * sub_name()
580 * look up a link name to see if it points at a file that has been
581 * remapped by the user. If found, the link is adjusted to contain the
582 * new name (oname is the link to name)
583 */
584
585 void
586 sub_name(char *oname, int *onamelen, size_t onamesize)
587 {
588 NAMT *pt;
589 u_int indx;
590
591 if (ntab == NULL)
592 return;
593 /*
594 * look the name up in the hash table
595 */
596 indx = st_hash(oname, *onamelen, N_TAB_SZ);
597 if ((pt = ntab[indx]) == NULL)
598 return;
599
600 while (pt != NULL) {
601 /*
602 * walk down the hash chain looking for a match
603 */
604 if (strcmp(oname, pt->oname) == 0) {
605 /*
606 * found it, replace it with the new name
607 * and return (we know that oname has enough space)
608 */
609 *onamelen = strlcpy(oname, pt->nname, onamesize);
610 return;
611 }
612 pt = pt->fow;
613 }
614
615 /*
616 * no match, just return
617 */
618 return;
619 }
620
621 /*
622 * device/inode mapping table routines
623 * (used with formats that store device and inodes fields)
624 *
625 * device/inode mapping tables remap the device field in a archive header. The
626 * device/inode fields are used to determine when files are hard links to each
627 * other. However these values have very little meaning outside of that. This
628 * database is used to solve one of two different problems.
629 *
630 * 1) when files are appended to an archive, while the new files may have hard
631 * links to each other, you cannot determine if they have hard links to any
632 * file already stored on the archive from a prior run of pax. We must assume
633 * that these inode/device pairs are unique only within a SINGLE run of pax
634 * (which adds a set of files to an archive). So we have to make sure the
635 * inode/dev pairs we add each time are always unique. We do this by observing
636 * while the inode field is very dense, the use of the dev field is fairly
637 * sparse. Within each run of pax, we remap any device number of a new archive
638 * member that has a device number used in a prior run and already stored in a
639 * file on the archive. During the read phase of the append, we store the
640 * device numbers used and mark them to not be used by any file during the
641 * write phase. If during write we go to use one of those old device numbers,
642 * we remap it to a new value.
643 *
644 * 2) Often the fields in the archive header used to store these values are
645 * too small to store the entire value. The result is an inode or device value
646 * which can be truncated. This really can foul up an archive. With truncation
647 * we end up creating links between files that are really not links (after
648 * truncation the inodes are the same value). We address that by detecting
649 * truncation and forcing a remap of the device field to split truncated
650 * inodes away from each other. Each truncation creates a pattern of bits that
651 * are removed. We use this pattern of truncated bits to partition the inodes
652 * on a single device to many different devices (each one represented by the
653 * truncated bit pattern). All inodes on the same device that have the same
654 * truncation pattern are mapped to the same new device. Two inodes that
655 * truncate to the same value clearly will always have different truncation
656 * bit patterns, so they will be split from away each other. When we spot
657 * device truncation we remap the device number to a non truncated value.
658 * (for more info see table.h for the data structures involved).
659 */
660
661 /*
662 * dev_start()
663 * create the device mapping table
664 * Return:
665 * 0 if successful, -1 otherwise
666 */
667
668 int
669 dev_start(void)
670 {
671 if (dtab != NULL)
672 return(0);
673 if ((dtab = (DEVT **)calloc(D_TAB_SZ, sizeof(DEVT *))) == NULL) {
674 paxwarn(1, "Cannot allocate memory for device mapping table");
675 return(-1);
676 }
677 return(0);
678 }
679
680 /*
681 * add_dev()
682 * add a device number to the table. this will force the device to be
683 * remapped to a new value if it be used during a write phase. This
684 * function is called during the read phase of an append to prohibit the
685 * use of any device number already in the archive.
686 * Return:
687 * 0 if added ok, -1 otherwise
688 */
689
690 int
691 add_dev(ARCHD *arcn)
692 {
693 if (chk_dev(arcn->sb.st_dev, 1) == NULL)
694 return(-1);
695 return(0);
696 }
697
698 /*
699 * chk_dev()
700 * check for a device value in the device table. If not found and the add
701 * flag is set, it is added. This does NOT assign any mapping values, just
702 * adds the device number as one that need to be remapped. If this device
703 * is already mapped, just return with a pointer to that entry.
704 * Return:
705 * pointer to the entry for this device in the device map table. Null
706 * if the add flag is not set and the device is not in the table (it is
707 * not been seen yet). If add is set and the device cannot be added, null
708 * is returned (indicates an error).
709 */
710
711 static DEVT *
712 chk_dev(dev_t dev, int add)
713 {
714 DEVT *pt;
715 u_int indx;
716
717 if (dtab == NULL)
718 return(NULL);
719 /*
720 * look to see if this device is already in the table
721 */
722 indx = ((unsigned)dev) % D_TAB_SZ;
723 if ((pt = dtab[indx]) != NULL) {
724 while ((pt != NULL) && (pt->dev != dev))
725 pt = pt->fow;
726
727 /*
728 * found it, return a pointer to it
729 */
730 if (pt != NULL)
731 return(pt);
732 }
733
734 /*
735 * not in table, we add it only if told to as this may just be a check
736 * to see if a device number is being used.
737 */
738 if (add == 0)
739 return(NULL);
740
741 /*
742 * allocate a node for this device and add it to the front of the hash
743 * chain. Note we do not assign remaps values here, so the pt->list
744 * list must be NULL.
745 */
746 if ((pt = (DEVT *)malloc(sizeof(DEVT))) == NULL) {
747 paxwarn(1, "Device map table out of memory");
748 return(NULL);
749 }
750 pt->dev = dev;
751 pt->list = NULL;
752 pt->fow = dtab[indx];
753 dtab[indx] = pt;
754 return(pt);
755 }
756 /*
757 * map_dev()
758 * given an inode and device storage mask (the mask has a 1 for each bit
759 * the archive format is able to store in a header), we check for inode
760 * and device truncation and remap the device as required. Device mapping
761 * can also occur when during the read phase of append a device number was
762 * seen (and was marked as do not use during the write phase). WE ASSUME
763 * that unsigned longs are the same size or bigger than the fields used
764 * for ino_t and dev_t. If not the types will have to be changed.
765 * Return:
766 * 0 if all ok, -1 otherwise.
767 */
768
769 int
770 map_dev(ARCHD *arcn, u_long dev_mask, u_long ino_mask)
771 {
772 DEVT *pt;
773 DLIST *dpt;
774 static dev_t lastdev = 0; /* next device number to try */
775 int trc_ino = 0;
776 int trc_dev = 0;
777 ino_t trunc_bits = 0;
778 ino_t nino;
779
780 if (dtab == NULL)
781 return(0);
782 /*
783 * check for device and inode truncation, and extract the truncated
784 * bit pattern.
785 */
786 if ((arcn->sb.st_dev & (dev_t)dev_mask) != arcn->sb.st_dev)
787 ++trc_dev;
788 if ((nino = arcn->sb.st_ino & (ino_t)ino_mask) != arcn->sb.st_ino) {
789 ++trc_ino;
790 trunc_bits = arcn->sb.st_ino & (ino_t)(~ino_mask);
791 }
792
793 /*
794 * see if this device is already being mapped, look up the device
795 * then find the truncation bit pattern which applies
796 */
797 if ((pt = chk_dev(arcn->sb.st_dev, 0)) != NULL) {
798 /*
799 * this device is already marked to be remapped
800 */
801 for (dpt = pt->list; dpt != NULL; dpt = dpt->fow)
802 if (dpt->trunc_bits == trunc_bits)
803 break;
804
805 if (dpt != NULL) {
806 /*
807 * we are being remapped for this device and pattern
808 * change the device number to be stored and return
809 */
810 arcn->sb.st_dev = dpt->dev;
811 arcn->sb.st_ino = nino;
812 return(0);
813 }
814 } else {
815 /*
816 * this device is not being remapped YET. if we do not have any
817 * form of truncation, we do not need a remap
818 */
819 if (!trc_ino && !trc_dev)
820 return(0);
821
822 /*
823 * we have truncation, have to add this as a device to remap
824 */
825 if ((pt = chk_dev(arcn->sb.st_dev, 1)) == NULL)
826 goto bad;
827
828 /*
829 * if we just have a truncated inode, we have to make sure that
830 * all future inodes that do not truncate (they have the
831 * truncation pattern of all 0's) continue to map to the same
832 * device number. We probably have already written inodes with
833 * this device number to the archive with the truncation
834 * pattern of all 0's. So we add the mapping for all 0's to the
835 * same device number.
836 */
837 if (!trc_dev && (trunc_bits != 0)) {
838 if ((dpt = (DLIST *)malloc(sizeof(DLIST))) == NULL)
839 goto bad;
840 dpt->trunc_bits = 0;
841 dpt->dev = arcn->sb.st_dev;
842 dpt->fow = pt->list;
843 pt->list = dpt;
844 }
845 }
846
847 /*
848 * look for a device number not being used. We must watch for wrap
849 * around on lastdev (so we do not get stuck looking forever!)
850 */
851 while (++lastdev > 0) {
852 if (chk_dev(lastdev, 0) != NULL)
853 continue;
854 /*
855 * found an unused value. If we have reached truncation point
856 * for this format we are hosed, so we give up. Otherwise we
857 * mark it as being used.
858 */
859 if (((lastdev & ((dev_t)dev_mask)) != lastdev) ||
860 (chk_dev(lastdev, 1) == NULL))
861 goto bad;
862 break;
863 }
864
865 if ((lastdev <= 0) || ((dpt = (DLIST *)malloc(sizeof(DLIST))) == NULL))
866 goto bad;
867
868 /*
869 * got a new device number, store it under this truncation pattern.
870 * change the device number this file is being stored with.
871 */
872 dpt->trunc_bits = trunc_bits;
873 dpt->dev = lastdev;
874 dpt->fow = pt->list;
875 pt->list = dpt;
876 arcn->sb.st_dev = lastdev;
877 arcn->sb.st_ino = nino;
878 return(0);
879
880 bad:
881 paxwarn(1, "Unable to fix truncated inode/device field when storing %s",
882 arcn->name);
883 paxwarn(0, "Archive may create improper hard links when extracted");
884 return(0);
885 }
886
887 /*
888 * directory access/mod time reset table routines (for directories READ by pax)
889 *
890 * The pax -t flag requires that access times of archive files be the same
891 * before being read by pax. For regular files, access time is restored after
892 * the file has been copied. This database provides the same functionality for
893 * directories read during file tree traversal. Restoring directory access time
894 * is more complex than files since directories may be read several times until
895 * all the descendants in their subtree are visited by fts. Directory access
896 * and modification times are stored during the fts pre-order visit (done
897 * before any descendants in the subtree are visited) and restored after the
898 * fts post-order visit (after all the descendants have been visited). In the
899 * case of premature exit from a subtree (like from the effects of -n), any
900 * directory entries left in this database are reset during final cleanup
901 * operations of pax. Entries are hashed by inode number for fast lookup.
902 */
903
904 /*
905 * atdir_start()
906 * create the directory access time database for directories READ by pax.
907 * Return:
908 * 0 is created ok, -1 otherwise.
909 */
910
911 int
912 atdir_start(void)
913 {
914 if (atab != NULL)
915 return(0);
916 if ((atab = (ATDIR **)calloc(A_TAB_SZ, sizeof(ATDIR *))) == NULL) {
917 paxwarn(1,"Cannot allocate space for directory access time table");
918 return(-1);
919 }
920 return(0);
921 }
922
923
924 /*
925 * atdir_end()
926 * walk through the directory access time table and reset the access time
927 * of any directory who still has an entry left in the database. These
928 * entries are for directories READ by pax
929 */
930
931 void
932 atdir_end(void)
933 {
934 ATDIR *pt;
935 int i;
936
937 if (atab == NULL)
938 return;
939 /*
940 * for each non-empty hash table entry reset all the directories
941 * chained there.
942 */
943 for (i = 0; i < A_TAB_SZ; ++i) {
944 if ((pt = atab[i]) == NULL)
945 continue;
946 /*
947 * remember to force the times, set_ftime() looks at pmtime
948 * and patime, which only applies to things CREATED by pax,
949 * not read by pax. Read time reset is controlled by -t.
950 */
951 for (; pt != NULL; pt = pt->fow)
952 set_ftime(pt->name, pt->mtime, pt->atime, 1);
953 }
954 }
955
956 /*
957 * add_atdir()
958 * add a directory to the directory access time table. Table is hashed
959 * and chained by inode number. This is for directories READ by pax
960 */
961
962 void
963 add_atdir(char *fname, dev_t dev, ino_t ino, time_t mtime, time_t atime)
964 {
965 ATDIR *pt;
966 u_int indx;
967
968 if (atab == NULL)
969 return;
970
971 /*
972 * make sure this directory is not already in the table, if so just
973 * return (the older entry always has the correct time). The only
974 * way this will happen is when the same subtree can be traversed by
975 * different args to pax and the -n option is aborting fts out of a
976 * subtree before all the post-order visits have been made.
977 */
978 indx = ((unsigned)ino) % A_TAB_SZ;
979 if ((pt = atab[indx]) != NULL) {
980 while (pt != NULL) {
981 if ((pt->ino == ino) && (pt->dev == dev))
982 break;
983 pt = pt->fow;
984 }
985
986 /*
987 * oops, already there. Leave it alone.
988 */
989 if (pt != NULL)
990 return;
991 }
992
993 /*
994 * add it to the front of the hash chain
995 */
996 if ((pt = (ATDIR *)malloc(sizeof(ATDIR))) != NULL) {
997 if ((pt->name = strdup(fname)) != NULL) {
998 pt->dev = dev;
999 pt->ino = ino;
1000 pt->mtime = mtime;
1001 pt->atime = atime;
1002 pt->fow = atab[indx];
1003 atab[indx] = pt;
1004 return;
1005 }
1006 (void)free((char *)pt);
1007 }
1008
1009 paxwarn(1, "Directory access time reset table ran out of memory");
1010 return;
1011 }
1012
1013 /*
1014 * get_atdir()
1015 * look up a directory by inode and device number to obtain the access
1016 * and modification time you want to set to. If found, the modification
1017 * and access time parameters are set and the entry is removed from the
1018 * table (as it is no longer needed). These are for directories READ by
1019 * pax
1020 * Return:
1021 * 0 if found, -1 if not found.
1022 */
1023
1024 int
1025 get_atdir(dev_t dev, ino_t ino, time_t *mtime, time_t *atime)
1026 {
1027 ATDIR *pt;
1028 ATDIR **ppt;
1029 u_int indx;
1030
1031 if (atab == NULL)
1032 return(-1);
1033 /*
1034 * hash by inode and search the chain for an inode and device match
1035 */
1036 indx = ((unsigned)ino) % A_TAB_SZ;
1037 if ((pt = atab[indx]) == NULL)
1038 return(-1);
1039
1040 ppt = &(atab[indx]);
1041 while (pt != NULL) {
1042 if ((pt->ino == ino) && (pt->dev == dev))
1043 break;
1044 /*
1045 * no match, go to next one
1046 */
1047 ppt = &(pt->fow);
1048 pt = pt->fow;
1049 }
1050
1051 /*
1052 * return if we did not find it.
1053 */
1054 if (pt == NULL)
1055 return(-1);
1056
1057 /*
1058 * found it. return the times and remove the entry from the table.
1059 */
1060 *ppt = pt->fow;
1061 *mtime = pt->mtime;
1062 *atime = pt->atime;
1063 (void)free((char *)pt->name);
1064 (void)free((char *)pt);
1065 return(0);
1066 }
1067
1068 /*
1069 * directory access mode and time storage routines (for directories CREATED
1070 * by pax).
1071 *
1072 * Pax requires that extracted directories, by default, have their access/mod
1073 * times and permissions set to the values specified in the archive. During the
1074 * actions of extracting (and creating the destination subtree during -rw copy)
1075 * directories extracted may be modified after being created. Even worse is
1076 * that these directories may have been created with file permissions which
1077 * prohibits any descendants of these directories from being extracted. When
1078 * directories are created by pax, access rights may be added to permit the
1079 * creation of files in their subtree. Every time pax creates a directory, the
1080 * times and file permissions specified by the archive are stored. After all
1081 * files have been extracted (or copied), these directories have their times
1082 * and file modes reset to the stored values. The directory info is restored in
1083 * reverse order as entries were added to the data file from root to leaf. To
1084 * restore atime properly, we must go backwards. The data file consists of
1085 * records with two parts, the file name followed by a DIRDATA trailer. The
1086 * fixed sized trailer contains the size of the name plus the off_t location in
1087 * the file. To restore we work backwards through the file reading the trailer
1088 * then the file name.
1089 */
1090
1091 /*
1092 * dir_start()
1093 * set up the directory time and file mode storage for directories CREATED
1094 * by pax.
1095 * Return:
1096 * 0 if ok, -1 otherwise
1097 */
1098
1099 int
1100 dir_start(void)
1101 {
1102 if (dirp != NULL)
1103 return(0);
1104
1105 dirsize = DIRP_SIZE;
1106 if ((dirp = malloc(dirsize * sizeof(DIRDATA))) == NULL) {
1107 paxwarn(1, "Unable to allocate memory for directory times");
1108 return(-1);
1109 }
1110 return(0);
1111 }
1112
1113 /*
1114 * add_dir()
1115 * add the mode and times for a newly CREATED directory
1116 * name is name of the directory, psb the stat buffer with the data in it,
1117 * frc_mode is a flag that says whether to force the setting of the mode
1118 * (ignoring the user set values for preserving file mode). Frc_mode is
1119 * for the case where we created a file and found that the resulting
1120 * directory was not writeable and the user asked for file modes to NOT
1121 * be preserved. (we have to preserve what was created by default, so we
1122 * have to force the setting at the end. this is stated explicitly in the
1123 * pax spec)
1124 */
1125
1126 void
1127 add_dir(char *name, struct stat *psb, int frc_mode)
1128 {
1129 DIRDATA *dblk;
1130
1131 if (dirp == NULL)
1132 return;
1133
1134 if (dircnt == dirsize) {
1135 dblk = realloc(dirp, 2 * dirsize * sizeof(DIRDATA));
1136 if (dblk == NULL) {
1137 paxwarn(1, "Unable to store mode and times for created"
1138 " directory: %s", name);
1139 return;
1140 }
1141 dirp = dblk;
1142 dirsize *= 2;
1143 }
1144 dblk = &dirp[dircnt];
1145 if ((dblk->name = strdup(name)) == NULL) {
1146 paxwarn(1, "Unable to store mode and times for created"
1147 " directory: %s", name);
1148 return;
1149 }
1150 dblk->mode = psb->st_mode & 0xffff;
1151 dblk->mtime = psb->st_mtime;
1152 dblk->atime = psb->st_atime;
1153 dblk->frc_mode = frc_mode;
1154 ++dircnt;
1155 }
1156
1157 /*
1158 * proc_dir()
1159 * process all file modes and times stored for directories CREATED
1160 * by pax
1161 */
1162
1163 void
1164 proc_dir(void)
1165 {
1166 DIRDATA *dblk;
1167 long cnt;
1168
1169 if (dirp == NULL)
1170 return;
1171 /*
1172 * read backwards through the file and process each directory
1173 */
1174 cnt = dircnt;
1175 while (--cnt >= 0) {
1176 /*
1177 * frc_mode set, make sure we set the file modes even if
1178 * the user didn't ask for it (see file_subs.c for more info)
1179 */
1180 dblk = &dirp[cnt];
1181 if (pmode || dblk->frc_mode)
1182 set_pmode(dblk->name, dblk->mode);
1183 if (patime || pmtime)
1184 set_ftime(dblk->name, dblk->mtime, dblk->atime, 0);
1185 free(dblk->name);
1186 }
1187
1188 free(dirp);
1189 dirp = NULL;
1190 dircnt = 0;
1191 }
1192
1193 /*
1194 * database independent routines
1195 */
1196
1197 /*
1198 * st_hash()
1199 * hashes filenames to a u_int for hashing into a table. Looks at the tail
1200 * end of file, as this provides far better distribution than any other
1201 * part of the name. For performance reasons we only care about the last
1202 * MAXKEYLEN chars (should be at LEAST large enough to pick off the file
1203 * name). Was tested on 500,000 name file tree traversal from the root
1204 * and gave almost a perfectly uniform distribution of keys when used with
1205 * prime sized tables (MAXKEYLEN was 128 in test). Hashes (sizeof int)
1206 * chars at a time and pads with 0 for last addition.
1207 * Return:
1208 * the hash value of the string MOD (%) the table size.
1209 */
1210
1211 u_int
1212 st_hash(char *name, int len, int tabsz)
1213 {
1214 char *pt;
1215 char *dest;
1216 char *end;
1217 int i;
1218 u_int key = 0;
1219 int steps;
1220 int res;
1221 u_int val;
1222
1223 /*
1224 * only look at the tail up to MAXKEYLEN, we do not need to waste
1225 * time here (remember these are pathnames, the tail is what will
1226 * spread out the keys)
1227 */
1228 if (len > MAXKEYLEN) {
1229 pt = &(name[len - MAXKEYLEN]);
1230 len = MAXKEYLEN;
1231 } else
1232 pt = name;
1233
1234 /*
1235 * calculate the number of u_int size steps in the string and if
1236 * there is a runt to deal with
1237 */
1238 steps = len/sizeof(u_int);
1239 res = len % sizeof(u_int);
1240
1241 /*
1242 * add up the value of the string in unsigned integer sized pieces
1243 * too bad we cannot have unsigned int aligned strings, then we
1244 * could avoid the expensive copy.
1245 */
1246 for (i = 0; i < steps; ++i) {
1247 end = pt + sizeof(u_int);
1248 dest = (char *)&val;
1249 while (pt < end)
1250 *dest++ = *pt++;
1251 key += val;
1252 }
1253
1254 /*
1255 * add in the runt padded with zero to the right
1256 */
1257 if (res) {
1258 val = 0;
1259 end = pt + res;
1260 dest = (char *)&val;
1261 while (pt < end)
1262 *dest++ = *pt++;
1263 key += val;
1264 }
1265
1266 /*
1267 * return the result mod the table size
1268 */
1269 return(key % tabsz);
1270 }