#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <argp.h>
#include <assert.h>
#include <fcntl.h>
#include <gelf.h>
#include <limits.h>
#include <locale.h>
#include <search.h>
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio_ext.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <system.h>
#include <printversion.h>
#include "arlib.h"
ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
static int do_oper_extract (int oper, const char *arfname, char **argv,
int argc, long int instance);
static int do_oper_delete (const char *arfname, char **argv, int argc,
long int instance);
static int do_oper_insert (int oper, const char *arfname, char **argv,
int argc, const char *member);
ARGP_PROGRAM_BUG_ADDRESS_DEF = PACKAGE_BUGREPORT;
static const struct argp_option options[] =
{
{ NULL, 0, NULL, 0, N_("Commands:"), 1 },
{ NULL, 'd', NULL, 0, N_("Delete files from archive."), 0 },
{ NULL, 'm', NULL, 0, N_("Move files in archive."), 0 },
{ NULL, 'p', NULL, 0, N_("Print files in archive."), 0 },
{ NULL, 'q', NULL, 0, N_("Quick append files to archive."), 0 },
{ NULL, 'r', NULL, 0,
N_("Replace existing or insert new file into archive."), 0 },
{ NULL, 't', NULL, 0, N_("Display content of archive."), 0 },
{ NULL, 'x', NULL, 0, N_("Extract files from archive."), 0 },
{ NULL, 0, NULL, 0, N_("Command Modifiers:"), 2 },
{ NULL, 'o', NULL, 0, N_("Preserve original dates."), 0 },
{ NULL, 'N', NULL, 0, N_("Use instance [COUNT] of name."), 0 },
{ NULL, 'C', NULL, 0,
N_("Do not replace existing files with extracted files."), 0 },
{ NULL, 'T', NULL, 0, N_("Allow filename to be truncated if necessary."),
0 },
{ NULL, 'v', NULL, 0, N_("Provide verbose output."), 0 },
{ NULL, 's', NULL, 0, N_("Force regeneration of symbol table."), 0 },
{ NULL, 'a', NULL, 0, N_("Insert file after [MEMBER]."), 0 },
{ NULL, 'b', NULL, 0, N_("Insert file before [MEMBER]."), 0 },
{ NULL, 'i', NULL, 0, N_("Same as -b."), 0 },
{ NULL, 'c', NULL, 0, N_("Suppress message when library has to be created."),
0 },
{ NULL, 'P', NULL, 0, N_("Use full path for file matching."), 0 },
{ NULL, 'u', NULL, 0, N_("Update only older files in archive."), 0 },
{ NULL, 0, NULL, 0, NULL, 0 }
};
static const char doc[] = N_("Create, modify, and extract from archives.");
static const char args_doc[] = N_("[MEMBER] [COUNT] ARCHIVE [FILE...]");
static error_t parse_opt (int key, char *arg, struct argp_state *state);
static struct argp argp =
{
options, parse_opt, args_doc, doc, arlib_argp_children, NULL, NULL
};
static enum
{
oper_none,
oper_delete,
oper_move,
oper_print,
oper_qappend,
oper_replace,
oper_list,
oper_extract
} operation;
static bool verbose;
static bool preserve_dates;
static bool instance_specifed;
static bool dont_replace_existing;
static bool allow_truncate_fname;
static bool force_symtab;
static bool suppress_create_msg;
static bool full_path;
static bool update_newer;
static enum { ipos_none, ipos_before, ipos_after } ipos;
int
main (int argc, char *argv[])
{
(void) __fsetlocking (stdin, FSETLOCKING_BYCALLER);
(void) __fsetlocking (stdout, FSETLOCKING_BYCALLER);
(void) __fsetlocking (stderr, FSETLOCKING_BYCALLER);
(void) setlocale (LC_ALL, "");
(void) bindtextdomain (PACKAGE_TARNAME, LOCALEDIR);
(void) textdomain (PACKAGE_TARNAME);
if (argc > 1 && argv[1][0] != '-')
{
size_t len = strlen (argv[1]) + 1;
char *newp = alloca (len + 1);
newp[0] = '-';
memcpy (&newp[1], argv[1], len);
argv[1] = newp;
}
int remaining;
(void) argp_parse (&argp, argc, argv, ARGP_IN_ORDER, &remaining, NULL);
(void) elf_version (EV_CURRENT);
const char *member = NULL;
if (ipos != ipos_none)
{
if (operation != oper_move && operation != oper_replace)
error (1, 0, _("\
'a', 'b', and 'i' are only allowed with the 'm' and 'r' options"));
if (remaining == argc)
{
error (0, 0, _("\
MEMBER parameter required for 'a', 'b', and 'i' modifiers"));
argp_help (&argp, stderr, ARGP_HELP_USAGE | ARGP_HELP_SEE,
program_invocation_short_name);
exit (EXIT_FAILURE);
}
member = argv[remaining++];
}
long int instance = -1;
if (instance_specifed)
{
if (operation != oper_extract && operation != oper_delete)
error (1, 0, _("\
'N' is only meaningful with the 'x' and 'd' options"));
if (remaining == argc)
{
error (0, 0, _("COUNT parameter required"));
argp_help (&argp, stderr, ARGP_HELP_SEE,
program_invocation_short_name);
exit (EXIT_FAILURE);
}
char *endp;
errno = 0;
if (((instance = strtol (argv[remaining], &endp, 10)) == LONG_MAX
&& errno == ERANGE)
|| instance <= 0
|| *endp != '\0')
error (1, 0, _("invalid COUNT parameter %s"), argv[remaining]);
++remaining;
}
if ((dont_replace_existing || allow_truncate_fname)
&& unlikely (operation != oper_extract))
error (1, 0, _("'%c' is only meaningful with the 'x' option"),
dont_replace_existing ? 'C' : 'T');
if (remaining == argc)
{
error (0, 0, _("archive name required"));
argp_help (&argp, stderr, ARGP_HELP_SEE, program_invocation_short_name);
exit (EXIT_FAILURE);
}
const char *arfname = argv[remaining++];
argv += remaining;
argc -= remaining;
int status;
switch (operation)
{
case oper_none:
error (0, 0, _("command option required"));
argp_help (&argp, stderr, ARGP_HELP_STD_ERR,
program_invocation_short_name);
status = 1;
break;
case oper_list:
case oper_print:
status = do_oper_extract (operation, arfname, argv, argc, -1);
break;
case oper_extract:
status = do_oper_extract (operation, arfname, argv, argc, instance);
break;
case oper_delete:
status = do_oper_delete (arfname, argv, argc, instance);
break;
case oper_move:
case oper_qappend:
case oper_replace:
status = do_oper_insert (operation, arfname, argv, argc, member);
break;
default:
assert (! "should not happen");
status = 1;
break;
}
return status;
}
static error_t
parse_opt (int key, char *arg __attribute__ ((unused)),
struct argp_state *state __attribute__ ((unused)))
{
switch (key)
{
case 'd':
case 'm':
case 'p':
case 'q':
case 'r':
case 't':
case 'x':
if (operation != oper_none)
{
error (0, 0, _("More than one operation specified"));
argp_help (&argp, stderr, ARGP_HELP_SEE,
program_invocation_short_name);
exit (EXIT_FAILURE);
}
switch (key)
{
case 'd':
operation = oper_delete;
break;
case 'm':
operation = oper_move;
break;
case 'p':
operation = oper_print;
break;
case 'q':
operation = oper_qappend;
break;
case 'r':
operation = oper_replace;
break;
case 't':
operation = oper_list;
break;
case 'x':
operation = oper_extract;
break;
}
break;
case 'a':
ipos = ipos_after;
break;
case 'b':
case 'i':
ipos = ipos_before;
break;
case 'c':
suppress_create_msg = true;
break;
case 'C':
dont_replace_existing = true;
break;
case 'N':
instance_specifed = true;
break;
case 'o':
preserve_dates = true;
break;
case 'P':
full_path = true;
break;
case 's':
force_symtab = true;
break;
case 'T':
allow_truncate_fname = true;
break;
case 'u':
update_newer = true;
break;
case 'v':
verbose = true;
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
static int
open_archive (const char *arfname, int flags, int mode, Elf **elf,
struct stat *st, bool miss_allowed)
{
int fd = open (arfname, flags, mode);
if (fd == -1)
{
if (miss_allowed)
return -1;
error_exit (errno, _("cannot open archive '%s'"),
arfname);
}
if (elf != NULL)
{
Elf_Cmd cmd = flags == O_RDONLY ? ELF_C_READ_MMAP : ELF_C_RDWR_MMAP;
*elf = elf_begin (fd, cmd, NULL);
if (*elf == NULL)
error_exit (0, _("cannot open archive '%s': %s"),
arfname, elf_errmsg (-1));
if (flags == O_RDONLY && elf_kind (*elf) != ELF_K_AR)
error_exit (0, _("%s: not an archive file"), arfname);
}
if (st != NULL && fstat (fd, st) != 0)
error_exit (errno, _("cannot stat archive '%s'"),
arfname);
return fd;
}
static void
not_found (int argc, char *argv[argc], bool found[argc])
{
for (int i = 0; i < argc; ++i)
if (!found[i])
printf (_("no entry %s in archive\n"), argv[i]);
}
static int
copy_content (Elf *elf, int newfd, off_t off, size_t n)
{
size_t len;
char *rawfile = elf_rawfile (elf, &len);
assert (off + n <= len);
size_t ps = sysconf (_SC_PAGESIZE);
if (n > 2 * ps)
posix_madvise (rawfile + (off & ~(ps - 1)), n, POSIX_MADV_SEQUENTIAL);
return write_retry (newfd, rawfile + off, n) != (ssize_t) n;
}
static inline bool
should_truncate_fname (size_t *name_max)
{
if (errno == ENAMETOOLONG && allow_truncate_fname)
{
if (*name_max == 0)
{
long int len = pathconf (".", _PC_NAME_MAX);
if (len > 0)
*name_max = len;
}
return *name_max != 0;
}
return false;
}
static int
do_oper_extract (int oper, const char *arfname, char **argv, int argc,
long int instance)
{
bool found[argc > 0 ? argc : 1];
memset (found, '\0', sizeof (found));
size_t name_max = 0;
off_t index_off = -1;
size_t index_size = 0;
off_t cur_off = SARMAG;
int status = 0;
Elf *elf;
int fd = open_archive (arfname, O_RDONLY, 0, &elf, NULL, false);
if (hcreate (2 * argc) == 0)
error_exit (errno, _("cannot create hash table"));
for (int cnt = 0; cnt < argc; ++cnt)
{
ENTRY entry = { .key = argv[cnt], .data = &argv[cnt] };
if (hsearch (entry, ENTER) == NULL)
error_exit (errno, _("cannot insert into hash table"));
}
struct stat st;
if (force_symtab)
{
if (fstat (fd, &st) != 0)
{
error (0, errno, _("cannot stat '%s'"), arfname);
close (fd);
return 1;
}
arlib_init ();
}
Elf_Cmd cmd = ELF_C_READ_MMAP;
Elf *subelf;
while ((subelf = elf_begin (fd, cmd, elf)) != NULL)
{
Elf_Arhdr *arhdr = elf_getarhdr (subelf);
if (strcmp (arhdr->ar_name, "/") == 0)
{
index_off = elf_getaroff (subelf);
index_size = arhdr->ar_size;
goto next;
}
if (strcmp (arhdr->ar_name, "//") == 0)
goto next;
if (force_symtab)
{
arlib_add_symbols (elf, arfname, arhdr->ar_name, cur_off);
cur_off += (((arhdr->ar_size + 1) & ~((off_t) 1))
+ sizeof (struct ar_hdr));
}
bool do_extract = argc <= 0;
if (!do_extract)
{
ENTRY entry;
entry.key = arhdr->ar_name;
ENTRY *res = hsearch (entry, FIND);
if (res != NULL && (instance < 0 || --instance == 0)
&& !found[(char **) res->data - argv])
found[(char **) res->data - argv] = do_extract = true;
}
if (do_extract)
{
if (verbose)
{
if (oper == oper_print)
{
printf ("\n<%s>\n\n", arhdr->ar_name);
fflush (stdout);
}
else if (oper == oper_list)
{
char datestr[100];
struct tm *tp = localtime (&arhdr->ar_date);
if (tp == NULL)
{
time_t time = 0;
tp = localtime (&time);
}
strftime (datestr, sizeof (datestr), "%b %e %H:%M %Y", tp);
printf ("%c%c%c%c%c%c%c%c%c %u/%u %6ju %s %s\n",
(arhdr->ar_mode & S_IRUSR) ? 'r' : '-',
(arhdr->ar_mode & S_IWUSR) ? 'w' : '-',
(arhdr->ar_mode & S_IXUSR)
? ((arhdr->ar_mode & S_ISUID) ? 's' : 'x')
: ((arhdr->ar_mode & S_ISUID) ? 'S' : '-'),
(arhdr->ar_mode & S_IRGRP) ? 'r' : '-',
(arhdr->ar_mode & S_IWGRP) ? 'w' : '-',
(arhdr->ar_mode & S_IXGRP)
? ((arhdr->ar_mode & S_ISGID) ? 's' : 'x')
: ((arhdr->ar_mode & S_ISGID) ? 'S' : '-'),
(arhdr->ar_mode & S_IROTH) ? 'r' : '-',
(arhdr->ar_mode & S_IWOTH) ? 'w' : '-',
(arhdr->ar_mode & S_IXOTH)
? ((arhdr->ar_mode & S_ISVTX) ? 't' : 'x')
: ((arhdr->ar_mode & S_ISVTX) ? 'T' : '-'),
arhdr->ar_uid,
arhdr->ar_gid,
(uintmax_t) arhdr->ar_size,
datestr,
arhdr->ar_name);
}
else
printf ("x - %s\n", arhdr->ar_name);
}
if (oper == oper_list)
{
if (!verbose)
puts (arhdr->ar_name);
goto next;
}
size_t nleft;
char *data = elf_rawfile (subelf, &nleft);
if (data == NULL)
{
error (0, 0, _("cannot read content of %s: %s"),
arhdr->ar_name, elf_errmsg (-1));
status = 1;
goto next;
}
int xfd;
char tempfname[] = "XXXXXX";
bool use_mkstemp = true;
if (oper == oper_print)
xfd = STDOUT_FILENO;
else
{
xfd = mkstemp (tempfname);
if (unlikely (xfd == -1))
{
int flags = O_WRONLY | O_CREAT;
if (dont_replace_existing)
flags |= O_EXCL;
else
flags |= O_TRUNC;
xfd = open (arhdr->ar_name, flags, 0600);
if (unlikely (xfd == -1))
{
int printlen = INT_MAX;
if (should_truncate_fname (&name_max))
{
printlen = name_max;
char truncfname[name_max + 1];
*((char *) mempcpy (truncfname, arhdr->ar_name,
name_max)) = '\0';
xfd = open (truncfname, flags, 0600);
}
if (xfd == -1)
{
error (0, errno, _("cannot open %.*s"),
(int) printlen, arhdr->ar_name);
status = 1;
goto next;
}
}
use_mkstemp = false;
}
}
ssize_t n;
while ((n = TEMP_FAILURE_RETRY (write (xfd, data, nleft))) != -1)
{
nleft -= n;
if (nleft == 0)
break;
data += n;
}
if (unlikely (n == -1))
{
error (0, errno, _("failed to write %s"), arhdr->ar_name);
status = 1;
unlink (tempfname);
close (xfd);
goto next;
}
if (oper != oper_print)
{
if (unlikely (fchmod (xfd, arhdr->ar_mode) != 0))
{
error (0, errno, _("cannot change mode of %s"),
arhdr->ar_name);
status = 0;
}
if (preserve_dates)
{
struct timespec tv[2];
tv[0].tv_sec = arhdr->ar_date;
tv[0].tv_nsec = 0;
tv[1].tv_sec = arhdr->ar_date;
tv[1].tv_nsec = 0;
if (unlikely (futimens (xfd, tv) != 0))
{
error (0, errno,
_("cannot change modification time of %s"),
arhdr->ar_name);
status = 1;
}
}
if (use_mkstemp)
{
int r;
if (dont_replace_existing)
{
r = link (tempfname, arhdr->ar_name);
if (likely (r == 0))
unlink (tempfname);
}
else
r = rename (tempfname, arhdr->ar_name);
if (unlikely (r) != 0)
{
int printlen = INT_MAX;
if (should_truncate_fname (&name_max))
{
printlen = name_max;
char truncfname[name_max + 1];
*((char *) mempcpy (truncfname, arhdr->ar_name,
name_max)) = '\0';
if (dont_replace_existing)
{
r = link (tempfname, truncfname);
if (likely (r == 0))
unlink (tempfname);
}
else
r = rename (tempfname, truncfname);
}
if (r != 0)
{
error (0, errno, _("\
cannot rename temporary file to %.*s"),
printlen, arhdr->ar_name);
unlink (tempfname);
status = 1;
}
}
}
close (xfd);
}
}
next:
cmd = elf_next (subelf);
if (elf_end (subelf) != 0)
error (1, 0, "%s: %s", arfname, elf_errmsg (-1));
}
hdestroy ();
if (force_symtab)
{
arlib_finalize ();
if (symtab.symsnamelen != 0
|| (symtab.symsnamelen == 0 && index_size != 0))
{
char tmpfname[strlen (arfname) + 7];
strcpy (stpcpy (tmpfname, arfname), "XXXXXX");
int newfd = mkstemp (tmpfname);
if (unlikely (newfd == -1))
{
nonew:
error (0, errno, _("cannot create new file"));
status = 1;
}
else
{
if (unlikely (write_retry (newfd, ARMAG, SARMAG) != SARMAG))
{
nonew_unlink:
unlink (tmpfname);
if (newfd != -1)
close (newfd);
goto nonew;
}
off_t rest_off;
if (index_off != -1)
rest_off = (index_off + sizeof (struct ar_hdr)
+ ((index_size + 1) & ~1ul));
else
rest_off = SARMAG;
if (symtab.symsnamelen != 0
&& ((write_retry (newfd, symtab.symsoff,
symtab.symsofflen)
!= (ssize_t) symtab.symsofflen)
|| (write_retry (newfd, symtab.symsname,
symtab.symsnamelen)
!= (ssize_t) symtab.symsnamelen)))
goto nonew_unlink;
if ((index_off != SARMAG
&& copy_content (elf, newfd, SARMAG, index_off - SARMAG))
|| copy_content (elf, newfd, rest_off, st.st_size - rest_off))
goto nonew_unlink;
if (fchown (newfd, st.st_uid, st.st_gid) != 0) { ; }
if (fchmod (newfd, st.st_mode & ALLPERMS) != 0
|| close (newfd) != 0)
goto nonew_unlink;
newfd = -1;
if (rename (tmpfname, arfname) != 0)
goto nonew_unlink;
}
}
}
elf_end (elf);
close (fd);
not_found (argc, argv, found);
return status;
}
struct armem
{
off_t off;
off_t old_off;
size_t size;
long int long_name_off;
struct armem *next;
void *mem;
time_t sec;
uid_t uid;
gid_t gid;
mode_t mode;
const char *name;
Elf *elf;
};
static int
write_member (struct armem *memb, off_t *startp, off_t *lenp, Elf *elf,
off_t end_off, int newfd)
{
struct ar_hdr arhdr;
char tmpbuf[sizeof (arhdr.ar_name) + 2];
bool changed_header = memb->long_name_off != -1;
if (changed_header)
{
memcpy (&arhdr, elf_rawfile (elf, NULL) + *startp, sizeof (arhdr));
snprintf (tmpbuf, sizeof (tmpbuf), "/%-*ld",
(int) sizeof (arhdr.ar_name), memb->long_name_off);
changed_header = memcmp (arhdr.ar_name, tmpbuf,
sizeof (arhdr.ar_name)) != 0;
}
if (*startp != -1 && !changed_header && *startp + *lenp == memb->old_off)
{
*lenp += (memb->next != NULL
? memb->next->off : end_off) - memb->off;
return 0;
}
if (*startp != -1 && copy_content (elf, newfd, *startp, *lenp))
return -1;
*startp = memb->old_off;
*lenp = (memb->next != NULL ? memb->next->off : end_off) - memb->off;
if (changed_header)
{
memcpy (arhdr.ar_name, tmpbuf, sizeof (arhdr.ar_name));
if (unlikely (write_retry (newfd, &arhdr, sizeof (arhdr))
!= sizeof (arhdr)))
return -1;
*startp += sizeof (struct ar_hdr);
assert ((size_t) *lenp >= sizeof (struct ar_hdr));
*lenp -= sizeof (struct ar_hdr);
}
return 0;
}
static void
remember_long_name (struct armem *mem, const char *name, size_t namelen)
{
mem->long_name_off = (namelen > MAX_AR_NAME_LEN
? arlib_add_long_name (name, namelen)
: -1l);
}
static int
do_oper_delete (const char *arfname, char **argv, int argc,
long int instance)
{
bool *found = alloca (sizeof (bool) * argc);
memset (found, '\0', sizeof (bool) * argc);
struct armem *to_copy = NULL;
int status = 0;
Elf *elf;
struct stat st;
int fd = open_archive (arfname, O_RDONLY, 0, &elf, &st, false);
if (hcreate (2 * argc) == 0)
error_exit (errno, _("cannot create hash table"));
for (int cnt = 0; cnt < argc; ++cnt)
{
ENTRY entry = { .key = argv[cnt], .data = &argv[cnt] };
if (hsearch (entry, ENTER) == NULL)
error_exit (errno, _("cannot insert into hash table"));
}
arlib_init ();
off_t cur_off = SARMAG;
Elf_Cmd cmd = ELF_C_READ_MMAP;
Elf *subelf;
while ((subelf = elf_begin (fd, cmd, elf)) != NULL)
{
Elf_Arhdr *arhdr = elf_getarhdr (subelf);
if (strcmp (arhdr->ar_name, "/") == 0
|| strcmp (arhdr->ar_name, "//") == 0)
goto next;
bool do_delete = argc <= 0;
if (!do_delete)
{
ENTRY entry;
entry.key = arhdr->ar_name;
ENTRY *res = hsearch (entry, FIND);
if (res != NULL && (instance < 0 || --instance == 0)
&& !found[(char **) res->data - argv])
found[(char **) res->data - argv] = do_delete = true;
}
if (do_delete)
{
if (verbose)
printf ("d - %s\n", arhdr->ar_name);
}
else
{
struct armem *newp = alloca (sizeof (struct armem));
newp->old_off = elf_getaroff (subelf);
newp->off = cur_off;
cur_off += (((arhdr->ar_size + 1) & ~((off_t) 1))
+ sizeof (struct ar_hdr));
if (to_copy == NULL)
to_copy = newp->next = newp;
else
{
newp->next = to_copy->next;
to_copy = to_copy->next = newp;
}
arlib_add_symbols (subelf, arfname, arhdr->ar_name, newp->off);
remember_long_name (newp, arhdr->ar_name, strlen (arhdr->ar_name));
}
next:
cmd = elf_next (subelf);
if (elf_end (subelf) != 0)
error (1, 0, "%s: %s", arfname, elf_errmsg (-1));
}
arlib_finalize ();
hdestroy ();
char tmpfname[strlen (arfname) + 7];
strcpy (stpcpy (tmpfname, arfname), "XXXXXX");
int newfd = mkstemp (tmpfname);
if (unlikely (newfd == -1))
goto nonew;
if (unlikely (write_retry (newfd, ARMAG, SARMAG) != SARMAG))
{
nonew_unlink:
unlink (tmpfname);
if (newfd != -1)
close (newfd);
nonew:
error (0, errno, _("cannot create new file"));
status = 1;
goto errout;
}
if (likely (to_copy != NULL))
{
if (symtab.symsnamelen != 0
&& ((write_retry (newfd, symtab.symsoff, symtab.symsofflen)
!= (ssize_t) symtab.symsofflen)
|| (write_retry (newfd, symtab.symsname, symtab.symsnamelen)
!= (ssize_t) symtab.symsnamelen)))
goto nonew_unlink;
if (symtab.longnameslen > sizeof (struct ar_hdr)
&& (write_retry (newfd, symtab.longnames, symtab.longnameslen)
!= (ssize_t) symtab.longnameslen))
goto nonew_unlink;
struct armem *last = to_copy;
to_copy = to_copy->next;
last->next = NULL;
off_t start = -1;
off_t len = -1;
do
if (write_member (to_copy, &start, &len, elf, cur_off, newfd) != 0)
goto nonew_unlink;
while ((to_copy = to_copy->next) != NULL);
if (copy_content (elf, newfd, start, len))
goto nonew_unlink;
}
if (fchown (newfd, st.st_uid, st.st_gid) != 0) { ; }
if (fchmod (newfd, st.st_mode & ALLPERMS) != 0
|| close (newfd) != 0)
goto nonew_unlink;
newfd = -1;
if (rename (tmpfname, arfname) != 0)
goto nonew_unlink;
errout:
elf_end (elf);
arlib_fini ();
close (fd);
not_found (argc, argv, found);
return status;
}
static bool
no0print (bool ofmt, char *buf, int bufsize, long int val)
{
char tmpbuf[bufsize + 1];
int ret = snprintf (tmpbuf, sizeof (tmpbuf), ofmt ? "%-*lo" : "%-*ld",
bufsize, val);
if (ret >= (int) sizeof (tmpbuf))
return false;
memcpy (buf, tmpbuf, bufsize);
return true;
}
static int
do_oper_insert (int oper, const char *arfname, char **argv, int argc,
const char *member)
{
int status = 0;
Elf *elf = NULL;
struct stat st;
int fd = open_archive (arfname, O_RDONLY, 0, &elf, &st, oper != oper_move);
struct armem *all = NULL;
struct armem *after_memberelem = NULL;
struct armem **found = alloca (sizeof (*found) * argc);
memset (found, '\0', sizeof (*found) * argc);
arlib_init ();
off_t cur_off = SARMAG;
if (fd == -1)
{
if (!suppress_create_msg)
fprintf (stderr, "%s: creating %s\n",
program_invocation_short_name, arfname);
goto no_old;
}
if (oper != oper_qappend)
{
if (hcreate (2 * argc) == 0)
error_exit (errno, _("cannot create hash table"));
for (int cnt = 0; cnt < argc; ++cnt)
{
ENTRY entry;
entry.key = full_path ? argv[cnt] : (char*)xbasename (argv[cnt]);
entry.data = &argv[cnt];
if (hsearch (entry, ENTER) == NULL)
error_exit (errno, _("cannot insert into hash table"));
}
}
Elf_Cmd cmd = ELF_C_READ_MMAP;
Elf *subelf;
while ((subelf = elf_begin (fd, cmd, elf)) != NULL)
{
Elf_Arhdr *arhdr = elf_getarhdr (subelf);
if (strcmp (arhdr->ar_name, "/") == 0
|| strcmp (arhdr->ar_name, "//") == 0)
goto next;
struct armem *newp = alloca (sizeof (struct armem));
newp->old_off = elf_getaroff (subelf);
newp->size = arhdr->ar_size;
newp->sec = arhdr->ar_date;
newp->mem = NULL;
remember_long_name (newp, arhdr->ar_name, strlen (arhdr->ar_name));
if (oper != oper_qappend)
{
if (member != NULL && strcmp (arhdr->ar_name, member) == 0)
{
if (ipos == ipos_before)
after_memberelem = all;
else
after_memberelem = newp;
member = NULL;
}
ENTRY entry;
entry.key = arhdr->ar_name;
ENTRY *res = hsearch (entry, FIND);
if (res != NULL && found[(char **) res->data - argv] == NULL)
{
found[(char **) res->data - argv] = newp;
if (unlikely (ipos != ipos_none || oper == oper_move))
{
if (after_memberelem == newp)
after_memberelem = all;
goto next;
}
}
}
if (all == NULL)
all = newp->next = newp;
else
{
newp->next = all->next;
all = all->next = newp;
}
next:
cmd = elf_next (subelf);
if (elf_end (subelf) != 0)
error_exit (0, "%s: %s", arfname, elf_errmsg (-1));
}
if (oper != oper_qappend)
hdestroy ();
no_old:
if (member != NULL)
error_exit (0, _("position member %s not found"),
member);
if (oper == oper_move)
{
for (int cnt = 0; cnt < argc; ++cnt)
{
if (found[cnt] == NULL)
{
fprintf (stderr, _("%s: no entry %s in archive!\n"),
program_invocation_short_name, argv[cnt]);
status = 1;
}
if (verbose)
printf ("m - %s\n", argv[cnt]);
}
}
else
{
for (int cnt = 0; cnt < argc; ++cnt)
{
const char *bname = xbasename (argv[cnt]);
size_t bnamelen = strlen (bname);
if (found[cnt] == NULL)
{
found[cnt] = alloca (sizeof (struct armem));
found[cnt]->old_off = -1;
remember_long_name (found[cnt], bname, bnamelen);
}
struct stat newst;
Elf *newelf;
int newfd = open (argv[cnt], O_RDONLY);
if (newfd == -1)
{
error (0, errno, _("cannot open %s"), argv[cnt]);
status = 1;
}
else if (fstat (newfd, &newst) == -1)
{
error (0, errno, _("cannot stat %s"), argv[cnt]);
close (newfd);
status = 1;
}
else if (!S_ISREG (newst.st_mode))
{
error (0, errno, _("%s is no regular file"), argv[cnt]);
close (newfd);
status = 1;
}
else if (update_newer
&& found[cnt]->old_off != -1l
&& found[cnt]->sec > st.st_mtime)
close (newfd);
else if ((newelf = elf_begin (newfd, ELF_C_READ_MMAP, NULL))
== NULL)
{
fprintf (stderr,
_("cannot get ELF descriptor for %s: %s\n"),
argv[cnt], elf_errmsg (-1));
status = 1;
}
else
{
if (verbose)
printf ("%c - %s\n",
found[cnt]->old_off == -1l ? 'a' : 'r', argv[cnt]);
found[cnt]->elf = newelf;
found[cnt]->sec = arlib_deterministic_output ? 0 : newst.st_mtime;
found[cnt]->uid = arlib_deterministic_output ? 0 : newst.st_uid;
found[cnt]->gid = arlib_deterministic_output ? 0 : newst.st_gid;
found[cnt]->mode = newst.st_mode;
found[cnt]->name = bname;
found[cnt]->mem = elf_rawfile (newelf, &found[cnt]->size);
if (found[cnt]->mem == NULL
|| elf_cntl (newelf, ELF_C_FDDONE) != 0)
error_exit (0, _("cannot read %s: %s"),
argv[cnt], elf_errmsg (-1));
close (newfd);
if (found[cnt]->old_off != -1l)
remember_long_name (found[cnt], bname, bnamelen);
}
}
}
if (status != 0)
{
elf_end (elf);
arlib_fini ();
close (fd);
return status;
}
if (ipos != ipos_before && after_memberelem == NULL)
after_memberelem = all;
if (all != NULL)
{
struct armem *tmp = all;
all = all->next;
tmp->next = NULL;
}
struct armem *last_added = after_memberelem;
for (int cnt = 0; cnt < argc; ++cnt)
if (oper != oper_replace || found[cnt]->old_off == -1)
{
if (last_added == NULL)
{
found[cnt]->next = all;
last_added = all = found[cnt];
}
else
{
found[cnt]->next = last_added->next;
last_added = last_added->next = found[cnt];
}
}
if (likely (all != NULL))
for (struct armem *memp = all; memp != NULL; memp = memp->next)
{
memp->off = cur_off;
if (memp->mem == NULL)
{
Elf_Arhdr *arhdr;
asm ("" : "=m" (arhdr), "=m" (subelf));
if (elf_rand (elf, memp->old_off) == 0
|| (subelf = elf_begin (fd, ELF_C_READ_MMAP, elf)) == NULL
|| (arhdr = elf_getarhdr (subelf)) == NULL)
error_exit (0, "%s: %s", arfname, elf_errmsg (-1));
arlib_add_symbols (subelf, arfname, arhdr->ar_name, cur_off);
elf_end (subelf);
}
else
arlib_add_symbols (memp->elf, arfname, memp->name, cur_off);
cur_off += (((memp->size + 1) & ~((off_t) 1))
+ sizeof (struct ar_hdr));
}
arlib_finalize ();
char tmpfname[strlen (arfname) + 7];
strcpy (stpcpy (tmpfname, arfname), "XXXXXX");
int newfd;
if (fd != -1)
newfd = mkstemp (tmpfname);
else
{
newfd = open (arfname, O_RDWR | O_CREAT | O_EXCL, DEFFILEMODE);
if (newfd == -1 && errno == EEXIST)
return do_oper_insert (oper, arfname, argv, argc, member);
}
if (unlikely (newfd == -1))
goto nonew;
if (unlikely (write_retry (newfd, ARMAG, SARMAG) != SARMAG))
{
nonew_unlink:
if (fd != -1)
{
unlink (tmpfname);
if (newfd != -1)
close (newfd);
}
nonew:
error (0, errno, _("cannot create new file"));
status = 1;
goto errout;
}
if (likely (all != NULL))
{
if (symtab.symsnamelen != 0
&& ((write_retry (newfd, symtab.symsoff, symtab.symsofflen)
!= (ssize_t) symtab.symsofflen)
|| (write_retry (newfd, symtab.symsname, symtab.symsnamelen)
!= (ssize_t) symtab.symsnamelen)))
goto nonew_unlink;
if (symtab.longnameslen > sizeof (struct ar_hdr)
&& (write_retry (newfd, symtab.longnames, symtab.longnameslen)
!= (ssize_t) symtab.longnameslen))
goto nonew_unlink;
off_t start = -1;
off_t len = -1;
while (all != NULL)
{
if (all->mem != NULL)
{
if (start != -1 && copy_content (elf, newfd, start, len))
goto nonew_unlink;
start = -1;
len = -1;
struct ar_hdr arhdr;
char tmpbuf[sizeof (arhdr.ar_name) + 2];
if (all->long_name_off == -1)
{
size_t namelen = strlen (all->name);
char *p = mempcpy (arhdr.ar_name, all->name, namelen);
*p++ = '/';
memset (p, ' ', sizeof (arhdr.ar_name) - namelen - 1);
}
else
{
snprintf (tmpbuf, sizeof (tmpbuf), "/%-*ld",
(int) sizeof (arhdr.ar_name), all->long_name_off);
memcpy (arhdr.ar_name, tmpbuf, sizeof (arhdr.ar_name));
}
if (! no0print (false, arhdr.ar_date, sizeof (arhdr.ar_date),
all->sec))
{
error (0, errno, _("cannot represent ar_date"));
goto nonew_unlink;
}
if (! no0print (false, arhdr.ar_uid, sizeof (arhdr.ar_uid),
all->uid))
{
error (0, errno, _("cannot represent ar_uid"));
goto nonew_unlink;
}
if (! no0print (false, arhdr.ar_gid, sizeof (arhdr.ar_gid),
all->gid))
{
error (0, errno, _("cannot represent ar_gid"));
goto nonew_unlink;
}
if (! no0print (true, arhdr.ar_mode, sizeof (arhdr.ar_mode),
all->mode))
{
error (0, errno, _("cannot represent ar_mode"));
goto nonew_unlink;
}
if (! no0print (false, arhdr.ar_size, sizeof (arhdr.ar_size),
all->size))
{
error (0, errno, _("cannot represent ar_size"));
goto nonew_unlink;
}
memcpy (arhdr.ar_fmag, ARFMAG, sizeof (arhdr.ar_fmag));
if (unlikely (write_retry (newfd, &arhdr, sizeof (arhdr))
!= sizeof (arhdr)))
goto nonew_unlink;
if (unlikely (write_retry (newfd, all->mem, all->size)
!= (off_t) all->size))
goto nonew_unlink;
if ((all->size & 1) != 0)
if (unlikely (write_retry (newfd, "\n", 1) != 1))
goto nonew_unlink;
}
else
{
if (write_member (all, &start, &len, elf, cur_off, newfd)
!= 0)
goto nonew_unlink;
}
all = all->next;
}
if (start != -1 && copy_content (elf, newfd, start, len))
goto nonew_unlink;
}
if (fd != -1)
{
if (fchown (newfd, st.st_uid, st.st_gid) != 0) { ; }
if (fchmod (newfd, st.st_mode & ALLPERMS) != 0
|| close (newfd) != 0)
goto nonew_unlink;
newfd = -1;
if (rename (tmpfname, arfname) != 0)
goto nonew_unlink;
}
errout:
for (int cnt = 0; cnt < argc; ++cnt)
elf_end (found[cnt]->elf);
elf_end (elf);
arlib_fini ();
if (fd != -1)
close (fd);
if (newfd != -1)
close (newfd);
return status;
}
#include "debugpred.h"