SHA256
1
0
forked from pool/vsftpd

Accepting request 106294 from network

- follow Systemd Packaging guidelines
  http://en.opensuse.org/openSUSE:Systemd_packaging_guidelines
- add $local_fs and $remote_fs to init script

- use the original tarball, because the bz2 repacking madness disables
  gpg --verify
- revert a part oc changes utf converting

- update to upstream 2.3.5:
  * Try and force glibc to cache zoneinfo files in an attempt to work around
    glibc parsing vulnerability. Thanks to Kingcope.
  * Only report CHMOD in SITE HELP if it's enabled. Thanks to Martin Schwenke
    <martin@meltin.net>.
  * Some simple fixes and cleanups from Thorsten Brehm <tbrehm@dspace.de>.
  * Only advertise "AUTH SSL" if one of SSLv2, SSLv3 is enabled. Thanks to
    steve willing <eiji-gravion@hotmail.com>.
  * Handle connect() failures properly. Thanks to Takayuki Nagata
    <tnagata@redhat.com>.
  * Add stronger checks for the configuration error of running with a
    writeable root directory inside a chroot(). This may bite people who
    carelessly turned on chroot_local_user but such is life.
- convert .changes file to unicode
- refresh vsftpd-2.0.4-conf.diff to vsftpd-2.3.5-conf.patch
- name patches explicitly without macro as per recommendations
- remove INSTALL file from binary package
- update license to GPL-2.0+
- mark /etc/sysconfig/SuSEfirewall2/services/vsftpd as config file

- fis copy/paste error in previous change

OBS-URL: https://build.opensuse.org/request/show/106294
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/vsftpd?expand=0&rev=28
This commit is contained in:
Stephan Kulow 2012-02-22 14:55:42 +00:00 committed by Git OBS Bridge
commit c2aa5ce3b4
8 changed files with 112 additions and 40 deletions

View File

@ -1,12 +0,0 @@
<services>
<service name="download_url">
<param name="protocol">https</param>
<param name="host">security.appspot.com</param>
<param name="path">/downloads/vsftpd-2.3.4.tar.gz</param>
</service>
<service name="verify_file">
<param name="file">_service:download_url:vsftpd-2.3.4.tar.gz</param>
<param name="verifier">sha256</param>
<param name="checksum">b466edf96437afa2b2bea6981d4ab8b0204b83ca0a2ac94bef6b62b42cc71a5a</param>
</service>
</services>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b466edf96437afa2b2bea6981d4ab8b0204b83ca0a2ac94bef6b62b42cc71a5a
size 187043

View File

@ -1,5 +1,7 @@
--- vsftpd.conf.orig Index: vsftpd.conf
+++ vsftpd.conf ===================================================================
--- vsftpd.conf.orig 2011-12-17 18:24:40.000000000 +0000
+++ vsftpd.conf 2011-12-23 17:16:43.000000000 +0000
@@ -4,23 +4,89 @@ @@ -4,23 +4,89 @@
# loosens things up a bit, to make the ftp daemon more usable. # loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults. # Please see vsftpd.conf.5 for all compiled in defaults.
@ -172,7 +174,7 @@
# Enable this and the server will recognise asynchronous ABOR requests. Not # Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it, # recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients. # however, may confuse older FTP clients.
@@ -77,38 +164,29 @@ connect_from_port_20=YES @@ -77,41 +164,29 @@ connect_from_port_20=YES
# predicted this attack and has always been safe, reporting the size of the # predicted this attack and has always been safe, reporting the size of the
# raw file. # raw file.
# ASCII mangling is a horrible feature of the protocol. # ASCII mangling is a horrible feature of the protocol.
@ -192,6 +194,9 @@
-# You may specify an explicit list of local users to chroot() to their home -# You may specify an explicit list of local users to chroot() to their home
-# directory. If chroot_local_user is YES, then this list becomes a list of -# directory. If chroot_local_user is YES, then this list becomes a list of
-# users to NOT chroot(). -# users to NOT chroot().
-# (Warning! chroot'ing can be very dangerous. If using chroot, make sure that
-# the user does not have write access to the top level directory within the
-# chroot)
-#chroot_local_user=YES -#chroot_local_user=YES
-#chroot_list_enable=YES -#chroot_list_enable=YES
-# (default follows) -# (default follows)

3
vsftpd-2.3.5.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d87ee2987df8f03e1dbe294905f7907b2798deb89c67ca965f6e2f60879e54f1
size 187691

View File

