소스 검색

cmArchiveWrite: Clear xattr and acl from entries (#11958)

When reading archive entries from disk strip any xattr and acl entry
headers that may have been loaded from the filesystem (e.g. selinux).
These fields are only useful for backup tools and not for packaging and
distribution of software.  Furthermore, the GNU tar 1.15.1 on at least
one Linux distribution treats unknown entry headers as an error rather
than a warning.  Therefore avoiding such fields is necessary for archive
portability.

Suggested-by: Tim Kientzle <[email protected]>
Brad King 14 년 전
부모
커밋
e8558efa01
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      Source/cmArchiveWrite.cxx

+ 3 - 0
Source/cmArchiveWrite.cxx

@@ -236,6 +236,9 @@ bool cmArchiveWrite::AddFile(const char* file,
     this->Error += archive_error_string(this->Disk);
     return false;
     }
+  // Clear acl and xattr fields not useful for distribution.
+  archive_entry_acl_clear(e);
+  archive_entry_xattr_clear(e);
   if(archive_write_header(this->Archive, e) != ARCHIVE_OK)
     {
     this->Error = "archive_write_header: ";