NetBSD/bin/pax/gen_subs.c

409 lines
9.8 KiB
C
Raw Normal View History

2002-10-13 04:34:16 +04:00
/* $NetBSD: gen_subs.c,v 1.26 2002/10/13 00:34:16 mrg Exp $ */
1995-03-21 12:01:59 +03:00
1994-06-13 20:13:35 +04:00
/*-
* Copyright (c) 1992 Keith Muller.
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
#if defined(__RCSID) && !defined(lint)
1995-03-21 12:01:59 +03:00
#if 0
static char sccsid[] = "@(#)gen_subs.c 8.1 (Berkeley) 5/31/93";
#else
2002-10-13 04:34:16 +04:00
__RCSID("$NetBSD: gen_subs.c,v 1.26 2002/10/13 00:34:16 mrg Exp $");
1995-03-21 12:01:59 +03:00
#endif
1994-06-13 20:13:35 +04:00
#endif /* not lint */
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/param.h>
1994-06-13 20:13:35 +04:00
#include <ctype.h>
#include <grp.h>
#include <pwd.h>
#include <vis.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
1994-06-13 20:13:35 +04:00
#include <tzfile.h>
#include <unistd.h>
1994-06-13 20:13:35 +04:00
#include "pax.h"
#include "extern.h"
/*
* a collection of general purpose subroutines used by pax
*/
/*
* constants used by ls_list() when printing out archive members
*/
#define MODELEN 20
#define DATELEN 64
#define SIXMONTHS ((DAYSPERNYEAR / 2) * SECSPERDAY)
#define CURFRMT "%b %e %H:%M"
#define OLDFRMT "%b %e %Y"
#ifndef UT_NAMESIZE
#define UT_NAMESIZE 8
#endif
#define UT_GRPSIZE 6
/*
* ls_list()
* list the members of an archive in ls format
*/
void
ls_list(ARCHD *arcn, time_t now, FILE *fp)
1994-06-13 20:13:35 +04:00
{
1997-01-11 05:04:27 +03:00
struct stat *sbp;
1994-06-13 20:13:35 +04:00
char f_mode[MODELEN];
char f_date[DATELEN];
const char *timefrmt, *user, *group;
1994-06-13 20:13:35 +04:00
/*
* if not verbose, just print the file name
*/
if (!vflag) {
(void)fprintf(fp, "%s\n", arcn->name);
(void)fflush(fp);
1994-06-13 20:13:35 +04:00
return;
}
/*
* user wants long mode
*/
sbp = &(arcn->sb);
strmode(sbp->st_mode, f_mode);
/*
* time format based on age compared to the time pax was started.
*/
if ((sbp->st_mtime + SIXMONTHS) <= now)
timefrmt = OLDFRMT;
else
timefrmt = CURFRMT;
1994-06-13 20:13:35 +04:00
/*
* print file mode, link count, uid, gid and time
*/
if (strftime(f_date,DATELEN,timefrmt,localtime(&(sbp->st_mtime))) == 0)
f_date[0] = '\0';
user = user_from_uid(sbp->st_uid, 0);
group = group_from_gid(sbp->st_gid, 0);
(void)fprintf(fp, "%s%2lu %-*s %-*s ", f_mode,
(unsigned long)sbp->st_nlink,
UT_NAMESIZE, user ? user : "", UT_GRPSIZE, group ? group : "");
1994-06-13 20:13:35 +04:00
/*
* print device id's for devices, or sizes for other nodes
*/
if ((arcn->type == PAX_CHR) || (arcn->type == PAX_BLK))
(void)fprintf(fp, "%4lu,%4lu ", (long) MAJOR(sbp->st_rdev),
(long) MINOR(sbp->st_rdev));
1994-06-13 20:13:35 +04:00
else {
(void)fprintf(fp, OFFT_FP("9") " ", (OFFT_T)sbp->st_size);
1994-06-13 20:13:35 +04:00
}
/*
* print name and link info for hard and soft links
*/
(void)fprintf(fp, "%s %s", f_date, arcn->name);
1994-06-13 20:13:35 +04:00
if ((arcn->type == PAX_HLK) || (arcn->type == PAX_HRG))
(void)fprintf(fp, " == %s\n", arcn->ln_name);
1994-06-13 20:13:35 +04:00
else if (arcn->type == PAX_SLK)
(void)fprintf(fp, " => %s\n", arcn->ln_name);
1994-06-13 20:13:35 +04:00
else
(void)fputc('\n', fp);
(void)fflush(fp);
1994-06-13 20:13:35 +04:00
}
/*
* tty_ls()
* print a short summary of file to tty.
1994-06-13 20:13:35 +04:00
*/
void
1997-01-11 05:04:27 +03:00
ls_tty(ARCHD *arcn)
1994-06-13 20:13:35 +04:00
{
char f_date[DATELEN];
char f_mode[MODELEN];
1998-07-27 20:43:25 +04:00
const char *timefrmt;
1994-06-13 20:13:35 +04:00
if ((arcn->sb.st_mtime + SIXMONTHS) <= time((time_t *)NULL))
timefrmt = OLDFRMT;
else
timefrmt = CURFRMT;
1994-06-13 20:13:35 +04:00
/*
* convert time to string, and print
*/
if (strftime(f_date, DATELEN, timefrmt,
localtime(&(arcn->sb.st_mtime))) == 0)
f_date[0] = '\0';
strmode(arcn->sb.st_mode, f_mode);
tty_prnt("%s%s %s\n", f_mode, f_date, arcn->name);
return;
}
void
safe_print(const char *str, FILE *fp)
1994-06-13 20:13:35 +04:00
{
char visbuf[5];
const char *cp;
1994-06-13 20:13:35 +04:00
/*
* if printing to a tty, use vis(3) to print special characters.
*/
if (isatty(fileno(fp))) {
for (cp = str; *cp; cp++) {
(void)vis(visbuf, cp[0], VIS_CSTYLE, cp[1]);
(void)fputs(visbuf, fp);
}
} else {
(void)fputs(str, fp);
}
1994-06-13 20:13:35 +04:00
}
/*
* asc_ul()
* convert hex/octal character string into a u_long. We do not have to
* check for overflow! (the headers in all supported formats are not large
* enough to create an overflow).
* NOTE: strings passed to us are NOT TERMINATED.
* Return:
* unsigned long value
*/
u_long
1997-01-11 05:04:27 +03:00
asc_ul(char *str, int len, int base)
1994-06-13 20:13:35 +04:00
{
1997-01-11 05:04:27 +03:00
char *stop;
1994-06-13 20:13:35 +04:00
u_long tval = 0;
stop = str + len;
/*
* skip over leading blanks and zeros
*/
while ((str < stop) && ((*str == ' ') || (*str == '0')))
++str;
/*
* for each valid digit, shift running value (tval) over to next digit
* and add next digit
*/
if (base == HEX) {
while (str < stop) {
if ((*str >= '0') && (*str <= '9'))
tval = (tval << 4) + (*str++ - '0');
else if ((*str >= 'A') && (*str <= 'F'))
tval = (tval << 4) + 10 + (*str++ - 'A');
else if ((*str >= 'a') && (*str <= 'f'))
tval = (tval << 4) + 10 + (*str++ - 'a');
else
break;
}
} else {
while ((str < stop) && (*str >= '0') && (*str <= '7'))
1994-06-13 20:13:35 +04:00
tval = (tval << 3) + (*str++ - '0');
}
return(tval);
}
/*
* ul_asc()
* convert an unsigned long into an hex/oct ascii string. pads with LEADING
* ascii 0's to fill string completely
* NOTE: the string created is NOT TERMINATED.
*/
int
1997-01-11 05:04:27 +03:00
ul_asc(u_long val, char *str, int len, int base)
1994-06-13 20:13:35 +04:00
{
1997-01-11 05:04:27 +03:00
char *pt;
1994-06-13 20:13:35 +04:00
u_long digit;
1994-06-13 20:13:35 +04:00
/*
* WARNING str is not '\0' terminated by this routine
*/
pt = str + len - 1;
/*
* do a tailwise conversion (start at right most end of string to place
* least significant digit). Keep shifting until conversion value goes
* to zero (all digits were converted)
*/
if (base == HEX) {
while (pt >= str) {
if ((digit = (val & 0xf)) < 10)
*pt-- = '0' + (char)digit;
else
1994-06-13 20:13:35 +04:00
*pt-- = 'a' + (char)(digit - 10);
if ((val = (val >> 4)) == (u_long)0)
break;
}
} else {
while (pt >= str) {
*pt-- = '0' + (char)(val & 0x7);
if ((val = (val >> 3)) == (u_long)0)
break;
}
}
/*
* pad with leading ascii ZEROS. We return -1 if we ran out of space.
*/
while (pt >= str)
*pt-- = '0';
if (val != (u_long)0)
return(-1);
return(0);
}
2002-10-13 04:34:16 +04:00
#if !defined(NET2_STAT) && !defined(_LP64)
1994-06-13 20:13:35 +04:00
/*
* asc_ull()
* convert hex/octal character string into a unsigned long long. We do
* not have to to check for overflow! (the headers in all supported
* formats are not large enough to create an overflow).
1994-06-13 20:13:35 +04:00
* NOTE: strings passed to us are NOT TERMINATED.
* Return:
* unsigned long long value
1994-06-13 20:13:35 +04:00
*/
unsigned long long
asc_ull(char *str, int len, int base)
1994-06-13 20:13:35 +04:00
{
1997-01-11 05:04:27 +03:00
char *stop;
unsigned long long tval = 0;
1994-06-13 20:13:35 +04:00
stop = str + len;
/*
* skip over leading blanks and zeros
*/
while ((str < stop) && ((*str == ' ') || (*str == '0')))
++str;
/*
* for each valid digit, shift running value (tval) over to next digit
* and add next digit
*/
if (base == HEX) {
while (str < stop) {
if ((*str >= '0') && (*str <= '9'))
tval = (tval << 4) + (*str++ - '0');
else if ((*str >= 'A') && (*str <= 'F'))
tval = (tval << 4) + 10 + (*str++ - 'A');
else if ((*str >= 'a') && (*str <= 'f'))
tval = (tval << 4) + 10 + (*str++ - 'a');
else
break;
}
} else {
while ((str < stop) && (*str >= '0') && (*str <= '7'))
1994-06-13 20:13:35 +04:00
tval = (tval << 3) + (*str++ - '0');
}
return(tval);
}
/*
* ull_asc()
* convert an unsigned long long into a hex/oct ascii string. pads with
* LEADING ascii 0's to fill string completely
1994-06-13 20:13:35 +04:00
* NOTE: the string created is NOT TERMINATED.
*/
int
ull_asc(unsigned long long val, char *str, int len, int base)
1994-06-13 20:13:35 +04:00
{
1997-01-11 05:04:27 +03:00
char *pt;
unsigned long long digit;
1994-06-13 20:13:35 +04:00
/*
* WARNING str is not '\0' terminated by this routine
*/
pt = str + len - 1;
/*
* do a tailwise conversion (start at right most end of string to place
* least significant digit). Keep shifting until conversion value goes
* to zero (all digits were converted)
*/
if (base == HEX) {
while (pt >= str) {
if ((digit = (val & 0xf)) < 10)
*pt-- = '0' + (char)digit;
else
1994-06-13 20:13:35 +04:00
*pt-- = 'a' + (char)(digit - 10);
if ((val = (val >> 4)) == (unsigned long long)0)
1994-06-13 20:13:35 +04:00
break;
}
} else {
while (pt >= str) {
*pt-- = '0' + (char)(val & 0x7);
if ((val = (val >> 3)) == (unsigned long long)0)
1994-06-13 20:13:35 +04:00
break;
}
}
/*
* pad with leading ascii ZEROS. We return -1 if we ran out of space.
*/
while (pt >= str)
*pt-- = '0';
if (val != (unsigned long long)0)
1994-06-13 20:13:35 +04:00
return(-1);
return(0);
}
#endif
int
2000-06-17 22:19:10 +04:00
check_Aflag(void)
{
if (Aflag > 0)
return 1;
if (Aflag == 0) {
Aflag = -1;
tty_warn(0,
"Removing leading / from absolute path names in the archive");
}
return 0;
}