revert last two commits. vfork cannot be used in subroutine,
[oweals/busybox.git] / archival / libunarchive / get_header_ar.c
index d2840e0e3bbe5f24b8216c8aff9d284f6f864034..59fd34c732965a03af23e040602bc5ee80db0f00 100644 (file)
-/*
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
- *  (at your option) any later version.
+/* vi: set sw=4 ts=4: */
+/* Copyright 2001 Glenn McGrath.
  *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU Library General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include "unarchive.h"
 #include "libbb.h"
+#include "unarchive.h"
 
-file_header_t *get_header_ar(FILE *src_stream)
+char FAST_FUNC get_header_ar(archive_handle_t *archive_handle)
 {
-       file_header_t *typed;
+       int err;
+       file_header_t *typed = archive_handle->file_header;
        union {
                char raw[60];
-               struct {
-                       char name[16];
-                       char date[12];
-                       char uid[6];
-                       char gid[6];
-                       char mode[8];
-                       char size[10];
-                       char magic[2];
-               } formated;
+               struct {
+                       char name[16];
+                       char date[12];
+                       char uid[6];
+                       char gid[6];
+                       char mode[8];
+                       char size[10];
+                       char magic[2];
+               } formatted;
        } ar;
+#if ENABLE_FEATURE_AR_LONG_FILENAMES
        static char *ar_long_names;
+       static unsigned ar_long_name_size;
+#endif
 
-       if (fread(ar.raw, 1, 60, src_stream) != 60) {
-               return(NULL);
+       /* dont use xread as we want to handle the error ourself */
+       if (read(archive_handle->src_fd, ar.raw, 60) != 60) {
+               /* End Of File */
+               return EXIT_FAILURE;
        }
