]> granicus.if.org Git - python/commitdiff
Issue #9065: no longer use "root" as the default for the
authorLars Gustäbel <lars@gustaebel.de>
Mon, 4 Oct 2010 15:18:47 +0000 (15:18 +0000)
committerLars Gustäbel <lars@gustaebel.de>
Mon, 4 Oct 2010 15:18:47 +0000 (15:18 +0000)
uname and gname field.

If tarfile creates a new archive and adds a file with a
uid/gid that doesn't have a corresponding name on the
system (e.g. because the user/group account was deleted) it
uses the empty string in the uname/gname field now instead
of "root". Using "root" as the default was a bad idea
because on extraction the uname/gname fields are supposed
to override the uid/gid fields. So, all archive members
with nameless uids/gids belonged to the root user after
extraction.

Lib/tarfile.py
Misc/NEWS

index 8c330c680a444d1fde61e8e001d5160d4faca10a..cc7514d0a63b8d977a7420ea7cf333569d8d2745 100644 (file)
@@ -945,8 +945,8 @@ class TarInfo(object):
         self.chksum = 0         # header checksum
         self.type = REGTYPE     # member type
         self.linkname = ""      # link name
-        self.uname = "root"     # user name
-        self.gname = "root"     # group name
+        self.uname = ""         # user name
+        self.gname = ""         # group name
         self.devmajor = 0       # device major number
         self.devminor = 0       # device minor number
 
@@ -1124,8 +1124,8 @@ class TarInfo(object):
             info.get("type", REGTYPE),
             stn(info.get("linkname", ""), 100, encoding, errors),
             info.get("magic", POSIX_MAGIC),
-            stn(info.get("uname", "root"), 32, encoding, errors),
-            stn(info.get("gname", "root"), 32, encoding, errors),
+            stn(info.get("uname", ""), 32, encoding, errors),
+            stn(info.get("gname", ""), 32, encoding, errors),
             itn(info.get("devmajor", 0), 8, format),
             itn(info.get("devminor", 0), 8, format),
             stn(info.get("prefix", ""), 155, encoding, errors)
index ed544df6e9c3b3fef4bb4c6b332fc288c556a047..1bf3acd67a5bb6ad562c4a7d5435c3b4f080cad8 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -88,6 +88,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #9065: tarfile no longer uses "root" as the default for the uname and
+  gname field.
+
 - Issue #8980: Fixed a failure in distutils.command check that was shadowed
   by an environment that does not have docutils. Patch by Arfrever.