unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob e09e39ed8c6a8771c49e13882052f8056b8dfb64 1327 bytes (raw)
name: gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch 	 # note: path name is non-authoritative(*)

 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
 
Fix CVE-2017-0358:
http://seclists.org/oss-sec/2017/q1/259
This patch was copied from the above URL.

diff -ur ntfs-3g.old/src/lowntfs-3g.c ntfs-3g/src/lowntfs-3g.c
--- ntfs-3g.old/src/lowntfs-3g.c	2017-02-09 15:01:04.074331542 -0500
+++ ntfs-3g/src/lowntfs-3g.c	2017-02-09 15:06:35.757580937 -0500
@@ -3827,13 +3827,14 @@
 	struct stat st;
 	pid_t pid;
 	const char *cmd = "/sbin/modprobe";
+	char *env = (char*)NULL;
 	struct timespec req = { 0, 100000000 };   /* 100 msec */
 	fuse_fstype fstype;
         
 	if (!stat(cmd, &st) && !geteuid()) {
 		pid = fork();
 		if (!pid) {
-			execl(cmd, cmd, "fuse", NULL);
+			execle(cmd, cmd, "fuse", NULL, &env);
 			_exit(1);
 		} else if (pid != -1)
 			waitpid(pid, NULL, 0);
diff -ur ntfs-3g.old/src/ntfs-3g.c ntfs-3g/src/ntfs-3g.c
--- ntfs-3g.old/src/ntfs-3g.c	2017-02-09 15:01:04.074331542 -0500
+++ ntfs-3g/src/ntfs-3g.c	2017-02-09 15:06:26.077252571 -0500
@@ -3612,13 +3612,14 @@
 	struct stat st;
 	pid_t pid;
 	const char *cmd = "/sbin/modprobe";
+	char *env = (char*)NULL;
 	struct timespec req = { 0, 100000000 };   /* 100 msec */
 	fuse_fstype fstype;
 	
 	if (!stat(cmd, &st) && !geteuid()) {
 		pid = fork();
 		if (!pid) {
-			execl(cmd, cmd, "fuse", NULL);
+			execle(cmd, cmd, "fuse", NULL, &env);
 			_exit(1);
 		} else if (pid != -1)
 			waitpid(pid, NULL, 0);

debug log:

solving e09e39ed8 ...
found e09e39ed8 in https://yhetil.org/guix-devel/87bmuboxqf.fsf@openmailbox.org/

applying [1/1] https://yhetil.org/guix-devel/87bmuboxqf.fsf@openmailbox.org/
diff --git a/gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch b/gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch
new file mode 100644
index 000000000..e09e39ed8

1:15: space before tab in indent.
 	struct stat st;
1:16: space before tab in indent.
 	pid_t pid;
1:17: space before tab in indent.
 	const char *cmd = "/sbin/modprobe";
1:19: space before tab in indent.
 	struct timespec req = { 0, 100000000 };   /* 100 msec */
1:20: space before tab in indent.
 	fuse_fstype fstype;
Checking patch gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch...
Applied patch gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch cleanly.
warning: squelched 19 whitespace errors
warning: 24 lines add whitespace errors.

index at:
100644 e09e39ed8c6a8771c49e13882052f8056b8dfb64	gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).