@ -1,3 +1,50 @@
-------------------------------------------------------------------
Tue Feb 21 10:51:51 UTC 2012 - mvyskocil@suse.cz
- follow Systemd Packaging guidelines
http://en.opensuse.org/openSUSE:Systemd_packaging_guidelines
- add $local_fs and $remote_fs to init script
-------------------------------------------------------------------
Wed Feb 15 16:41:15 UTC 2012 - mvyskocil@suse.cz
- use the original tarball, because the bz2 repacking madness disables
gpg --verify
- revert a part oc changes utf converting
-------------------------------------------------------------------
Fri Dec 23 17:48:04 UTC 2011 - andreas.stieger@gmx.de
- update to upstream 2.3.5:
* Try and force glibc to cache zoneinfo files in an attempt to work around
glibc parsing vulnerability. Thanks to Kingcope.
* Only report CHMOD in SITE HELP if it's enabled. Thanks to Martin Schwenke
<martin@meltin.net>.
* Some simple fixes and cleanups from Thorsten Brehm <tbrehm@dspace.de>.
* Only advertise "AUTH SSL" if one of SSLv2, SSLv3 is enabled. Thanks to
steve willing <eiji-gravion@hotmail.com>.
* Handle connect() failures properly. Thanks to Takayuki Nagata
<tnagata@redhat.com>.
* Add stronger checks for the configuration error of running with a
writeable root directory inside a chroot(). This may bite people who
carelessly turned on chroot_local_user but such is life.
- convert .changes file to unicode
- refresh vsftpd-2.0.4-conf.diff to vsftpd-2.3.5-conf.patch
- name patches explicitly without macro as per recommendations
- remove INSTALL file from binary package
- update license to GPL-2.0+
- mark /etc/sysconfig/SuSEfirewall2/services/vsftpd as config file
-------------------------------------------------------------------
Sat Nov 26 16:31:20 UTC 2011 - crrodriguez@opensuse.org
- fis copy/paste error in previous change
-------------------------------------------------------------------
Fri Nov 25 22:14:14 UTC 2011 - crrodriguez@opensuse.org
- Add systemd unit
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Sep 22 11:17:04 UTC 2011 - mvyskocil@suse.cz Thu Sep 22 11:17:04 UTC 2011 - mvyskocil@suse.cz
@ -483,9 +530,9 @@ Mon Jul 28 15:55:40 CEST 2003 - mmj@suse.de
Fri May 30 12:48:45 CEST 2003 - mmj@suse.de Fri May 30 12:48:45 CEST 2003 - mmj@suse.de
- Update to vsftpd-1.2.0 including: - Update to vsftpd-1.2.0 including:
· IPv6 support, so drop our patch ˇ IPv6 support, so drop our patch
· Many bugfixes and tunings ˇ Many bugfixes and tunings
· Build fixes ˇ Build fixes
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 6 16:34:30 CET 2003 - mmj@suse.de Thu Mar 6 16:34:30 CET 2003 - mmj@suse.de

View File

@ -24,8 +24,8 @@
# #
### BEGIN INIT INFO ### BEGIN INIT INFO
# Provides: ftpd # Provides: ftpd
# Required-Start: $syslog network-remotefs # Required-Start: $local_fs $remote_fs $syslog network-remotefs
# Required-Stop: $syslog network-remotefs # Required-Stop: $local_fs $remote_fs $syslog network-remotefs
# Default-Start: 3 5 # Default-Start: 3 5
# Default-Stop: 0 1 2 6 # Default-Stop: 0 1 2 6
# Description: very secure ftp daemon # Description: very secure ftp daemon

10
vsftpd.service Normal file
View File

@ -0,0 +1,10 @@
[Unit]
Description=Vsftpd ftp daemon
After=network.target
[Service]
Type=forking
ExecStart=/usr/sbin/vsftpd /etc/vsftpd.conf
[Install]
WantedBy=multi-user.target

View File

