Home | History | Annotate | Line # | Download | only in pax
gen_subs.c revision 1.19
      1  1.19    kleink /*	$NetBSD: gen_subs.c,v 1.19 2000/10/22 15:41:31 kleink Exp $	*/
      2   1.5       cgd 
      3   1.1       jtc /*-
      4   1.1       jtc  * Copyright (c) 1992 Keith Muller.
      5   1.1       jtc  * Copyright (c) 1992, 1993
      6   1.1       jtc  *	The Regents of the University of California.  All rights reserved.
      7   1.1       jtc  *
      8   1.1       jtc  * This code is derived from software contributed to Berkeley by
      9   1.1       jtc  * Keith Muller of the University of California, San Diego.
     10   1.1       jtc  *
     11   1.1       jtc  * Redistribution and use in source and binary forms, with or without
     12   1.1       jtc  * modification, are permitted provided that the following conditions
     13   1.1       jtc  * are met:
     14   1.1       jtc  * 1. Redistributions of source code must retain the above copyright
     15   1.1       jtc  *    notice, this list of conditions and the following disclaimer.
     16   1.1       jtc  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1       jtc  *    notice, this list of conditions and the following disclaimer in the
     18   1.1       jtc  *    documentation and/or other materials provided with the distribution.
     19   1.1       jtc  * 3. All advertising materials mentioning features or use of this software
     20   1.1       jtc  *    must display the following acknowledgement:
     21   1.1       jtc  *	This product includes software developed by the University of
     22   1.1       jtc  *	California, Berkeley and its contributors.
     23   1.1       jtc  * 4. Neither the name of the University nor the names of its contributors
     24   1.1       jtc  *    may be used to endorse or promote products derived from this software
     25   1.1       jtc  *    without specific prior written permission.
     26   1.1       jtc  *
     27   1.1       jtc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     28   1.1       jtc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     29   1.1       jtc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     30   1.1       jtc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     31   1.1       jtc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     32   1.1       jtc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     33   1.1       jtc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     34   1.1       jtc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     35   1.1       jtc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     36   1.1       jtc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     37   1.1       jtc  * SUCH DAMAGE.
     38   1.1       jtc  */
     39   1.1       jtc 
     40   1.7  christos #include <sys/cdefs.h>
     41   1.1       jtc #ifndef lint
     42   1.5       cgd #if 0
     43   1.5       cgd static char sccsid[] = "@(#)gen_subs.c	8.1 (Berkeley) 5/31/93";
     44   1.5       cgd #else
     45  1.19    kleink __RCSID("$NetBSD: gen_subs.c,v 1.19 2000/10/22 15:41:31 kleink Exp $");
     46   1.5       cgd #endif
     47   1.1       jtc #endif /* not lint */
     48   1.1       jtc 
     49   1.1       jtc #include <sys/types.h>
     50   1.1       jtc #include <sys/time.h>
     51   1.1       jtc #include <sys/stat.h>
     52   1.1       jtc #include <sys/param.h>
     53  1.13   mycroft 
     54  1.13   mycroft #include <ctype.h>
     55  1.13   mycroft #include <grp.h>
     56  1.13   mycroft #include <pwd.h>
     57   1.1       jtc #include <stdio.h>
     58  1.13   mycroft #include <stdlib.h>
     59  1.13   mycroft #include <string.h>
     60  1.10    kleink #include <time.h>
     61   1.1       jtc #include <tzfile.h>
     62  1.13   mycroft #include <unistd.h>
     63   1.1       jtc #include <utmp.h>
     64  1.13   mycroft 
     65   1.1       jtc #include "pax.h"
     66   1.1       jtc #include "extern.h"
     67   1.1       jtc 
     68   1.1       jtc /*
     69   1.1       jtc  * a collection of general purpose subroutines used by pax
     70   1.1       jtc  */
     71   1.1       jtc 
     72   1.1       jtc /*
     73   1.1       jtc  * constants used by ls_list() when printing out archive members
     74   1.1       jtc  */
     75   1.1       jtc #define MODELEN 20
     76   1.1       jtc #define DATELEN 64
     77   1.1       jtc #define SIXMONTHS	 ((DAYSPERNYEAR / 2) * SECSPERDAY)
     78   1.1       jtc #define CURFRMT		"%b %e %H:%M"
     79   1.1       jtc #define OLDFRMT		"%b %e  %Y"
     80   1.1       jtc #ifndef UT_NAMESIZE
     81   1.1       jtc #define UT_NAMESIZE	8
     82   1.1       jtc #endif
     83   1.1       jtc #define UT_GRPSIZE	6
     84   1.1       jtc 
     85   1.1       jtc /*
     86   1.1       jtc  * ls_list()
     87   1.1       jtc  *	list the members of an archive in ls format
     88   1.1       jtc  */
     89   1.1       jtc 
     90   1.1       jtc #if __STDC__
     91   1.1       jtc void
     92   1.6       tls ls_list(ARCHD *arcn, time_t now)
     93   1.1       jtc #else
     94   1.1       jtc void
     95   1.1       jtc ls_list(arcn, now)
     96   1.6       tls 	ARCHD *arcn;
     97   1.1       jtc 	time_t now;
     98   1.1       jtc #endif
     99   1.1       jtc {
    100   1.6       tls 	struct stat *sbp;
    101   1.1       jtc 	char f_mode[MODELEN];
    102   1.1       jtc 	char f_date[DATELEN];
    103  1.13   mycroft 	const char *timefrmt, *user, *group;
    104   1.1       jtc 
    105   1.1       jtc 	/*
    106   1.1       jtc 	 * if not verbose, just print the file name
    107   1.1       jtc 	 */
    108   1.1       jtc 	if (!vflag) {
    109   1.1       jtc 		(void)printf("%s\n", arcn->name);
    110   1.1       jtc 		(void)fflush(stdout);
    111   1.1       jtc 		return;
    112   1.1       jtc 	}
    113   1.1       jtc 
    114   1.1       jtc 	/*
    115   1.1       jtc 	 * user wants long mode
    116   1.1       jtc 	 */
    117   1.1       jtc 	sbp = &(arcn->sb);
    118   1.1       jtc 	strmode(sbp->st_mode, f_mode);
    119   1.1       jtc 
    120  1.19    kleink 	/*
    121  1.19    kleink 	 * time format based on age compared to the time pax was started.
    122  1.19    kleink 	 */
    123  1.19    kleink 	if ((sbp->st_mtime + SIXMONTHS) <= now)
    124  1.19    kleink 		timefrmt = OLDFRMT;
    125  1.19    kleink 	else
    126  1.19    kleink 		timefrmt = CURFRMT;
    127   1.1       jtc 
    128   1.1       jtc 	/*
    129   1.1       jtc 	 * print file mode, link count, uid, gid and time
    130   1.1       jtc 	 */
    131   1.1       jtc 	if (strftime(f_date,DATELEN,timefrmt,localtime(&(sbp->st_mtime))) == 0)
    132   1.1       jtc 		f_date[0] = '\0';
    133  1.13   mycroft 	user = user_from_uid(sbp->st_uid, 0);
    134  1.13   mycroft 	group = group_from_gid(sbp->st_gid, 0);
    135  1.14  christos 	(void)printf("%s%2lu %-*s %-*s ", f_mode, (unsigned long)sbp->st_nlink,
    136  1.13   mycroft 	    UT_NAMESIZE, user ? user : "", UT_GRPSIZE, group ? group : "");
    137   1.1       jtc 
    138   1.1       jtc 	/*
    139   1.1       jtc 	 * print device id's for devices, or sizes for other nodes
    140   1.1       jtc 	 */
    141   1.1       jtc 	if ((arcn->type == PAX_CHR) || (arcn->type == PAX_BLK))
    142   1.1       jtc #		ifdef NET2_STAT
    143   1.1       jtc 		(void)printf("%4u,%4u ", MAJOR(sbp->st_rdev),
    144   1.7  christos 		    MINOR(sbp->st_rdev));
    145   1.1       jtc #		else
    146   1.7  christos 		(void)printf("%4lu,%4lu ", (long) MAJOR(sbp->st_rdev),
    147   1.7  christos 		    (long) MINOR(sbp->st_rdev));
    148   1.1       jtc #		endif
    149   1.1       jtc 	else {
    150   1.1       jtc #		ifdef NET2_STAT
    151   1.1       jtc 		(void)printf("%9lu ", sbp->st_size);
    152   1.1       jtc #		else
    153   1.8   thorpej 		(void)printf("%9qu ", (long long)sbp->st_size);
    154   1.1       jtc #		endif
    155   1.1       jtc 	}
    156   1.1       jtc 
    157   1.1       jtc 	/*
    158   1.1       jtc 	 * print name and link info for hard and soft links
    159   1.1       jtc 	 */
    160   1.1       jtc 	(void)printf("%s %s", f_date, arcn->name);
    161   1.1       jtc 	if ((arcn->type == PAX_HLK) || (arcn->type == PAX_HRG))
    162   1.1       jtc 		(void)printf(" == %s\n", arcn->ln_name);
    163   1.1       jtc 	else if (arcn->type == PAX_SLK)
    164   1.1       jtc 		(void)printf(" => %s\n", arcn->ln_name);
    165   1.1       jtc 	else
    166   1.1       jtc 		(void)putchar('\n');
    167   1.1       jtc 	(void)fflush(stdout);
    168   1.1       jtc 	return;
    169   1.1       jtc }
    170   1.1       jtc 
    171   1.1       jtc /*
    172   1.1       jtc  * tty_ls()
    173  1.17     itohy  *	print a short summary of file to tty.
    174   1.1       jtc  */
    175   1.1       jtc 
    176   1.1       jtc #if __STDC__
    177   1.1       jtc void
    178   1.6       tls ls_tty(ARCHD *arcn)
    179   1.1       jtc #else
    180   1.1       jtc void
    181   1.1       jtc ls_tty(arcn)
    182   1.6       tls 	ARCHD *arcn;
    183   1.1       jtc #endif
    184   1.1       jtc {
    185   1.1       jtc 	char f_date[DATELEN];
    186   1.1       jtc 	char f_mode[MODELEN];
    187  1.12   mycroft 	const char *timefrmt;
    188   1.1       jtc 
    189  1.19    kleink 	if ((arcn->sb.st_mtime + SIXMONTHS) <= time((time_t *)NULL))
    190  1.19    kleink 		timefrmt = OLDFRMT;
    191  1.19    kleink 	else
    192  1.19    kleink 		timefrmt = CURFRMT;
    193   1.1       jtc 
    194   1.1       jtc 	/*
    195   1.1       jtc 	 * convert time to string, and print
    196   1.1       jtc 	 */
    197   1.1       jtc 	if (strftime(f_date, DATELEN, timefrmt,
    198   1.1       jtc 	    localtime(&(arcn->sb.st_mtime))) == 0)
    199   1.1       jtc 		f_date[0] = '\0';
    200   1.1       jtc 	strmode(arcn->sb.st_mode, f_mode);
    201   1.1       jtc 	tty_prnt("%s%s %s\n", f_mode, f_date, arcn->name);
    202   1.1       jtc 	return;
    203   1.1       jtc }
    204   1.1       jtc 
    205   1.1       jtc /*
    206   1.1       jtc  * zf_strncpy()
    207   1.1       jtc  *	copy src to dest up to len chars (stopping at first '\0'), when src is
    208  1.17     itohy  *	shorter than len, pads to len with '\0'. big performance win (and
    209   1.1       jtc  *	a lot easier to code) over strncpy(), then a strlen() then a
    210   1.4   mycroft  *	memset(). (or doing the memset() first).
    211   1.1       jtc  */
    212   1.1       jtc 
    213   1.1       jtc #if __STDC__
    214   1.1       jtc void
    215  1.11   mycroft zf_strncpy(char *dest, const char *src, int len)
    216   1.1       jtc #else
    217   1.1       jtc void
    218   1.1       jtc zf_strncpy(dest, src, len)
    219   1.6       tls 	char *dest;
    220   1.6       tls 	char *src;
    221   1.1       jtc 	int len;
    222   1.1       jtc #endif
    223   1.1       jtc {
    224   1.6       tls 	char *stop;
    225   1.1       jtc 
    226   1.1       jtc 	stop = dest + len;
    227   1.1       jtc 	while ((dest < stop) && (*src != '\0'))
    228   1.1       jtc 		*dest++ = *src++;
    229   1.1       jtc 	while (dest < stop)
    230   1.1       jtc 		*dest++ = '\0';
    231   1.1       jtc 	return;
    232   1.1       jtc }
    233   1.1       jtc 
    234   1.1       jtc /*
    235   1.1       jtc  * l_strncpy()
    236   1.1       jtc  *	copy src to dest up to len chars (stopping at first '\0')
    237   1.1       jtc  * Return:
    238   1.1       jtc  *	number of chars copied. (Note this is a real performance win over
    239   1.1       jtc  *	doing a strncpy() then a strlen()
    240   1.1       jtc  */
    241   1.1       jtc 
    242   1.1       jtc #if __STDC__
    243   1.1       jtc int
    244  1.11   mycroft l_strncpy(char *dest, const char *src, int len)
    245   1.1       jtc #else
    246   1.1       jtc int
    247   1.1       jtc l_strncpy(dest, src, len)
    248   1.6       tls 	char *dest;
    249   1.6       tls 	char *src;
    250   1.1       jtc 	int len;
    251   1.1       jtc #endif
    252   1.1       jtc {
    253   1.6       tls 	char *stop;
    254   1.6       tls 	char *start;
    255   1.1       jtc 
    256   1.1       jtc 	stop = dest + len;
    257   1.1       jtc 	start = dest;
    258   1.1       jtc 	while ((dest < stop) && (*src != '\0'))
    259   1.1       jtc 		*dest++ = *src++;
    260   1.1       jtc 	if (dest < stop)
    261   1.1       jtc 		*dest = '\0';
    262   1.1       jtc 	return(dest - start);
    263   1.1       jtc }
    264   1.1       jtc 
    265   1.1       jtc /*
    266   1.1       jtc  * asc_ul()
    267   1.1       jtc  *	convert hex/octal character string into a u_long. We do not have to
    268   1.1       jtc  *	check for overflow! (the headers in all supported formats are not large
    269   1.1       jtc  *	enough to create an overflow).
    270   1.1       jtc  *	NOTE: strings passed to us are NOT TERMINATED.
    271   1.1       jtc  * Return:
    272   1.1       jtc  *	unsigned long value
    273   1.1       jtc  */
    274   1.1       jtc 
    275   1.1       jtc #if __STDC__
    276   1.1       jtc u_long
    277   1.6       tls asc_ul(char *str, int len, int base)
    278   1.1       jtc #else
    279   1.1       jtc u_long
    280   1.1       jtc asc_ul(str, len, base)
    281   1.6       tls 	char *str;
    282   1.1       jtc 	int len;
    283   1.6       tls 	int base;
    284   1.1       jtc #endif
    285   1.1       jtc {
    286   1.6       tls 	char *stop;
    287   1.1       jtc 	u_long tval = 0;
    288   1.1       jtc 
    289   1.1       jtc 	stop = str + len;
    290   1.1       jtc 
    291   1.1       jtc 	/*
    292   1.1       jtc 	 * skip over leading blanks and zeros
    293   1.1       jtc 	 */
    294   1.1       jtc 	while ((str < stop) && ((*str == ' ') || (*str == '0')))
    295   1.1       jtc 		++str;
    296   1.1       jtc 
    297   1.1       jtc 	/*
    298   1.1       jtc 	 * for each valid digit, shift running value (tval) over to next digit
    299   1.1       jtc 	 * and add next digit
    300   1.1       jtc 	 */
    301   1.1       jtc 	if (base == HEX) {
    302   1.1       jtc 		while (str < stop) {
    303   1.1       jtc 			if ((*str >= '0') && (*str <= '9'))
    304   1.1       jtc 				tval = (tval << 4) + (*str++ - '0');
    305   1.1       jtc 			else if ((*str >= 'A') && (*str <= 'F'))
    306   1.1       jtc 				tval = (tval << 4) + 10 + (*str++ - 'A');
    307   1.1       jtc 			else if ((*str >= 'a') && (*str <= 'f'))
    308   1.1       jtc 				tval = (tval << 4) + 10 + (*str++ - 'a');
    309   1.1       jtc 			else
    310   1.1       jtc 				break;
    311   1.1       jtc 		}
    312   1.1       jtc 	} else {
    313  1.17     itohy 		while ((str < stop) && (*str >= '0') && (*str <= '7'))
    314   1.1       jtc 			tval = (tval << 3) + (*str++ - '0');
    315   1.1       jtc 	}
    316   1.1       jtc 	return(tval);
    317   1.1       jtc }
    318   1.1       jtc 
    319   1.1       jtc /*
    320   1.1       jtc  * ul_asc()
    321   1.1       jtc  *	convert an unsigned long into an hex/oct ascii string. pads with LEADING
    322   1.1       jtc  *	ascii 0's to fill string completely
    323   1.1       jtc  *	NOTE: the string created is NOT TERMINATED.
    324   1.1       jtc  */
    325   1.1       jtc 
    326   1.1       jtc #if __STDC__
    327   1.1       jtc int
    328   1.6       tls ul_asc(u_long val, char *str, int len, int base)
    329   1.1       jtc #else
    330   1.1       jtc int
    331   1.1       jtc ul_asc(val, str, len, base)
    332   1.1       jtc 	u_long val;
    333   1.6       tls 	char *str;
    334   1.6       tls 	int len;
    335   1.6       tls 	int base;
    336   1.1       jtc #endif
    337   1.1       jtc {
    338   1.6       tls 	char *pt;
    339   1.1       jtc 	u_long digit;
    340  1.17     itohy 
    341   1.1       jtc 	/*
    342   1.1       jtc 	 * WARNING str is not '\0' terminated by this routine
    343   1.1       jtc 	 */
    344   1.1       jtc 	pt = str + len - 1;
    345   1.1       jtc 
    346   1.1       jtc 	/*
    347   1.1       jtc 	 * do a tailwise conversion (start at right most end of string to place
    348   1.1       jtc 	 * least significant digit). Keep shifting until conversion value goes
    349   1.1       jtc 	 * to zero (all digits were converted)
    350   1.1       jtc 	 */
    351   1.1       jtc 	if (base == HEX) {
    352   1.1       jtc 		while (pt >= str) {
    353   1.1       jtc 			if ((digit = (val & 0xf)) < 10)
    354   1.1       jtc 				*pt-- = '0' + (char)digit;
    355  1.17     itohy 			else
    356   1.1       jtc 				*pt-- = 'a' + (char)(digit - 10);
    357   1.1       jtc 			if ((val = (val >> 4)) == (u_long)0)
    358   1.1       jtc 				break;
    359   1.1       jtc 		}
    360   1.1       jtc 	} else {
    361   1.1       jtc 		while (pt >= str) {
    362   1.1       jtc 			*pt-- = '0' + (char)(val & 0x7);
    363   1.1       jtc 			if ((val = (val >> 3)) == (u_long)0)
    364   1.1       jtc 				break;
    365   1.1       jtc 		}
    366   1.1       jtc 	}
    367   1.1       jtc 
    368   1.1       jtc 	/*
    369   1.1       jtc 	 * pad with leading ascii ZEROS. We return -1 if we ran out of space.
    370   1.1       jtc 	 */
    371   1.1       jtc 	while (pt >= str)
    372   1.1       jtc 		*pt-- = '0';
    373   1.1       jtc 	if (val != (u_long)0)
    374   1.1       jtc 		return(-1);
    375   1.1       jtc 	return(0);
    376   1.1       jtc }
    377   1.1       jtc 
    378   1.1       jtc #ifndef NET2_STAT
    379   1.1       jtc /*
    380   1.1       jtc  * asc_uqd()
    381   1.1       jtc  *	convert hex/octal character string into a u_quad_t. We do not have to
    382   1.1       jtc  *	check for overflow! (the headers in all supported formats are not large
    383   1.1       jtc  *	enough to create an overflow).
    384   1.1       jtc  *	NOTE: strings passed to us are NOT TERMINATED.
    385   1.1       jtc  * Return:
    386   1.1       jtc  *	u_quad_t value
    387   1.1       jtc  */
    388   1.1       jtc 
    389   1.1       jtc #if __STDC__
    390   1.1       jtc u_quad_t
    391   1.6       tls asc_uqd(char *str, int len, int base)
    392   1.1       jtc #else
    393   1.1       jtc u_quad_t
    394   1.1       jtc asc_uqd(str, len, base)
    395   1.6       tls 	char *str;
    396   1.1       jtc 	int len;
    397   1.6       tls 	int base;
    398   1.1       jtc #endif
    399   1.1       jtc {
    400   1.6       tls 	char *stop;
    401   1.1       jtc 	u_quad_t tval = 0;
    402   1.1       jtc 
    403   1.1       jtc 	stop = str + len;
    404   1.1       jtc 
    405   1.1       jtc 	/*
    406   1.1       jtc 	 * skip over leading blanks and zeros
    407   1.1       jtc 	 */
    408   1.1       jtc 	while ((str < stop) && ((*str == ' ') || (*str == '0')))
    409   1.1       jtc 		++str;
    410   1.1       jtc 
    411   1.1       jtc 	/*
    412   1.1       jtc 	 * for each valid digit, shift running value (tval) over to next digit
    413   1.1       jtc 	 * and add next digit
    414   1.1       jtc 	 */
    415   1.1       jtc 	if (base == HEX) {
    416   1.1       jtc 		while (str < stop) {
    417   1.1       jtc 			if ((*str >= '0') && (*str <= '9'))
    418   1.1       jtc 				tval = (tval << 4) + (*str++ - '0');
    419   1.1       jtc 			else if ((*str >= 'A') && (*str <= 'F'))
    420   1.1       jtc 				tval = (tval << 4) + 10 + (*str++ - 'A');
    421   1.1       jtc 			else if ((*str >= 'a') && (*str <= 'f'))
    422   1.1       jtc 				tval = (tval << 4) + 10 + (*str++ - 'a');
    423   1.1       jtc 			else
    424   1.1       jtc 				break;
    425   1.1       jtc 		}
    426   1.1       jtc 	} else {
    427  1.17     itohy 		while ((str < stop) && (*str >= '0') && (*str <= '7'))
    428   1.1       jtc 			tval = (tval << 3) + (*str++ - '0');
    429   1.1       jtc 	}
    430   1.1       jtc 	return(tval);
    431   1.1       jtc }
    432   1.1       jtc 
    433   1.1       jtc /*
    434   1.1       jtc  * uqd_asc()
    435   1.1       jtc  *	convert an u_quad_t into a hex/oct ascii string. pads with LEADING
    436   1.1       jtc  *	ascii 0's to fill string completely
    437   1.1       jtc  *	NOTE: the string created is NOT TERMINATED.
    438   1.1       jtc  */
    439   1.1       jtc 
    440   1.1       jtc #if __STDC__
    441   1.1       jtc int
    442   1.6       tls uqd_asc(u_quad_t val, char *str, int len, int base)
    443   1.1       jtc #else
    444   1.1       jtc int
    445   1.1       jtc uqd_asc(val, str, len, base)
    446   1.1       jtc 	u_quad_t val;
    447   1.6       tls 	char *str;
    448   1.6       tls 	int len;
    449   1.6       tls 	int base;
    450   1.1       jtc #endif
    451   1.1       jtc {
    452   1.6       tls 	char *pt;
    453   1.1       jtc 	u_quad_t digit;
    454  1.17     itohy 
    455   1.1       jtc 	/*
    456   1.1       jtc 	 * WARNING str is not '\0' terminated by this routine
    457   1.1       jtc 	 */
    458   1.1       jtc 	pt = str + len - 1;
    459   1.1       jtc 
    460   1.1       jtc 	/*
    461   1.1       jtc 	 * do a tailwise conversion (start at right most end of string to place
    462   1.1       jtc 	 * least significant digit). Keep shifting until conversion value goes
    463   1.1       jtc 	 * to zero (all digits were converted)
    464   1.1       jtc 	 */
    465   1.1       jtc 	if (base == HEX) {
    466   1.1       jtc 		while (pt >= str) {
    467   1.1       jtc 			if ((digit = (val & 0xf)) < 10)
    468   1.1       jtc 				*pt-- = '0' + (char)digit;
    469  1.17     itohy 			else
    470   1.1       jtc 				*pt-- = 'a' + (char)(digit - 10);
    471   1.1       jtc 			if ((val = (val >> 4)) == (u_quad_t)0)
    472   1.1       jtc 				break;
    473   1.1       jtc 		}
    474   1.1       jtc 	} else {
    475   1.1       jtc 		while (pt >= str) {
    476   1.1       jtc 			*pt-- = '0' + (char)(val & 0x7);
    477   1.1       jtc 			if ((val = (val >> 3)) == (u_quad_t)0)
    478   1.1       jtc 				break;
    479   1.1       jtc 		}
    480   1.1       jtc 	}
    481   1.1       jtc 
    482   1.1       jtc 	/*
    483   1.1       jtc 	 * pad with leading ascii ZEROS. We return -1 if we ran out of space.
    484   1.1       jtc 	 */
    485   1.1       jtc 	while (pt >= str)
    486   1.1       jtc 		*pt-- = '0';
    487   1.1       jtc 	if (val != (u_quad_t)0)
    488   1.1       jtc 		return(-1);
    489   1.1       jtc 	return(0);
    490   1.1       jtc }
    491   1.1       jtc #endif
    492  1.15      tron 
    493  1.15      tron int
    494  1.18       mrg check_Aflag(void)
    495  1.18       mrg {
    496  1.18       mrg 
    497  1.15      tron 	if (Aflag > 0)
    498  1.15      tron 		return 1;
    499  1.15      tron 	if (Aflag == 0) {
    500  1.15      tron 		Aflag = -1;
    501  1.15      tron 		tty_warn(0, "Removing leading / from absolute path names in the archive");
    502  1.15      tron 	}
    503  1.15      tron 	return 0;
    504  1.15      tron }
    505