|
From: <abe...@us...> - 2017-05-26 13:09:09
|
Revision: 8343
http://sourceforge.net/p/astlinux/code/8343
Author: abelbeck
Date: 2017-05-26 13:09:07 +0000 (Fri, 26 May 2017)
Log Message:
-----------
vsftpd, follow Debian's lead and set 'seccomp_sandbox=NO' as the default, fixes issues with x86_64 and 3.16.x kernel
Ref: https://anonscm.debian.org/cgit/collab-maint/vsftpd.git/commit/debian/patches?id=05a1777b2aa2d5ece9f8d3eb5e21965037b97da7
Added Paths:
-----------
branches/1.0/package/vsftpd/vsftpd-0010-seccomp-sandbox.patch
Removed Paths:
-------------
branches/1.0/package/vsftpd/vsftpd-0002-dont-force-largefile.patch
Deleted: branches/1.0/package/vsftpd/vsftpd-0002-dont-force-largefile.patch
===================================================================
--- branches/1.0/package/vsftpd/vsftpd-0002-dont-force-largefile.patch 2017-05-25 22:42:13 UTC (rev 8342)
+++ branches/1.0/package/vsftpd/vsftpd-0002-dont-force-largefile.patch 2017-05-26 13:09:07 UTC (rev 8343)
@@ -1,27 +0,0 @@
-[PATCH] vsftpd: don't enforce largefile support
-
-In Buildroot we enable/disable largefile support globally, and pass the
-correct defines in CFLAGS, so don't enforce it unconditionally.
-
-Signed-off-by: Peter Korsgaard <ja...@su...>
----
- sysutil.c | 6 ------
- 1 file changed, 6 deletions(-)
-
-Index: vsftpd-2.3.2/sysutil.c
-===================================================================
---- vsftpd-2.3.2.orig/sysutil.c
-+++ vsftpd-2.3.2/sysutil.c
-@@ -17,12 +17,6 @@
- #include "tunables.h"
- #include "sysdeputil.h"
-
--/* Activate 64-bit file support on Linux/32bit plus others */
--#define _FILE_OFFSET_BITS 64
--#define _LARGEFILE_SOURCE 1
--#define _LARGEFILE64_SOURCE 1
--#define _LARGE_FILES 1
--
- /* For Linux, this adds nothing :-) */
- #include "port/porting_junk.h"
-
Added: branches/1.0/package/vsftpd/vsftpd-0010-seccomp-sandbox.patch
===================================================================
--- branches/1.0/package/vsftpd/vsftpd-0010-seccomp-sandbox.patch (rev 0)
+++ branches/1.0/package/vsftpd/vsftpd-0010-seccomp-sandbox.patch 2017-05-26 13:09:07 UTC (rev 8343)
@@ -0,0 +1,19 @@
+Description: Change default of seccomp_sandbox
+Author: Jörg Frings-Fürst <de...@jf...>
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=735357
+Last-Update: 2015-05-25
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+Index: trunk/tunables.c
+===================================================================
+--- trunk.orig/tunables.c
++++ trunk/tunables.c
+@@ -226,7 +226,7 @@ tunables_load_defaults()
+ tunable_isolate_network = 1;
+ tunable_ftp_enable = 1;
+ tunable_http_enable = 0;
+- tunable_seccomp_sandbox = 1;
++ tunable_seccomp_sandbox = 0;
+ tunable_allow_writeable_chroot = 0;
+
+ tunable_accept_timeout = 60;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|