summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/patchelf/patchelf/handle-read-only-files.patch
blob: b755a263a4ae5bf4434e86788b982e1f08b09a78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
From 682fb48c137b687477008b68863c2a0b73ed47d1 Mon Sep 17 00:00:00 2001
From: Fabio Berton <fabio.berton@ossystems.com.br>
Date: Fri, 9 Sep 2016 16:00:42 -0300
Subject: [PATCH] handle read-only files

Patch from:
https://github.com/darealshinji/patchelf/commit/40e66392bc4b96e9b4eda496827d26348a503509

Upstream-Status: Denied [https://github.com/NixOS/patchelf/pull/89]

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>

---
 src/patchelf.cc | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

Index: git/src/patchelf.cc
===================================================================
--- git.orig/src/patchelf.cc
+++ git/src/patchelf.cc
@@ -534,9 +534,19 @@ void ElfFile<ElfFileParamNames>::sortShd
 
 static void writeFile(const std::string & fileName, const FileContents & contents)
 {
+    struct stat st;
+    int fd;
+
     debug("writing %s\n", fileName.c_str());
 
-    int fd = open(fileName.c_str(), O_CREAT | O_TRUNC | O_WRONLY, 0777);
+    if (stat(fileName.c_str(), &st) != 0)
+        error("stat");
+
+    if (chmod(fileName.c_str(), 0600) != 0)
+        error("chmod");
+
+    fd = open(fileName.c_str(), O_CREAT | O_TRUNC | O_WRONLY, 0777);
+
     if (fd == -1)
         error("open");
 
@@ -551,8 +561,6 @@ static void writeFile(const std::string
         bytesWritten += portion;
     }
 
-    if (close(fd) >= 0)
-        return;
     /*
      * Just ignore EINTR; a retry loop is the wrong thing to do.
      *
@@ -561,9 +569,11 @@ static void writeFile(const std::string
      * http://utcc.utoronto.ca/~cks/space/blog/unix/CloseEINTR
      * https://sites.google.com/site/michaelsafyan/software-engineering/checkforeintrwheninvokingclosethinkagain
      */
-    if (errno == EINTR)
-        return;
-    error("close");
+    if ((close(fd) < 0) && errno != EINTR)
+        error("close");
+
+    if (chmod(fileName.c_str(), st.st_mode) != 0)
+        error("chmod");
 }