[oe-commits] [openembedded-core] 07/11: patch: reproducibility: Fix host umask leakage

git at git.openembedded.org git at git.openembedded.org
Tue Jan 8 19:55:36 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 2a2bbd755b330cd63f7f6e2f2b374a3ae065b37a
Author: Douglas Royds <douglas.royds at taitradio.com>
AuthorDate: Fri Dec 21 12:10:22 2018 +1300

    patch: reproducibility: Fix host umask leakage
    
    Some patch files create entirely new files, so their permissions are subject to
    the host umask. If such a file is later installed into a package with no change
    in permissions, it breaks the reproducibility of the package.
    
    This was observed on libpam, for instance: The patch file
    pam-security-abstract-securetty-handling.patch creates a new file
    (tty_secure.c). This file is later copied into the -dbg package with no change
    in permissions.
    
    Signed-off-by: Douglas Royds <douglas.royds at taitradio.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/patch.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/patch.bbclass b/meta/classes/patch.bbclass
index 3e0a181..cd241f1 100644
--- a/meta/classes/patch.bbclass
+++ b/meta/classes/patch.bbclass
@@ -153,6 +153,7 @@ python patch_do_patch() {
 patch_do_patch[vardepsexclude] = "PATCHRESOLVE"
 
 addtask patch after do_unpack
+do_patch[umask] = "022"
 do_patch[dirs] = "${WORKDIR}"
 do_patch[depends] = "${PATCHDEPENDENCY}"
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list