]> Dogcows Code - chaz/tar/commitdiff
Fix bugs when interpreting POSIX-compliant headers that do not
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 16 Aug 1999 08:13:20 +0000 (08:13 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 16 Aug 1999 08:13:20 +0000 (08:13 +0000)
contain null bytes in the header or link names.

src/list.c

index 4bca28c21b2c144f4b59915cc1c218b510ba9707..1c245319cd57ff0c4147137eb38676d3d6a6a824 100644 (file)
@@ -386,7 +386,6 @@ read_header (void)
       else
        current_stat.st_size = OFF_FROM_CHARS (header->header.size);
 
-      header->header.name[NAME_FIELD_SIZE - 1] = '\0';
       if (header->header.typeflag == GNUTYPE_LONGNAME
          || header->header.typeflag == GNUTYPE_LONGLINK)
        {
@@ -425,18 +424,19 @@ read_header (void)
        }
       else
        {
-         char *name = next_long_name;
+         char *name;
          struct posix_header *h = &current_header->header;
-         char namebuf[sizeof h->prefix + 1 + sizeof h->name + 1];
+         char namebuf[sizeof h->prefix + 1 + NAME_FIELD_SIZE + 1];
 
+         name = next_long_name;
          if (! name)
            {
              /* Accept file names as specified by POSIX.1-1996
                  section 10.1.1.  */
-             int is_posix = (strcmp (h->magic, TMAGIC) == 0);
+             int posix_header = strcmp (h->magic, TMAGIC) == 0;
              char *np = namebuf;
 
-             if (is_posix && h->prefix[0])
+             if (posix_header && h->prefix[0])
                {
                  memcpy (np, h->prefix, sizeof h->prefix);
                  np[sizeof h->prefix] = '\0';
@@ -447,11 +447,17 @@ read_header (void)
              np[sizeof h->name] = '\0';
              name = namebuf;
            }
-
          assign_string (&current_file_name, name);
-         assign_string (&current_link_name,
-                        (next_long_link ? next_long_link
-                         : current_header->header.linkname));
+         
+         name = next_long_link;
+         if (! name)
+           {
+             memcpy (namebuf, h->linkname, sizeof h->linkname);
+             namebuf[sizeof h->linkname] = '\0';
+             name = namebuf;
+           }
+         assign_string (&current_link_name, name);
+
          next_long_link = next_long_name = 0;
          return HEADER_SUCCESS;
        }
This page took 0.026445 seconds and 4 git commands to generate.