unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob dfaeca080daf942dbb64c5d6fdc7abfe595e6256 1304 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 dfaeca080 ...
found dfaeca080 in https://yhetil.org/guix-devel/20170218231340.7c8127da@scratchpost.org/
found 6edd676e3 in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 6edd676e38c2ea5b81353eb96ed3638af7703b4e	gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch

applying [1/1] https://yhetil.org/guix-devel/20170218231340.7c8127da@scratchpost.org/
diff --git a/gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch b/gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch
index 6edd676e3..dfaeca080 100644

1:10: trailing whitespace.
         
Checking patch gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch...
Applied patch gnu/packages/patches/ntfs-3g-CVE-2017-0358.patch cleanly.
warning: 1 line adds whitespace errors.

index at:
100644 dfaeca080daf942dbb64c5d6fdc7abfe595e6256	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).