|
|
e28318 |
%define rcver %{nil}
|
|
|
e28318 |
%define snapshot %{nil}
|
|
|
e28318 |
|
|
|
e28318 |
%global _hardened_build 1
|
|
|
e28318 |
|
|
|
e28318 |
Summary: WPA/WPA2/IEEE 802.1X Supplicant
|
|
|
e28318 |
Name: wpa_supplicant
|
|
|
e28318 |
Epoch: 1
|
|
|
e28318 |
Version: 2.0
|
|
|
e28318 |
Release: 14%{?dist}
|
|
|
e28318 |
License: BSD
|
|
|
e28318 |
Group: System Environment/Base
|
|
|
e28318 |
Source0: http://w1.fi/releases/%{name}-%{version}%{rcver}%{snapshot}.tar.gz
|
|
|
e28318 |
Source1: build-config
|
|
|
e28318 |
Source2: %{name}.conf
|
|
|
e28318 |
Source3: %{name}.service
|
|
|
e28318 |
Source4: %{name}.sysconfig
|
|
|
e28318 |
Source6: %{name}.logrotate
|
|
|
e28318 |
|
|
|
e28318 |
%define build_gui 1
|
|
|
e28318 |
%if 0%{?rhel} >= 1
|
|
|
e28318 |
%define build_gui 0
|
|
|
e28318 |
%endif
|
|
|
e28318 |
|
|
|
e28318 |
# distro specific customization and not suitable for upstream,
|
|
|
e28318 |
# works around busted drivers
|
|
|
e28318 |
Patch0: wpa_supplicant-assoc-timeout.patch
|
|
|
e28318 |
# ensures that debug output gets flushed immediately to help diagnose driver
|
|
|
e28318 |
# bugs, not suitable for upstream
|
|
|
e28318 |
Patch1: wpa_supplicant-flush-debug-output.patch
|
|
|
e28318 |
# disto specific customization for log paths, not suitable for upstream
|
|
|
e28318 |
Patch2: wpa_supplicant-dbus-service-file-args.patch
|
|
|
e28318 |
# quiet an annoying and frequent syslog message
|
|
|
e28318 |
Patch3: wpa_supplicant-quiet-scan-results-message.patch
|
|
|
e28318 |
# allow more private key encryption algorithms
|
|
|
e28318 |
Patch5: wpa_supplicant-openssl-more-algs.patch
|
|
|
e28318 |
# distro specific customization for Qt4 build tools, not suitable for upstream
|
|
|
e28318 |
Patch6: wpa_supplicant-gui-qt4.patch
|
|
|
e28318 |
# Fix libnl3 includes path
|
|
|
e28318 |
Patch7: libnl3-includes.patch
|
|
|
e28318 |
# Less aggressive roaming; signal strength is wildly variable
|
|
|
e28318 |
Patch8: rh837402-less-aggressive-roaming.patch
|
|
|
e28318 |
# Add missing command-line options to man page, also filed upstream
|
|
|
e28318 |
Patch9: rh948453-man-page.patch
|
|
|
e28318 |
# Don't evict current AP from PMKSA cache when it's large
|
|
|
e28318 |
Patch10: rh1032758-fix-pmksa-cache-entry-clearing.patch
|
|
|
e28318 |
# CVE-2014-3686
|
|
|
e28318 |
Patch11: 0001-Add-os_exec-helper-to-run-external-programs.patch
|
|
|
e28318 |
Patch12: 0002-wpa_cli-Use-os_exec-for-action-script-execution.patch
|
|
|
e28318 |
|
|
|
e28318 |
URL: http://w1.fi/wpa_supplicant/
|
|
|
e28318 |
|
|
|
e28318 |
%if %{build_gui}
|
|
|
e28318 |
BuildRequires: qt-devel >= 4.0
|
|
|
e28318 |
%endif
|
|
|
e28318 |
BuildRequires: openssl-devel
|
|
|
e28318 |
BuildRequires: readline-devel
|
|
|
e28318 |
BuildRequires: dbus-devel
|
|
|
e28318 |
BuildRequires: libnl3-devel
|
|
|
e28318 |
BuildRequires: systemd-units
|
|
|
e28318 |
BuildRequires: docbook-utils
|
|
|
e28318 |
Requires(post): systemd-sysv
|
|
|
e28318 |
Requires(post): systemd-units
|
|
|
e28318 |
Requires(preun): systemd-units
|
|
|
e28318 |
Requires(postun): systemd-units
|
|
|
e28318 |
|
|
|
e28318 |
%description
|
|
|
e28318 |
wpa_supplicant is a WPA Supplicant for Linux, BSD and Windows with support
|
|
|
e28318 |
for WPA and WPA2 (IEEE 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA
|
|
|
e28318 |
component that is used in the client stations. It implements key negotiation
|
|
|
e28318 |
with a WPA Authenticator and it controls the roaming and IEEE 802.11
|
|
|
e28318 |
authentication/association of the wlan driver.
|
|
|
e28318 |
|
|
|
e28318 |
%if %{build_gui}
|
|
|
e28318 |
|
|
|
e28318 |
%package gui
|
|
|
e28318 |
Summary: Graphical User Interface for %{name}
|
|
|
e28318 |
Group: Applications/System
|
|
|
e28318 |
|
|
|
e28318 |
%description gui
|
|
|
e28318 |
Graphical User Interface for wpa_supplicant written using QT
|
|
|
e28318 |
|
|
|
e28318 |
%endif
|
|
|
e28318 |
|
|
|
e28318 |
%prep
|
|
|
e28318 |
%setup -q -n %{name}-%{version}%{rcver}
|
|
|
e28318 |
%patch0 -p1 -b .assoc-timeout
|
|
|
e28318 |
%patch1 -p1 -b .flush-debug-output
|
|
|
e28318 |
%patch2 -p1 -b .dbus-service-file
|
|
|
e28318 |
%patch3 -p1 -b .quiet-scan-results-msg
|
|
|
e28318 |
%patch5 -p1 -b .more-openssl-algs
|
|
|
e28318 |
%patch6 -p1 -b .qt4
|
|
|
e28318 |
%patch7 -p1 -b .libnl3
|
|
|
e28318 |
%patch8 -p1 -b .rh837402-less-aggressive-roaming
|
|
|
e28318 |
%patch9 -p1 -b .man-page
|
|
|
e28318 |
%patch10 -p1 -b .pmksa-clear-fix
|
|
|
e28318 |
%patch11 -p1 -b .CVE-2014-3686-1
|
|
|
e28318 |
%patch12 -p1 -b .CVE-2014-3686-2
|
|
|
e28318 |
|
|
|
e28318 |
%build
|
|
|
e28318 |
pushd wpa_supplicant
|
|
|
e28318 |
cp %{SOURCE1} .config
|
|
|
e28318 |
CFLAGS="${CFLAGS:-%optflags} -fPIE -DPIE" ; export CFLAGS ;
|
|
|
e28318 |
CXXFLAGS="${CXXFLAGS:-%optflags} -fPIE -DPIE" ; export CXXFLAGS ;
|
|
|
e28318 |
LDFLAGS="${LDFLAGS:-%optflags} -pie -Wl,-z,now" ; export LDFLAGS ;
|
|
|
e28318 |
# yes, BINDIR=_sbindir
|
|
|
e28318 |
BINDIR="%{_sbindir}" ; export BINDIR ;
|
|
|
e28318 |
LIBDIR="%{_libdir}" ; export LIBDIR ;
|
|
|
e28318 |
make %{_smp_mflags}
|
|
|
e28318 |
%if %{build_gui}
|
|
|
e28318 |
QTDIR=%{_libdir}/qt4 make wpa_gui-qt4 %{_smp_mflags}
|
|
|
e28318 |
%endif
|
|
|
e28318 |
make eapol_test
|
|
|
e28318 |
popd
|
|
|
e28318 |
|
|
|
e28318 |
pushd wpa_supplicant/doc/docbook
|
|
|
e28318 |
make
|
|
|
e28318 |
popd
|
|
|
e28318 |
|
|
|
e28318 |
%install
|
|
|
e28318 |
# init scripts
|
|
|
e28318 |
install -D -m 0755 %{SOURCE3} %{buildroot}/%{_unitdir}/%{name}.service
|
|
|
e28318 |
install -D -m 0644 %{SOURCE4} %{buildroot}/%{_sysconfdir}/sysconfig/%{name}
|
|
|
e28318 |
install -D -m 0644 %{SOURCE6} %{buildroot}/%{_sysconfdir}/logrotate.d/%{name}
|
|
|
e28318 |
|
|
|
e28318 |
# config
|
|
|
e28318 |
install -D -m 0600 %{SOURCE2} %{buildroot}/%{_sysconfdir}/%{name}/%{name}.conf
|
|
|
e28318 |
|
|
|
e28318 |
# binary
|
|
|
e28318 |
install -d %{buildroot}/%{_sbindir}
|
|
|
e28318 |
install -m 0755 %{name}/wpa_passphrase %{buildroot}/%{_sbindir}
|
|
|
e28318 |
install -m 0755 %{name}/wpa_cli %{buildroot}/%{_sbindir}
|
|
|
e28318 |
install -m 0755 %{name}/wpa_supplicant %{buildroot}/%{_sbindir}
|
|
|
e28318 |
install -m 0755 %{name}/eapol_test %{buildroot}/%{_sbindir}
|
|
|
e28318 |
install -D -m 0644 %{name}/dbus/dbus-wpa_supplicant.conf %{buildroot}/%{_sysconfdir}/dbus-1/system.d/wpa_supplicant.conf
|
|
|
e28318 |
install -D -m 0644 %{name}/dbus/fi.w1.wpa_supplicant1.service %{buildroot}/%{_datadir}/dbus-1/system-services/fi.w1.wpa_supplicant1.service
|
|
|
e28318 |
install -D -m 0644 %{name}/dbus/fi.epitest.hostap.WPASupplicant.service %{buildroot}/%{_datadir}/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service
|
|
|
e28318 |
|
|
|
e28318 |
%if %{build_gui}
|
|
|
e28318 |
# gui
|
|
|
e28318 |
install -d %{buildroot}/%{_bindir}
|
|
|
e28318 |
install -m 0755 %{name}/wpa_gui-qt4/wpa_gui %{buildroot}/%{_bindir}
|
|
|
e28318 |
%endif
|
|
|
e28318 |
|
|
|
e28318 |
# running
|
|
|
e28318 |
mkdir -p %{buildroot}/%{_localstatedir}/run/%{name}
|
|
|
e28318 |
|
|
|
e28318 |
# man pages
|
|
|
e28318 |
install -d %{buildroot}%{_mandir}/man{5,8}
|
|
|
e28318 |
install -m 0644 %{name}/doc/docbook/*.8 %{buildroot}%{_mandir}/man8
|
|
|
e28318 |
install -m 0644 %{name}/doc/docbook/*.5 %{buildroot}%{_mandir}/man5
|
|
|
e28318 |
|
|
|
e28318 |
# some cleanup in docs and examples
|
|
|
e28318 |
rm -f %{name}/doc/.cvsignore
|
|
|
e28318 |
rm -rf %{name}/doc/docbook
|
|
|
e28318 |
chmod -R 0644 %{name}/examples/*.py
|
|
|
e28318 |
|
|
|
e28318 |
%post
|
|
|
e28318 |
if [ $1 -eq 1 ] ; then
|
|
|
e28318 |
# Initial installation
|
|
|
e28318 |
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
|
|
e28318 |
fi
|
|
|
e28318 |
|
|
|
e28318 |
%preun
|
|
|
e28318 |
if [ $1 -eq 0 ] ; then
|
|
|
e28318 |
# Package removal, not upgrade
|
|
|
e28318 |
/bin/systemctl --no-reload disable wpa_supplicant.service > /dev/null 2>&1 || :
|
|
|
e28318 |
/bin/systemctl stop wpa_supplicant.service > /dev/null 2>&1 || :
|
|
|
e28318 |
fi
|
|
|
e28318 |
|
|
|
e28318 |
%postun
|
|
|
e28318 |
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
|
|
e28318 |
if [ $1 -ge 1 ] ; then
|
|
|
e28318 |
# Package upgrade, not uninstall
|
|
|
e28318 |
/bin/systemctl try-restart wpa_supplicant.service >/dev/null 2>&1 || :
|
|
|
e28318 |
fi
|
|
|
e28318 |
|
|
|
e28318 |
%triggerun -- wpa_supplicant < 0.7.3-10
|
|
|
e28318 |
# Save the current service runlevel info
|
|
|
e28318 |
# User must manually run systemd-sysv-convert --apply wpa_supplicant
|
|
|
e28318 |
# to migrate them to systemd targets
|
|
|
e28318 |
/usr/bin/systemd-sysv-convert --save wpa_supplicant >/dev/null 2>&1 ||:
|
|
|
e28318 |
|
|
|
e28318 |
# Run these because the SysV package being removed won't do them
|
|
|
e28318 |
/sbin/chkconfig --del wpa_supplicant >/dev/null 2>&1 || :
|
|
|
e28318 |
/bin/systemctl try-restart wpa_supplicant.service >/dev/null 2>&1 || :
|
|
|
e28318 |
|
|
|
e28318 |
|
|
|
e28318 |
%files
|
|
|
e28318 |
%doc COPYING %{name}/ChangeLog README %{name}/eap_testing.txt %{name}/todo.txt %{name}/wpa_supplicant.conf %{name}/examples
|
|
|
e28318 |
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
|
|
|
e28318 |
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
|
|
|
e28318 |
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
|
|
e28318 |
%{_unitdir}/%{name}.service
|
|
|
e28318 |
%{_sysconfdir}/dbus-1/system.d/%{name}.conf
|
|
|
e28318 |
%{_datadir}/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service
|
|
|
e28318 |
%{_datadir}/dbus-1/system-services/fi.w1.wpa_supplicant1.service
|
|
|
e28318 |
%{_sbindir}/wpa_passphrase
|
|
|
e28318 |
%{_sbindir}/wpa_supplicant
|
|
|
e28318 |
%{_sbindir}/wpa_cli
|
|
|
e28318 |
%{_sbindir}/eapol_test
|
|
|
e28318 |
%dir %{_localstatedir}/run/%{name}
|
|
|
e28318 |
%dir %{_sysconfdir}/%{name}
|
|
|
e28318 |
%{_mandir}/man8/*
|
|
|
e28318 |
%{_mandir}/man5/*
|
|
|
e28318 |
|
|
|
e28318 |
%if %{build_gui}
|
|
|
e28318 |
%files gui
|
|
|
e28318 |
%{_bindir}/wpa_gui
|
|
|
e28318 |
%endif
|
|
|
e28318 |
|
|
|
e28318 |
%changelog
|
|
|
e28318 |
* Wed Oct 22 2014 Dan Williams <dcbw@redhat.com> - 1:2.0-14
|
|
|
e28318 |
- Use os_exec() for action script execution (CVE-2014-3686)
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Jul 14 2014 Thomas Haller
|
|
|
e28318 |
- cleanup spec file and remove obsolete libeap parts (rh #1085240)
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:2.0-12
|
|
|
e28318 |
- Mass rebuild 2014-01-24
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Jan 20 2014 Dan Williams <dcbw@redhat.com> - 1:2.0-11
|
|
|
e28318 |
- Add eapol_test manpage (rh #948453)
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:2.0-10
|
|
|
e28318 |
- Mass rebuild 2013-12-27
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Dec 16 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-9
|
|
|
e28318 |
- Don't disconnect when PMKSA cache gets too large (rh #1032758) (rh #1016707)
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Dec 16 2013 Dan Winship <danw@redhat.com> - 1:2.0-8
|
|
|
e28318 |
- Fill in some gaps in the man pages (rh #948453)
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Jul 10 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-6
|
|
|
e28318 |
- Enable full RELRO/PIE/PIC for wpa_supplicant and libeap
|
|
|
e28318 |
- Fix changelog dates
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Jul 10 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-5
|
|
|
e28318 |
- Build and package eapol_test (rh #638218)
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Jul 10 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-4
|
|
|
e28318 |
- Disable WiMAX libeap hack for RHEL
|
|
|
e28318 |
|
|
|
e28318 |
* Wed May 15 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-3
|
|
|
e28318 |
- Enable HT (802.11n) for AP mode
|
|
|
e28318 |
|
|
|
e28318 |
* Tue May 7 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-2
|
|
|
e28318 |
- Use hardened build macros and ensure they apply to libeap too
|
|
|
e28318 |
|
|
|
e28318 |
* Mon May 6 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-1
|
|
|
e28318 |
- Update to 2.0
|
|
|
e28318 |
- Be less aggressive when roaming due to signal strength changes (rh #837402)
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Apr 1 2013 Dan Williams <dcbw@redhat.com> - 1:1.1-1
|
|
|
e28318 |
- Update to 1.1
|
|
|
e28318 |
- Be less aggressive when roaming due to signal strength changes
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.0-4
|
|
|
e28318 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Jan 20 2013 Dan Horák <dan@danny.cz> - 1:1.0-3
|
|
|
e28318 |
- rebuilt again for fixed soname in libnl3
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Jan 20 2013 Kalev Lember <kalevlember@gmail.com> - 1:1.0-2
|
|
|
e28318 |
- Rebuilt for libnl3
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Aug 29 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-1
|
|
|
e28318 |
- Enable lightweight AP mode support
|
|
|
e28318 |
- Enable P2P (WiFi Direct) support
|
|
|
e28318 |
- Enable RSN IBSS/AdHoc support
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.0-0.5
|
|
|
e28318 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
e28318 |
|
|
|
e28318 |
* Tue May 1 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.4
|
|
|
e28318 |
- Update to wpa_supplicant 1.0-rc3
|
|
|
e28318 |
- Fix systemd target dependencies (rh #815091)
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Mar 2 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.3
|
|
|
e28318 |
- Update to latest 1.0 git snapshot
|
|
|
e28318 |
- Rebuild against libnl3
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Feb 2 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.2
|
|
|
e28318 |
- Fix driver fallback for non nl80211-based drivers (rh #783712)
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Jan 10 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.1
|
|
|
e28318 |
- Update to 1.0-rc1 + git
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Sep 9 2011 Tom Callaway <spot@fedoraproject.org> - 1:0.7.3-11
|
|
|
e28318 |
- add missing systemd scriptlets
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Sep 8 2011 Tom Callaway <spot@fedoraproject.org> - 1:0.7.3-10
|
|
|
e28318 |
- convert to systemd
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Jul 27 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-9
|
|
|
e28318 |
- Fix various crashes with D-Bus interface (rh #678625) (rh #725517)
|
|
|
e28318 |
|
|
|
e28318 |
* Tue May 3 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-8
|
|
|
e28318 |
- Don't crash when trying to access invalid properties via D-Bus (rh #678625)
|
|
|
e28318 |
|
|
|
e28318 |
* Mon May 2 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-7
|
|
|
e28318 |
- Make examples read-only to avoid erroneous python dependency (rh #687952)
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Apr 19 2011 Bill Nottingham <notting@redhat.com> - 1:0.7.3-6
|
|
|
e28318 |
- Fix EAP patch to only apply when building libeap
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Mar 25 2011 Bill Nottingham <notting@redhat.com> - 1:0.7.3-5
|
|
|
e28318 |
- Add libeap/libeap-devel subpackge for WiMAX usage
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.7.3-4
|
|
|
e28318 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Jan 11 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-3
|
|
|
e28318 |
- Enable EAP-TNC (rh #659038)
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Dec 15 2010 Dan Williams <dcbw@redhat.com> - 1:0.7.3-2
|
|
|
e28318 |
- Enable the bgscan_simple plugin
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Dec 8 2010 Dan Williams <dcbw@redhat.com> - 1:0.7.3-1
|
|
|
e28318 |
- Update to 0.7.3
|
|
|
e28318 |
- Drop upstreamed and backported patches
|
|
|
e28318 |
- Drop support for Qt3
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Oct 7 2010 Peter Lemenkov <lemenkov@gmail.com> - 1:0.6.8-11
|
|
|
e28318 |
- Added comments to some patches (see rhbz #226544#c17)
|
|
|
e28318 |
- Shortened %%install section a bit
|
|
|
e28318 |
|
|
|
e28318 |
* Thu May 13 2010 Dan Williams <dcbw@redhat.com> - 1:0.6.8-10
|
|
|
e28318 |
- Remove prereq on chkconfig
|
|
|
e28318 |
- Build GUI with qt4 for rawhide (rh #537105)
|
|
|
e28318 |
|
|
|
e28318 |
* Thu May 6 2010 Dan Williams <dcbw@redhat.com> - 1:0.6.8-9
|
|
|
e28318 |
- Fix crash when interfaces are removed (like suspend/resume) (rh #589507)
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Jan 6 2010 Dan Williams <dcbw@redhat.com> - 1:0.6.8-8
|
|
|
e28318 |
- Fix handling of newer PKCS#12 files (rh #541924)
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Nov 29 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-7
|
|
|
e28318 |
- Fix supplicant initscript return value (rh #521807)
|
|
|
e28318 |
- Fix race when connecting to WPA-Enterprise/802.1x-enabled access points (rh #508509)
|
|
|
e28318 |
- Don't double-scan when attempting to associate
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1:0.6.8-6
|
|
|
e28318 |
- rebuilt with new openssl
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.6.8-5
|
|
|
e28318 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
e28318 |
|
|
|
e28318 |
* Wed May 13 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-4
|
|
|
e28318 |
- Let D-Bus clients know when the supplicant is scanning
|
|
|
e28318 |
|
|
|
e28318 |
* Tue May 12 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-3
|
|
|
e28318 |
- Ensure the supplicant starts and ends with clean driver state
|
|
|
e28318 |
- Handle driver disconnect spammage by forcibly clearing SSID
|
|
|
e28318 |
- Don't switch access points unless the current association is dire (rh #493745)
|
|
|
e28318 |
|
|
|
e28318 |
* Tue May 12 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-2
|
|
|
e28318 |
- Avoid creating bogus Ad-Hoc networks when forcing the driver to disconnect (rh #497771)
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Mar 9 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-1
|
|
|
e28318 |
- Update to latest upstream release
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Feb 25 2009 Colin Walters <walters@verbum.org> - 1:0.6.7-4
|
|
|
e28318 |
- Add patch from upstream to suppress unrequested replies, this
|
|
|
e28318 |
quiets a dbus warning.
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Feb 6 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.7-3
|
|
|
e28318 |
- Fix scan result retrieval in very dense wifi environments
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Feb 6 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.7-2
|
|
|
e28318 |
- Ensure that drivers don't retry association when they aren't supposed to
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Jan 30 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.7-1
|
|
|
e28318 |
- Fix PEAP connections to Windows Server 2008 authenticators (rh #465022)
|
|
|
e28318 |
- Stop supplicant on uninstall (rh #447843)
|
|
|
e28318 |
- Suppress scan results message in logs (rh #466601)
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 1:0.6.4-3
|
|
|
e28318 |
- rebuild with new openssl
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Oct 15 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.4-2
|
|
|
e28318 |
- Handle encryption keys correctly when switching 802.11 modes (rh #459399)
|
|
|
e28318 |
- Better scanning behavior on resume from suspend/hibernate
|
|
|
e28318 |
- Better interaction with newer kernels and drivers
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Aug 27 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.4-1
|
|
|
e28318 |
- Update to 0.6.4
|
|
|
e28318 |
- Remove 'hostap', 'madwifi', and 'prism54' drivers; use standard 'wext' instead
|
|
|
e28318 |
- Drop upstreamed patches
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Jun 10 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-6
|
|
|
e28318 |
- Fix 802.11a frequency bug
|
|
|
e28318 |
- Always schedule specific SSID scans to help find hidden APs
|
|
|
e28318 |
- Properly switch between modes on mac80211 drivers
|
|
|
e28318 |
- Give adhoc connections more time to assocate
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Mar 10 2008 Christopher Aillon <caillon@redhat.com> - 1:0.6.3-5
|
|
|
e28318 |
- BuildRequires qt3-devel
|
|
|
e28318 |
|
|
|
e28318 |
* Sat Mar 8 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-4
|
|
|
e28318 |
- Fix log file path in service config file
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Mar 6 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-3
|
|
|
e28318 |
- Don't start the supplicant by default when installed (rh #436380)
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Mar 4 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-2
|
|
|
e28318 |
- Fix a potential use-after-free in the D-Bus byte array demarshalling code
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Mar 3 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-1
|
|
|
e28318 |
- Update to latest development release; remove upstreamed patches
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Feb 22 2008 Dan Williams <dcbw@redhat.com> 1:0.5.7-23
|
|
|
e28318 |
- Fix gcc 4.3 rebuild issues
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:0.5.7-22
|
|
|
e28318 |
- Autorebuild for GCC 4.3
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Dec 25 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-21
|
|
|
e28318 |
- Backport 'frequency' option for Ad-Hoc network configs
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Dec 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-20
|
|
|
e28318 |
- Fix LSB initscript header to ensure 'messagebus' is started first (rh #244029)
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Dec 6 2007 Dan Williams <dcbw@redhat.com> - 1:0.5.7-19
|
|
|
e28318 |
- Fix two leaks when signalling state and scan results (rh #408141)
|
|
|
e28318 |
- Add logrotate config file (rh #404181)
|
|
|
e28318 |
- Add new LSB initscript header to initscript with correct deps (rh #244029)
|
|
|
e28318 |
- Move other runtime arguments to /etc/sysconfig/wpa_supplicant
|
|
|
e28318 |
- Start after messagebus service (rh #385191)
|
|
|
e28318 |
- Fix initscript 'condrestart' command (rh #217281)
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Dec 4 2007 Matthias Clasen <mclasen@redhat.com> - 1:0.5.7-18
|
|
|
e28318 |
- Rebuild against new openssl
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Dec 4 2007 Ville Skyttä <ville.skytta at iki.fi> - 1:0.5.7-17
|
|
|
e28318 |
- Group: Application/System -> Applications/System in -gui.
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Nov 13 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-16
|
|
|
e28318 |
- Add IW_ENCODE_TEMP patch for airo driver and Dynamic WEP
|
|
|
e28318 |
- Fix error in wpa_supplicant-0.5.7-ignore-dup-ca-cert-addition.patch that
|
|
|
e28318 |
caused the last error to not be printed
|
|
|
e28318 |
- Fix wpa_supplicant-0.5.7-ignore-dup-ca-cert-addition.patch to ignore
|
|
|
e28318 |
duplicate cert additions for all certs and keys
|
|
|
e28318 |
- Change license to BSD due to linkage against OpenSSL since there is no
|
|
|
e28318 |
OpenSSL exception in the GPLv2 license text that upstream ships
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Oct 28 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-15
|
|
|
e28318 |
- Fix Dynamic WEP associations with mac80211-based drivers
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Oct 28 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-14
|
|
|
e28318 |
- Don't error an association on duplicate CA cert additions
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Oct 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-13
|
|
|
e28318 |
- Correctly set the length of blobs added via the D-Bus interface
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Oct 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-12
|
|
|
e28318 |
- Fix conversion of byte arrays to strings by ensuring the buffer is NULL
|
|
|
e28318 |
terminated after conversion
|
|
|
e28318 |
|
|
|
e28318 |
* Sat Oct 20 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-11
|
|
|
e28318 |
- Add BLOB support to the D-Bus interface
|
|
|
e28318 |
- Fix D-Bus interface permissions so that only root can use the wpa_supplicant
|
|
|
e28318 |
D-Bus interface
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Oct 9 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-10
|
|
|
e28318 |
- Don't segfault with dbus control interface enabled and invalid network
|
|
|
e28318 |
interface (rh #310531)
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Sep 25 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-9
|
|
|
e28318 |
- Always allow explicit wireless scans triggered from a control interface
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Sep 20 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-8
|
|
|
e28318 |
- Change system bus activation file name to work around D-Bus bug that fails
|
|
|
e28318 |
to launch services unless their .service file is named the same as the
|
|
|
e28318 |
service itself
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Aug 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-7
|
|
|
e28318 |
- Make SIGUSR1 change debug level on-the-fly; useful in combination with
|
|
|
e28318 |
the -f switch to log output to /var/log/wpa_supplicant.log
|
|
|
e28318 |
- Stop stripping binaries on install so we get debuginfo packages
|
|
|
e28318 |
- Remove service start requirement for interfaces & devices from sysconfig file,
|
|
|
e28318 |
since wpa_supplicant's D-Bus interface is now turned on
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Aug 17 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-6
|
|
|
e28318 |
- Fix compilation with RPM_OPT_FLAGS (rh #249951)
|
|
|
e28318 |
- Make debug output to logfile a runtime option
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Aug 17 2007 Christopher Aillon <caillon@redhat.com> - 0.5.7-5
|
|
|
e28318 |
- Update the license tag
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Jun 19 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-4
|
|
|
e28318 |
- Fix initscripts to use -Dwext by default, be more verbose on startup
|
|
|
e28318 |
(rh #244511)
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Jun 4 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-3
|
|
|
e28318 |
- Fix buffer overflow by removing syslog patch (#rh242455)
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Apr 9 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-2
|
|
|
e28318 |
- Add patch to send output to syslog
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Mar 15 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-1
|
|
|
e28318 |
- Update to 0.5.7 stable release
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Oct 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.9-1
|
|
|
e28318 |
- Update to 0.4.9 for WE-21 fixes, remove upstreamed patches
|
|
|
e28318 |
- Don't package doc/ because they aren't actually wpa_supplicant user documentation,
|
|
|
e28318 |
and becuase it pulls in perl
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.4.8-10.1
|
|
|
e28318 |
- rebuild
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Apr 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-10
|
|
|
e28318 |
- Add fix for madwifi and WEP (wpa_supplicant/hostap bud #140) (#rh190075#)
|
|
|
e28318 |
- Fix up madwifi-ng private ioctl()s for r1331 and later
|
|
|
e28318 |
- Update madwifi headers to r1475
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Apr 25 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-9
|
|
|
e28318 |
- Enable Wired driver, PKCS12, and Smartcard options (#rh189805#)
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Apr 11 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-8
|
|
|
e28318 |
- Fix control interface key obfuscation a bit
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Apr 2 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-7
|
|
|
e28318 |
- Work around older & incorrect drivers that return null-terminated SSIDs
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Mar 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-6
|
|
|
e28318 |
- Add patch to make orinoco happy with WEP keys
|
|
|
e28318 |
- Enable Prism54-specific driver
|
|
|
e28318 |
- Disable ipw-specific driver; ipw2x00 should be using WEXT instead
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Mar 3 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-5
|
|
|
e28318 |
- Increase association timeout, mainly for drivers that don't
|
|
|
e28318 |
fully support WPA ioctls yet
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Mar 3 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-4
|
|
|
e28318 |
- Add additional BuildRequires #rh181914#
|
|
|
e28318 |
- Add prereq on chkconfig #rh182905# #rh182906#
|
|
|
e28318 |
- Own /var/run/wpa_supplicant and /etc/wpa_supplicant #rh183696#
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Mar 1 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-3
|
|
|
e28318 |
- Install wpa_passphrase too #rh183480#
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Feb 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-2
|
|
|
e28318 |
- Don't expose private data on the control interface unless requested
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Feb 24 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-1
|
|
|
e28318 |
- Downgrade to 0.4.8 stable release rather than a dev release
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Feb 12 2006 Dan Williams <dcbw@redhat.com> - 0.5.1-3
|
|
|
e28318 |
- Documentation cleanup (Terje Rosten <terje.rosten@ntnu.no>)
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Feb 12 2006 Dan Williams <dcbw@redhat.com> - 0.5.1-2
|
|
|
e28318 |
- Move initscript to /etc/rc.d/init.d
|
|
|
e28318 |
|
|
|
e28318 |
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.5.1-1.2
|
|
|
e28318 |
- bump again for double-long bug on ppc(64)
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.5.1-1.1
|
|
|
e28318 |
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Feb 5 2006 Dan Williams <dcbw@redhat.com> 0.5.1-1
|
|
|
e28318 |
- Update to 0.5.1
|
|
|
e28318 |
- Add WE auth fallback to actually work with older drivers
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Jan 26 2006 Dan Williams <dcbw@redhat.com> 0.4.7-2
|
|
|
e28318 |
- Bring package into Fedora Core
|
|
|
e28318 |
- Add ap_scan control interface patch
|
|
|
e28318 |
- Enable madwifi-ng driver
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Jan 15 2006 Douglas E. Warner <silfreed@silfreed.net> 0.4.7-1
|
|
|
e28318 |
- upgrade to 0.4.7
|
|
|
e28318 |
- added package w/ wpa_gui in it
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Nov 14 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.6-1
|
|
|
e28318 |
- upgrade to 0.4.6
|
|
|
e28318 |
- adding ctrl interface changes recommended
|
|
|
e28318 |
by Hugo Paredes <hugo.paredes@e-know.org>
|
|
|
e28318 |
|
|
|
e28318 |
* Sun Oct 9 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.5-1
|
|
|
e28318 |
- upgrade to 0.4.5
|
|
|
e28318 |
- updated config file wpa_supplicant is built with
|
|
|
e28318 |
especially, the ipw2100 driver changed to just ipw
|
|
|
e28318 |
and enabled a bunch more EAP
|
|
|
e28318 |
- disabled dist tag
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Jun 30 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.2-3
|
|
|
e28318 |
- fix typo in init script
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Jun 30 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.2-2
|
|
|
e28318 |
- fixing init script using fedora-extras' template
|
|
|
e28318 |
- removing chkconfig default startup
|
|
|
e28318 |
|
|
|
e28318 |
* Tue Jun 21 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.2-1
|
|
|
e28318 |
- upgrade to 0.4.2
|
|
|
e28318 |
- new sample conf file that will use any unrestricted AP
|
|
|
e28318 |
- make sysconfig config entry
|
|
|
e28318 |
- new BuildRoot for Fedora Extras
|
|
|
e28318 |
- adding dist tag to Release
|
|
|
e28318 |
|
|
|
e28318 |
* Fri May 06 2005 Douglas E. Warner <silfreed@silfreed.net> 0.3.8-1
|
|
|
e28318 |
- upgrade to 0.3.8
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Feb 10 2005 Douglas E. Warner <silfreed@silfreed.net> 0.3.6-2
|
|
|
e28318 |
- compile ipw driver in
|
|
|
e28318 |
|
|
|
e28318 |
* Wed Feb 09 2005 Douglas E. Warner <silfreed@silfreed.net> 0.3.6-1
|
|
|
e28318 |
- upgrade to 0.3.6
|
|
|
e28318 |
|
|
|
e28318 |
* Thu Dec 23 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-4
|
|
|
e28318 |
- fixing init script
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Dec 20 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-3
|
|
|
e28318 |
- fixing init script
|
|
|
e28318 |
- adding post/preun items to add/remove via chkconfig
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Dec 20 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-2
|
|
|
e28318 |
- adding sysV scripts
|
|
|
e28318 |
|
|
|
e28318 |
* Mon Dec 20 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-1
|
|
|
e28318 |
- Initial RPM release.
|
|
|
e28318 |
|