source: freewrt/tools/paxmirabilis/src/tables.c@ bceb42b

freewrt_1_0 freewrt_2_0
Last change on this file since bceb42b was bceb42b, checked in by Thorsten Glaser <tg@…>, 19 years ago

wbx@ asked me a few seconds too late to use an src/ subdirectory

git-svn-id: svn://www.freewrt.org/trunk/freewrt@204 afb5a338-a214-0410-bd46-81f09a774fd1

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