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