-       archive_offset += 60;
-       /* align the headers based on the header magic */
-       if ((ar.formated.magic[0] != '`') || (ar.formated.magic[1] != '\n')) {
-               /* some version of ar, have an extra '\n' after each data entry,
-                * this puts the next header out by 1 */
-               if (ar.formated.magic[1] != '`') {
-                       error_msg("Invalid magic");
-                       return(NULL);
-               }
-               /* read the next char out of what would be the data section,
-                * if its a '\n' then it is a valid header offset by 1*/
-               archive_offset++;
-               if (fgetc(src_stream) != '\n') {
-                       error_msg("Invalid magic");
-                       return(NULL);
-               }
+
+       /* ar header starts on an even byte (2 byte aligned)
+        * '\n' is used for padding
+        */
+       if (ar.raw[0] == '\n') {
                /* fix up the header, we started reading 1 byte too early */
-               /* raw_header[60] wont be '\n' as it should, but it doesnt matter */
                memmove(ar.raw, &ar.raw[1], 59);
+               ar.raw[59] = xread_char(archive_handle->src_fd);
+               archive_handle->offset++;
        }
-               
-       typed = (file_header_t *) xcalloc(1, sizeof(file_header_t));
+       archive_handle->offset += 60;
+
+       /* align the headers based on the header magic */
+       if (ar.formatted.magic[0] != '`' || ar.formatted.magic[1] != '\n')
+               bb_error_msg_and_die("invalid ar header");
+
+       /* FIXME: more thorough routine would be in order here */
+       /* (we have something like that in tar) */
+       /* but for now we are lax. This code works because */
+       /* on misformatted numbers bb_strtou returns all-ones */
+       typed->mode = err = bb_strtou(ar.formatted.mode, NULL, 8);
+       if (err == -1) bb_error_msg_and_die("invalid ar header");
+       typed->mtime = err = bb_strtou(ar.formatted.date, NULL, 10);
+       if (err == -1) bb_error_msg_and_die("invalid ar header");
+       typed->uid = err = bb_strtou(ar.formatted.uid, NULL, 10);
+       if (err == -1) bb_error_msg_and_die("invalid ar header");
+       typed->gid = err = bb_strtou(ar.formatted.gid, NULL, 10);
+       if (err == -1) bb_error_msg_and_die("invalid ar header");
+       typed->size = err = bb_strtou(ar.formatted.size, NULL, 10);
+       if (err == -1) bb_error_msg_and_die("invalid ar header");
 
-       typed->size = (size_t) atoi(ar.formated.size);
        /* long filenames have '/' as the first character */
-       if (ar.formated.name[0] == '/') {
-               if (ar.formated.name[1] == '/') {
+       if (ar.formatted.name[0] == '/') {
+#if ENABLE_FEATURE_AR_LONG_FILENAMES
+               unsigned long_offset;
+
+               if (ar.formatted.name[1] == '/') {
                        /* If the second char is a '/' then this entries data section
                         * stores long filename for multiple entries, they are stored
                         * in static variable long_names for use in future entries */
-                       ar_long_names = (char *) xrealloc(ar_long_names, typed->size);
-                       fread(ar_long_names, 1, typed->size, src_stream);
-                       archive_offset += typed->size;
+                       ar_long_name_size = typed->size;
+                       ar_long_names = xmalloc(ar_long_name_size);
+                       xread(archive_handle->src_fd, ar_long_names, ar_long_name_size);
+                       archive_handle->offset += ar_long_name_size;
                        /* This ar entries data section only contained filenames for other records
                         * they are stored in the static ar_long_names for future reference */
-                       return (get_header_ar(src_stream)); /* Return next header */
-               } else if (ar.formated.name[1] == ' ') {
+                       return get_header_ar(archive_handle); /* Return next header */
+               }
+
+               if (ar.formatted.name[1] == ' ') {
                        /* This is the index of symbols in the file for compilers */
-                       seek_sub_file(src_stream, typed->size);
-                       return (get_header_ar(src_stream)); /* Return next header */
-               } else {
-                       /* The number after the '/' indicates the offset in the ar data section
-                       (saved in variable long_name) that conatains the real filename */
-                       if (!ar_long_names) {
-                               error_msg("Cannot resolve long file name");
-                               return (NULL);
-                       }
-                       typed->name = xstrdup(ar_long_names + atoi(&ar.formated.name[1]));
+                       data_skip(archive_handle);
+                       archive_handle->offset += typed->size;
+                       return get_header_ar(archive_handle); /* Return next header */
                }
+
+               /* The number after the '/' indicates the offset in the ar data section
+                * (saved in variable long_name) that conatains the real filename */
+               long_offset = atoi(&ar.formatted.name[1]);
+               if (long_offset >= ar_long_name_size) {
+                       bb_error_msg_and_die("can't resolve long filename");
+               }
+               typed->name = xstrdup(ar_long_names + long_offset);
+#else
+               bb_error_msg_and_die("long filenames not supported");
+#endif
        } else {
                /* short filenames */
-               typed->name = xcalloc(1, 16);
-               strncpy(typed->name, ar.formated.name, 16);
+               typed->name = xstrndup(ar.formatted.name, 16);
+       }
+
+       typed->name[strcspn(typed->name, " /")] = '\0';
+
+       if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) {
+               archive_handle->action_header(typed);
+               if (archive_handle->sub_archive) {
+                       while (archive_handle->action_data_subarchive(archive_handle->sub_archive) == EXIT_SUCCESS)
+                               continue;
+               } else {
+                       archive_handle->action_data(archive_handle);
+               }
+       } else {
+               data_skip(archive_handle);
        }
-       typed->name[strcspn(typed->name, " /")]='\0';
 
-       /* convert the rest of the now valid char header to its typed struct */ 
-       parse_mode(ar.formated.mode, &typed->mode);
-       typed->mtime = atoi(ar.formated.date);
-       typed->uid = atoi(ar.formated.uid);
-       typed->gid = atoi(ar.formated.gid);
+       archive_handle->offset += typed->size;
+       /* Set the file pointer to the correct spot, we may have been reading a compressed file */
+       lseek(archive_handle->src_fd, archive_handle->offset, SEEK_SET);
 
-       return(typed);
-}
\ No newline at end of file
+       return EXIT_SUCCESS;
+}