blob: bf721c1af86a75937a0a891e5226d7fd54521899 [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
Andrew Geisslerd25ed322020-06-27 00:28:28 -050017Index: git/src/patchelf.cc
18===================================================================
19--- git.orig/src/patchelf.cc
20+++ git/src/patchelf.cc
21@@ -499,9 +499,19 @@ void ElfFile<ElfFileParamNames>::sortShd
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 {
Patrick Williamsc0f7c042017-02-23 20:41:17 -060025+ struct stat st;
26+ int fd;
27+
Andrew Geisslerd25ed322020-06-27 00:28:28 -050028 debug("writing %s\n", fileName.c_str());
29
30- int fd = open(fileName.c_str(), O_CREAT | O_TRUNC | O_WRONLY, 0777);
Patrick Williamsc0f7c042017-02-23 20:41:17 -060031+ if (stat(fileName.c_str(), &st) != 0)
32+ error("stat");
33+
34+ if (chmod(fileName.c_str(), 0600) != 0)
35+ error("chmod");
36+
Andrew Geisslerd25ed322020-06-27 00:28:28 -050037+ fd = open(fileName.c_str(), O_CREAT | O_TRUNC | O_WRONLY, 0777);
Patrick Williamsc0f7c042017-02-23 20:41:17 -060038+
39 if (fd == -1)
40 error("open");
41
Andrew Geisslerd25ed322020-06-27 00:28:28 -050042@@ -515,6 +525,10 @@ static void writeFile(std::string fileNa
Patrick Williamsc0f7c042017-02-23 20:41:17 -060043
44 if (close(fd) != 0)
45 error("close");
46+
47+ if (chmod(fileName.c_str(), st.st_mode) != 0)
48+ error("chmod");
49+
50 }
51
52