blob: 03b0d18a89f85fba3dd619732ad5df3220d4c7a5 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001From 7f1fd10cfebd5ea2f3e1938abe1bd1c4828164a7 Mon Sep 17 00:00:00 2001
Patrick Williamsc0f7c042017-02-23 20:41:17 -06002From: Fabio Berton <fabio.berton@ossystems.com.br>
3Date: Fri, 9 Sep 2016 16:00:42 -0300
4Subject: [PATCH] handle read-only files
Patrick Williamsc0f7c042017-02-23 20:41:17 -06005
6Patch from:
7https://github.com/darealshinji/patchelf/commit/40e66392bc4b96e9b4eda496827d26348a503509
8
Brad Bishopc342db32019-05-15 21:57:59 -04009Upstream-Status: Denied [https://github.com/NixOS/patchelf/pull/89]
Patrick Williamsc0f7c042017-02-23 20:41:17 -060010
11Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Brad Bishopc342db32019-05-15 21:57:59 -040012
Patrick Williamsc0f7c042017-02-23 20:41:17 -060013---
14 src/patchelf.cc | 16 +++++++++++++++-
15 1 file changed, 15 insertions(+), 1 deletion(-)
16
17diff --git a/src/patchelf.cc b/src/patchelf.cc
Brad Bishopc342db32019-05-15 21:57:59 -040018index 0b4965adff83..b5db2aef0e8a 100644
Patrick Williamsc0f7c042017-02-23 20:41:17 -060019--- a/src/patchelf.cc
20+++ b/src/patchelf.cc
Brad Bishopc342db32019-05-15 21:57:59 -040021@@ -497,7 +497,17 @@ void ElfFile<ElfFileParamNames>::sortShdrs()
Patrick Williamsc0f7c042017-02-23 20:41:17 -060022
Brad Bishopc342db32019-05-15 21:57:59 -040023 static void writeFile(std::string fileName, FileContents contents)
Patrick Williamsc0f7c042017-02-23 20:41:17 -060024 {
25- int fd = open(fileName.c_str(), O_TRUNC | O_WRONLY);
26+ struct stat st;
27+ int fd;
28+
29+ if (stat(fileName.c_str(), &st) != 0)
30+ error("stat");
31+
32+ if (chmod(fileName.c_str(), 0600) != 0)
33+ error("chmod");
34+
35+ fd = open(fileName.c_str(), O_TRUNC | O_WRONLY);
36+
37 if (fd == -1)
38 error("open");
39
Brad Bishopc342db32019-05-15 21:57:59 -040040@@ -511,6 +521,10 @@ static void writeFile(std::string fileName, FileContents contents)
Patrick Williamsc0f7c042017-02-23 20:41:17 -060041
42 if (close(fd) != 0)
43 error("close");
44+
45+ if (chmod(fileName.c_str(), st.st_mode) != 0)
46+ error("chmod");
47+
48 }
49
50