@ -1,7 +1,7 @@
# #
# spec file for package vsftpd # spec file for package vsftpd
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -15,20 +15,22 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via http://bugs.opensuse.org/
# #
# norootforbuild
Name: vsftpd Name: vsftpd
BuildRequires: openssl-devel pam-devel BuildRequires: openssl-devel
BuildRequires: pam-devel
%if 0%{?suse_version} < 1001 %if 0%{?suse_version} < 1001
BuildRequires: libcap BuildRequires: libcap
%else %else
BuildRequires: libcap-devel BuildRequires: libcap-devel
%endif %endif
Version: 2.3.4 %if 0%{?suse_version} > 1140
Release: 1 BuildRequires: systemd
%endif
Version: 2.3.5
Release: 0
Summary: Very Secure FTP Daemon - Written from Scratch Summary: Very Secure FTP Daemon - Written from Scratch
License: GPLv2+ License: GPL-2.0+
Group: Productivity/Networking/Ftp/Servers Group: Productivity/Networking/Ftp/Servers
Url: https://security.appspot.com/vsftpd.html Url: https://security.appspot.com/vsftpd.html
Source: %name-%version.tar.gz Source: %name-%version.tar.gz
@ -38,17 +40,19 @@ Source3: %name.init
Source4: README.SUSE Source4: README.SUSE
Source5: %name.xml Source5: %name.xml
Source6: %name.firewall Source6: %name.firewall
Patch1: %name-2.0.4-lib64.diff Source7: vsftpd.service
Patch3: %name-2.0.4-xinetd.diff Patch1: vsftpd-2.0.4-lib64.diff
Patch4: %name-2.0.4-enable-ssl.patch Patch3: vsftpd-2.0.4-xinetd.diff
Patch5: %name-2.0.4-dmapi.patch Patch4: vsftpd-2.0.4-enable-ssl.patch
Patch6: %name-2.0.5-vuser.patch Patch5: vsftpd-2.0.4-dmapi.patch
Patch7: %name-2.0.5-enable-debuginfo.patch Patch6: vsftpd-2.0.5-vuser.patch
Patch8: %name-2.0.5-utf8-log-names.patch Patch7: vsftpd-2.0.5-enable-debuginfo.patch
Patch9: %name-2.0.4-conf.diff Patch8: vsftpd-2.0.5-utf8-log-names.patch
Patch9: vsftpd-2.3.5-conf.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
Provides: ftp-server Provides: ftp-server
PreReq: %insserv_prereq /usr/sbin/useradd PreReq: %insserv_prereq /usr/sbin/useradd
%{?systemd_requires}
Requires: logrotate Requires: logrotate
%description %description
@ -94,25 +98,43 @@ install -d $RPM_BUILD_ROOT/%_datadir/omc/svcinfo.d/
install -D -m 644 %SOURCE5 $RPM_BUILD_ROOT/%_datadir/omc/svcinfo.d/ install -D -m 644 %SOURCE5 $RPM_BUILD_ROOT/%_datadir/omc/svcinfo.d/
install -d $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ install -d $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/
install -m 644 %{S:6} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/%{name} install -m 644 %{S:6} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/%{name}
%if 0%{?suse_version} > 1140
install -D -m 0644 %SOURCE7 %{buildroot}/%{_unitdir}/%{name}.service
%endif
%pre %pre
/usr/sbin/useradd -r -o -g nogroup -s /bin/false -c "Secure FTP User" -d /var/lib/empty ftpsecure 2> /dev/null || : /usr/sbin/useradd -r -o -g nogroup -s /bin/false -c "Secure FTP User" -d /var/lib/empty ftpsecure 2> /dev/null || :
%if 0%{?suse_version} > 1140
%service_add_pre %{name}.service
%endif
%preun %preun
%stop_on_removal %name %stop_on_removal %name
%if 0%{?suse_version} > 1140
%service_del_preun %{name}.service
%endif
%post %post
%{fillup_and_insserv -f %{name}} %{fillup_and_insserv -f %{name}}
%if 0%{?suse_version} > 1140
%service_add_post %{name}.service
%endif
%postun %postun
%insserv_cleanup %insserv_cleanup
%restart_on_update %name %restart_on_update %name
%if 0%{?suse_version} > 1140
%service_del_postun %{name}.service
%endif
%clean %clean
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
%files %files
%defattr(-,root,root) %defattr(-,root,root)
%if 0%{?suse_version} > 1140
%{_unitdir}/%{name}.service
%endif
/usr/sbin/%name /usr/sbin/%name
/usr/sbin/rc%name /usr/sbin/rc%name
%config /etc/init.d/%name %config /etc/init.d/%name
@ -124,9 +146,9 @@ rm -rf $RPM_BUILD_ROOT
%config(noreplace) /etc/logrotate.d/%name %config(noreplace) /etc/logrotate.d/%name
%_mandir/man5/%name.conf.* %_mandir/man5/%name.conf.*
%_mandir/man8/%name.* %_mandir/man8/%name.*
%doc INSTALL BUGS AUDIT Changelog LICENSE README README.security %doc BUGS AUDIT Changelog LICENSE README README.security
%doc REWARD SPEED TODO SECURITY TUNING SIZE FAQ EXAMPLE COPYING %doc REWARD SPEED TODO SECURITY TUNING SIZE FAQ EXAMPLE COPYING
%doc README.SUSE %doc README.SUSE
%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/%{name} %config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/%{name}
%changelog %changelog