Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
2.11_2 13 Sep 2024 23:01:54 |
Cy Schubert (cy) |
security/wpa_supplicant: Sync driver_bsd.c with base system
Replace driver_bsd.c with the one from src. It utilizes facilities
and features already in FreeBSD. |
2.11_1 13 Sep 2024 22:44:39 |
Cy Schubert (cy) |
security/wpa_supplicant: Remove empty patch file |
2.11_1 22 Jul 2024 15:08:31 |
Cy Schubert (cy) |
security/wpa_supplicant: Add PASN option and make it default
PASN is enabled in the base FreeBSD wpa_supplicant. Enable it here
as well. |
2.11 21 Jul 2024 13:06:30 |
Cy Schubert (cy) |
security/wpa_supplicant: Update to 2.11 |
2.10_10 02 Jun 2024 05:31:09 |
Cy Schubert (cy) |
security/wpa_supplicant: Fix 15-CURRENT 108de784513d build
On FreeBSD systems without 108de784513d the old definition will be used
while on 108de784513d and newer the duplicate case will be removed.
Obtained from: src 676041c41ba5
Discussed with: imp |
2.10_10 29 Nov 2023 16:18:11 |
Cy Schubert (cy) |
security/wpa_supplicant*: ctrl_iface set sendbuf size
In order to avoid running into the default net.local.dgram.maxdgram
of 2K currently when calling sendto(2) try to set the sndbuf size to
the maximum ctrl message size.
The problem occured, e.g., when the scan_list result had enough BSSIDs
so the text output would exceed 2048 bytes.
Written by: bz
PR: 274990
Obtained from: https://reviews.freebsd.org/D42558 |
2.10_9 12 Sep 2023 05:51:23 |
Cy Schubert (cy) Author: R. Christian McDonald |
security/wpa_supplicant: wpa: Enable receiving priority tagged (VID 0) frames
Certain internet service providers transmit vlan 0 priority tagged
EAPOL frames from the ONT towards the residential gateway. VID 0
should be ignored, and the frame processed according to the priority
set in the 802.1P bits and the encapsulated EtherType (i.e. EAPOL).
The pcap filter utilized by l2_packet is inadquate for this use case.
Here we modify the pcap filter to accept both unencapsulated and
encapsulated (with VLAN 0) EAPOL EtherTypes. This preserves the
original filter behavior while also matching on encapsulated EAPOL.
Sponsored by: Rubicon Communications, LLC ("Netgate")
Reviewed by: cy
Obtained from: src bb5d6d14d81b
PR: 273696
MFH: 2023Q3 |
2.10_8 12 Sep 2023 05:51:10 |
Cy Schubert (cy) |
security/wpa_supplicant: Fix uninitialized packet pointer on error
The packet pointer (called packet) will remain uninitialized when
pcap_next_ex() returns an error. This occurs when the wlan
interface is shut down using ifconfig destroy. Adding a NULL
assignment to packet duplicates what pcap_next() does.
The reason we use pcap_next_ex() in this instance is because with
pacp_next() when we receive a null pointer if there was an error
or if no packets were read. With pcap_next_ex() we can differentiate
between an error and legitimately no packets were received.
PR: 270649, 273696
Obtained from: src 953efa5b200f
Reported by: Robert Morris <rtm@lcs.mit.edu>
MFH: 2023Q3 |
2.10_7 12 Sep 2023 05:50:43 |
Cy Schubert (cy) |
security/wpa_supplicant: driver_bsd.c: backout upstream IFF_ change and add
logging
This reverts the state to our old supplicant logic setting or clearing
IFF_UP if needed. In addition this adds logging for the cases in which
we do (not) change the interface state.
Depending on testing this seems to help bringing WiFi up or not log
any needed changes (which would be the expected wpa_supplicant logic
now). People should look out for ``(changed)`` log entries (at least
if debugging the issue; this way we will at least have data points).
There is a hypothesis still pondered that the entire IFF_UP toggling
only exploits a race in net80211 (see further discssussions for more
debugging and alternative solutions see D38508 and D38753).
That may also explain why the changes to the rc startup script [1] (Only the first 15 lines of the commit message are shown above ) |
2.10_6 28 Jun 2023 02:31:10 |
Cy Schubert (cy) |
security/wpa_supplicant: Fix for OpenSSL 3.0 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
2.10_6 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
2.10_6 03 Jul 2022 21:33:18 |
Cy Schubert (cy) |
security/wpa_supplicant-devel: Enable WEP by default
As of hostap 2.10, WEP is disabled by default. This of course is not a
bad thing but requires some planning and an announcment to remove WEP
support by default. At some point this option will default to off, to
coincide with the removal of WEP support from FreeBSD base.
MFH: 2022Q3 |
2.10_5 03 Jul 2022 21:33:18 |
Cy Schubert (cy) Author: J.R. Oldroyd |
wpa_supplicant* hostapd*: Resolve secondary VAP association issue
Association will fail on a secondary open unprotected VAP when the
primary VAP is configured for WPA. Examples of secondary VAPs are,
hotels, universities, and commodity routers' guest networks.
A broadly similar bug was discussed on Red Hat's bugzilla affecting
association to a D-Link DIR-842.
This suggests that as IEs were added to the 802.11 protocol the old code
was increasingly inadaquate to handle the additional IEs, not only a
secondary VAP.
This duplcates src commit 775611ea11db here in ports.
PR: 264238
Reported by: Jaskie <jiangjun12321@gmail.com>
"J.R. Oldroyd" <fbsd@opal.com>
Submitted by: "J.R. Oldroyd" <fbsd@opal.com>
MFH: 2022Q3 |
2.10_4 20 Jun 2022 14:29:09 |
Cy Schubert (cy) |
*/*: Restore a missing wpa BSD driver patch
These patches were removed to sync with base where in fact base was
missing these patches and base should have been synced with the ports.
PR: 264238
Fixes: b8477825c2dc42f6c595697a36f593c71f39fbad
c86f32d652eb9dd023049122d8ca37cb13ed07b6
MFH: 2022Q2 |
2.10_3 09 Jun 2022 21:58:23 |
Cy Schubert (cy) |
*/*: Restore non-IBSS part of wpa patches
b8477825c2dc42f6c595697a36f593c71f39fbad removed some non-IBSS patches.
Restore them. We only want to remove the patches that make IBSS use
ADHOC mode.
Fixes: b8477825c2dc42f6c595697a36f593c71f39fbad |
2.10_2 09 Jun 2022 20:41:39 |
Cy Schubert (cy) |
*/*: FreeBSD's WPA does support IBSS mode
FreeBSD's WPA does support IBSS mode. Remove the hack that forces ADHOC
mode when IBSS is requested. |
2.10_1 16 Apr 2022 15:55:56 |
Cy Schubert (cy) |
*/{wpa_supplicant*,hostapd*}: Fix wpa 100% CPU when USB wlan NIC removed
hostapd calls pcap_next(3) to read the next packet off the wlan interface.
pcap_next() returns a pointer to the packet header but does not indicate
success or failure. Unfortunately this results in an infinite loop (100%
CPU) when the wlan device disappears, i.e. when a USB wlan device is
manually removed or a USB error results in the device removal. However
pcap_next_ex(3) does return success or failure. To resolve this we use
pcap_next_ex(), forcing hostapd to exit when the error is encountered.
An error message is printed to syslog or stderr when debugging (-d flag)
is enabled. Unfortunately wpa_printf() only works when debugging is enabled.
PR: 253608
Reported by: Damjan Jovanovic <damjan.jov@gmail.com>,
bz (privately)
MFH: 2022Q2 |
2.10 31 Jan 2022 21:44:16 |
Cy Schubert (cy) |
*/*: Fix wpa_supplicant* and hostapd* EAPOL_TEST build
Fix EAPOL_TEST build. Local funcion os_fdatasync() is valid under
FreeBSD as fdatasync(2) is supported.
PR: 261636
Reported by: David Siebörger <drs-freebsd@sieborger.nom.za>
MFH: 2022Q1 |
2.10 17 Jan 2022 17:00:45 |
Cy Schubert (cy) |
security/wpa_supplicant: Update to 2.10
The long awaited hostapd 2.10 is finally here. |
2.9_11 14 Jun 2021 16:04:00 |
Cy Schubert (cy) |
*/*: Sync hostapd* and wpa_supplicant* with base ce276fe26d92010776
Use IFM_IEEE80211_ADHOC for now on FreeBSD for IBSS operation.
Base commit by adrian@ on Nov 26, 2015.
This commit syncs ports with base.
PR: 203086
Submitted by: avos
MFH: 2020Q2 |
2.9_10 07 Apr 2021 08:09:01 |
Mathieu Arnold (mat) |
One more small cleanup, forgotten yesterday.
Reported by: lwhsu |
2.9_10 06 Apr 2021 14:31:13 |
Mathieu Arnold (mat) |
all: Remove all other $FreeBSD keywords. |
2.9_10 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
2.9_10 17 Mar 2021 02:32:50 |
cy |
security/wpa_supplicant: fix for P2P provision vulnerability
Latest version available from: https://w1.fi/security/2021-1/
Vulnerability
A vulnerability was discovered in how wpa_supplicant processes P2P
(Wi-Fi Direct) provision discovery requests. Under a corner case
condition, an invalid Provision Discovery Request frame could end up
reaching a state where the oldest peer entry needs to be removed. With
a suitably constructed invalid frame, this could result in use
(read+write) of freed memory. This can result in an attacker within
radio range of the device running P2P discovery being able to cause
unexpected behavior, including termination of the wpa_supplicant process
and potentially code execution. (Only the first 15 lines of the commit message are shown above ) |
2.9_9 26 Jan 2021 20:15:28 |
cy |
Disable NDIS by default.
From src/bfc99943b04b46a6c1c885ce7bcc6f235b7422aa (brooks):
nids(4) was a clever idea in the early 2000's when the market was
flooded with 10/100 NICs with Windows-only drivers, but that hasn't
been the case for ages and the driver has had no meaningful maintenance
in ages. It only supports Windows-XP era drivers.
Therefore NDIS has been removed from 14-CURRENT. Those who still want or
need NDIS on older supported versions of FreeBSD can still enable the
options and rebuild the port. |
2.9_8 20 Jan 2021 17:14:16 |
cy |
This is the ports version of src commit
d70886d063166786ded0007af8cdcbf57b7b4827.
wpa_supplicant uses PF_ROUTE to return the routing table in order to
determine the length of the routing table buffer. As of 81728a538d24
wpa_supplicant is started before the routing table has been populated
resulting in the length of zero to be returned. This causes
wpa_supplicant to loop endlessly. (The workaround is to kill and restart
wpa_supplicant as by the time it is restarted the routing table is
populated.)
(Personally, I was not able to reproduce this unless wlan0 was a member of
lagg0. However, others experienced this problem on standalone wlan0.)
PR: 252844
Submitted by: shu <ankohuu _ outlook.com>
Reported by: shu <ankohuu _ outlook.com>
Reviewed by: cy
Differential Revision: https://reviews.freebsd.org/D28249 |
2.9_7 12 Jan 2021 04:27:16 |
cy |
Fix build on llvm10 and gcc.
PR: 252577
Reported by: David Sieborger <drs-freebsd _ sieborger.nom.za>
MFH: 2021Q1 |
2.9_7 30 Dec 2020 05:38:19 |
cy |
Add SIM_SIMULATOR and USIM_SIMULATOR options.
SIM_SIMULATOR and USIM_SIMULATOR options enable features that are used for
testing EAP-AKA and EAP-SIM authentication.
PR: 252276
Submitted by: Terry Burton <tez _ terryburton.co.uk> |
2.9_7 30 Dec 2020 05:38:16 |
cy |
Fix LLVM11 build.
According to https://reviews.llvm.org/D75758, some software may require
a pragma. |
2.9_7 26 Jun 2020 01:33:19 |
cy |
add MATCH option for CONFIG_MATCH_IFACE.
PR: 247177
Submitted by: greg@unrelenting.technology
Reported by: greg@unrelenting.technology
Tested by: swills |
2.9_6 09 Jun 2020 05:48:26 |
cy |
UPnP SUBSCRIBE misbehavior in hostapd WPS AP
As published by our hostapd upstream
Vulnerability
General security vulnerability in the way the callback URLs in the UPnP
SUBSCRIBE command are used were reported (VU#339275, CVE-2020-12695).
Some of the described issues may be applicable to the use of UPnP in WPS
AP mode functionality for supporting external registrars.
Such issues could allow a device connected to the local network (i.e., a
device that has been authorized to transmit packets in the network in
which the AP is located) could trigger the AP to initiate a HTTP
(TCP/IP) connection to an arbitrary URL, including connections to (Only the first 15 lines of the commit message are shown above ) |
2.9_5 20 May 2020 04:20:02 |
cy |
Chase src r361272:
Silence the once per second CTRL-EVENT-SCAN-FAILED errors when the WiFi
radio is disabled through the communication device toggle key (also known
as the RF raidio kill button). Only the CTRL-EVENT-DISCONNECTED will be
issued.
Submitted by: avg
Reported by: avg
MFH: 2020Q2 |
2.9_4 22 Apr 2020 19:54:39 |
leres |
security/wpa_supplicant: Simplify @comment logic by using OPTIONS_SUB
PR: 245809
Approved by: cy (maintainer) |
2.9_4 22 Apr 2020 03:37:45 |
leres |
security/wpa_supplicant: Add EAPOL_TEST option
Add an option option to builds and installs the eapol_test program.
Update/patch to solve new compilation errors that result with the
option enabled.
Note: Leaving the changes to Packet32.c out of the PR patch set as
it is not needed.
PR: 245809
Approved by: cy (maintainer) |
2.9_3 01 Apr 2020 01:02:12 |
cy |
Fix poudriere builds. |
2.9_2 30 Mar 2020 02:29:10 |
cy |
All other non-exclusive options should be default.
PR: 245099
Reported by: koobs |
2.9_1 30 Mar 2020 02:29:04 |
cy |
Add DBUS option.
PR: 245099
Submitted by: greg at unrelenting.technology |
2.9 22 Jan 2020 05:11:38 |
cy |
Add two new selectable options which allow the user to build
wpa_supplicant to parity with the same in base. The new options,
which are enabled in base are:
WPS_UPNP_DESC: Universal Plug and Play
IEEE8021X_EAPOL_DESC: EAP over LAN support |
2.9 22 Aug 2019 03:33:52 |
cy |
Update 2.8 --> 2.9 |
2.8 14 Aug 2019 12:16:13 |
mat |
Convert to UCL & cleanup pkg-message (categories s) |
2.8 17 Jun 2019 20:15:41 |
cy |
For users who build and install FreeBSD using WITHOUT_WIRELESS
simply altering /etc/rc.conf isn't enough to make use of the ports
versions of hostapd and wpa_supplicant. This is because the rc.d
scripts are not installed when WITHOUT_WIRELESS is specified as a
build option. This patch checks for the rc scripts existence and
if they do not exist, installs the ports versions of the same
scripts, which are added by this revision.
This patch does not change the package in any way and there is no way
to enable this outside of removal of hostapd or wpa_supplicant
(depending on the port). Users who build their own world using the
WITHOUT_WIRELESS flag will almost always not use binary packages. Hence
the automatic detection and install of the rc scripts. Making this an
option would IMO increase the number of bug reports due to people
inadvertently setting or not setting an option.
To enable this a person must:
1. buildworld and installworld -DWITHOUT_WIRELESS
2. Build and install the desired wpa_supplicant and/or hostapd port
on servers one wishes to install them on.
PR: 238571 |
2.8 16 May 2019 02:54:56 |
cy |
Completely remove a "nullfied" ifdef rather than making the code
unreachable. Though this is only a cosmetic change it syncs the port
with base commit r347642, making it easier to compare the two when
diagnosing problems in one or the other.
This was discovered tonight while reviewing some code following my
discussion regarding an issue lwhsu@ was having earlier today. |
2.8 16 May 2019 02:41:29 |
cy |
Remove the gratuitous redefinition of MIN to MINAB. This brings the
port in greater sync with base. |
2.8 16 May 2019 02:41:27 |
cy |
Resolve the following error discovered in DEVELOPER mode.
These options name have characters outside of [-_A-Z0-9]:
IKEv2 MSCHAPv2 |
2.8 16 May 2019 02:41:24 |
cy |
Remove the pleonastic initialization and test for eloop_initialized.
This change has no functional effect on the resulting package therefore
a PORTREVISION bump is not necessary.
Discovered while discussing wpa_supplicant with lwhsu@ today. |
2.8 22 Apr 2019 15:56:59 |
cy |
Update wpa_supplicant/hostapd 2.7 --> 2.8 |
2.7_1 09 Apr 2019 14:04:50 |
sunpoet |
Update devel/readline to 8.0
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://tiswww.case.edu/php/chet/readline/CHANGES
PR: 236156
Exp-run by: antoine |
2.7 06 Dec 2018 20:33:31 |
cy |
Add missing file that should have been in r486779. |
2.7 06 Dec 2018 20:11:21 |
cy |
Update 2.6 --> 2.7 |
2.6_3 17 Aug 2018 02:18:42 |
cy |
Pet portlint. |
2.6_3 17 Aug 2018 02:12:01 |
cy |
Switch to grouping of patches per site as suggested by mat@ in D16718.
Reported by: mat@ |
2.6_3 14 Aug 2018 20:21:58 |
cy |
WPA: Ignore unauthenticated encrypted EAPOL-Key data
Ignore unauthenticated encrypted EAPOL-Key data in supplicant
processing. When using WPA2, these are frames that have the Encrypted
flag set, but not the MIC flag.
When using WPA2, EAPOL-Key frames that had the Encrypted flag set but
not the MIC flag, had their data field decrypted without first verifying
the MIC. In case the data field was encrypted using RC4 (i.e., when
negotiating TKIP as the pairwise cipher), this meant that
unauthenticated but decrypted data would then be processed. An adversary
could abuse this as a decryption oracle to recover sensitive information
in the data field of EAPOL-Key messages (e.g., the group key).
(CVE-2018-14526)
Signed-off-by: Mathy Vanhoef <Mathy.Vanhoef@cs.kuleuven.be>
Security: CVE-2018-14526
Security: VuXML: 6bedc863-9fbe-11e8-945f-206a8a720317 |
2.6_2 01 Apr 2018 13:36:57 |
cy |
Fix build with LibreSSL 2.7
PR: 227173
Submitted by: brnrd@
MFH: 2018Q3 |
2.6_2 17 Oct 2017 05:33:03 |
cy |
Fix "make -s" by replacing ECHO with ECHO_CMD.
PR: 223056
Submitted by: Franco Fichtner <franco@opnsense.org> |
2.6_2 17 Oct 2017 02:17:29 |
cy |
This port is too important to be orphaned.
Take maintainership and provide a good home. |
2.6_2 16 Oct 2017 20:08:11 |
cy |
Add patch set 2017-1
A vulnerability was found in how a number of implementations can be
triggered to reconfigure WPA/WPA2/RSN keys (TK, GTK, or IGTK) by
replaying a specific frame that is used to manage the keys. Such
reinstallation of the encryption key can result in two different types
of vulnerabilities: disabling replay protection and significantly
reducing the security of encryption to the point of allowing frames to
be decrypted or some parts of the keys to be determined by an attacker
depending on which cipher is used.
Security: https://w1.fi/security/2017-1/ \
wpa-packet-number-reuse-with-replayed-messages.txt
Security: https://www.krackattacks.com/
MFH: 2017Q4 |
2.6_1 16 Oct 2017 20:05:41 |
cy |
Use https site.
MFH: 2017Q4 |
2.6_1 27 Jun 2017 13:46:53 |
sunpoet |
Update devel/readline to 7.0 patch 3
- Bump PORTREVISION for shlib change
Changes: https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES
https://lists.gnu.org/archive/html/bug-bash/2016-09/msg00107.html
https://lists.gnu.org/archive/html/bug-readline/2017-01/msg00002.html
Differential Revision: https://reviews.freebsd.org/D11172
PR: 219947
Exp-run by: antoine |
2.6 01 Jan 2017 03:45:13 |
sunpoet |
Remove BROKEN_FreeBSD_9
Approved by: portmgr (blanket) |
2.6 25 Dec 2016 03:15:14 |
jrm |
security/wpa_supplicant: Allow users of FreeBSD 9 with libre- or openssl
from ports to build the port.
FreeBSD 9 is EOL in less than a week. Now those stragglers still running
9.3 can get online to update in the next few days.
Approved by: AMDmi3 (mentor) swills (mentor)
Differential Revision: https://reviews.freebsd.org/D8875 |
2.6 20 Dec 2016 21:41:28 |
amdmi3 |
- Unbreak on 10.x+
Reported by: marino |
2.6 19 Dec 2016 14:26:48 |
amdmi3 |
- Mark BROKEN: does not build (undefined reference to `get_ie') |
2.6 17 Nov 2016 17:43:33 |
jrm |
security/wpa_supplicant: Update to version 2.6 and patch for LibreSSL support
Port changes:
- Remove patches that have been incorporated upstream
- Add patches for LibreSSL support
Approved by: AMDmi3 (mentor)
Differential Revision: https://reviews.freebsd.org/D8451 |
2.5_2 11 Nov 2016 17:26:49 |
amdmi3 |
- Add LICENSE
- Verbosify build
- Switch to options helpers |
2.5_2 15 Sep 2016 01:29:41 |
marino |
Release some of my ports back to the heap |
2.5_2 11 Sep 2016 17:05:34 |
marino |
security/wpa_supplicant: Add support for LibreSSL |
2.5_2 19 May 2016 21:12:08 |
marino |
security/wpa_supplicant: Add security patch set 2016-1
A vulnerability was found in how hostapd and wpa_supplicant writes the
configuration file update for the WPA/WPA2 passphrase parameter. If this
parameter has been updated to include control characters either through
a WPS operation (CVE-2016-4476) or through local configuration change
over the wpa_supplicant control interface (CVE-2016-4477), the resulting
configuration file may prevent the hostapd and wpa_supplicant from
starting when the updated file is used. In addition for wpa_supplicant,
it may be possible to load a local library file and execute code from
there with the same privileges under which the wpa_supplicant process
runs.
These patches were developed upstream and published as a response
to the security advisories CVE-2016-4476 and CVE-2016-4477.
PR: 209564
Requested by: Sevan Janiyan |
2.5_1 18 Apr 2016 21:05:28 |
marino |
security/wpa_supplicant: patch 4 CVE security advisories
These patches address the following:
CVE-2015-5310
CVE-2015-5314
CVE-2015-5315
CVE-2015-5316
These patches were developed upstream and published as a response
to the security advisories.
PR: 208482
Requested by: Jason Unovitch |
2.5 01 Apr 2016 14:25:18 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.
With hat: portmgr
Sponsored by: Absolight |
2.5 11 Oct 2015 22:52:59 |
marino |
security/wpa_supplicant: Upgrade version 2.4 => 2.5 |
2.4_4 12 Jul 2015 11:22:11 |
marino |
security/wpa_supplicant: Address security issue (2015-5)
There was a vulnerability to the WPS_NFC option which is off by default.
The port is being bumped anyway since people using that option will want
the latest version.
PR: 201432
Submitted by: Jason Unovitch |
2.4_3 02 Jun 2015 09:35:24 |
marino |
security/wpa_supplicant: Address 3 latest security advisories
These are combined upstream patches 2015-2, 2015-3, 2015-4
They address the following security advisories:
* CVE-2015-4141
* CVE-2015-4142
* CVE-2015-4143
* CVE-2015-4144
* CVE-2015-4145
* CVE-2015-4146
These advisories also apply to net/hostapd
PR: 200568
Submitted by: Jason Unovitch |
2.4_2 25 Apr 2015 14:02:13 |
marino |
security/wpa_supplicant: Add USES=CPE
I just released that I fixed a CVE bug but WPA Supllicant was never
provided any CPE information. Fix, bump, and reference previous PR.
PR: 199678 |
2.4_1 25 Apr 2015 06:19:17 |
marino |
security/wpa_supplicant: Fix CVE-2015-1863
PR: 199678
Submitted by: Jason Unovitch
Approved by: maintainer (marino) |
2.4 16 Mar 2015 20:45:17 |
marino |
security/wpa_supplicant: Upgrade version 2.3 => 2.4
See http://w1.fi/cgit/hostap/plain/wpa_supplicant/ChangeLog for list
of changes since version 2.3. |
2.3_3 19 Oct 2014 09:33:05 |
marino |
security/wpa_supplicant: Fix build on FreeBSD 11
On FreeBSD 11, the wpa_supplicant couldn't find the readline headers.
It turns out that Mk/Uses/readline.mk only augments LDFLAGS and CPPFLAGS,
but wpa_supplicant needs -I${LOCALBASE}/include add to CFLAGS. To fix
FreeBSD build, augment CFLAGS with value of CPPFLAGS in the makefile.
This wasn't an issue on DragonFly. Apparently wpa_supplicant found the
readline compatibility headers of libedit and used those instead.
reported by: pkg-fallout |
2.3_3 13 Oct 2014 19:34:48 |
marino |
security/wpa_supplicant: Fix mis-information in pkg-message |
2.3_3 13 Oct 2014 13:49:56 |
marino |
security/wpa_supplicant: Bring in BSD driver fix from DragonFly BSD
DragonFly adopted it's "new" IEEE 802.11 infrastructure from FreeBSD.
This introduced an additional isr_meshid_len field in the
ieee80211req_scan_result structure. It is necessary to include this
additional offset when calculating the address of the IE data buffer.
Imre Vadasz introduced this fix to DragonFly on 01 Sept 2014, but a
similar fix doesn't appear to be present in FreeBSD's base wpa_supplicant. |
2.3_2 13 Oct 2014 12:56:05 |
marino |
wpa/supplicant: Fix driver list with NDIS, take 2
It turns out the driver list was only showing "null" for NDIS when -h
(help) or an unknown switch was passed to wpa_supplicant. The cause is
that the NDIS driver is the only that that has to be initialized, and
the initialization wasn't occurring in the above case.
The fix is the move the NDIS driver initialization before the command
switches are examined in case wpa_supplicant aborts to usage early. |
2.3_1 13 Oct 2014 09:33:08 |
marino |
security/wpa_supplicant: Fix NDIS driver, privsep no longer default
The NDIS driver didn't build when privsep option was turned off. Moveover,
it didn't display the driver name correctly, so I figured out a patch
based on base's ndis driver code. Thirdly, when privsep option is turned
off, wpa_priv is not built, so let's handle that condition.
Finally, remove privsep from default options because it removes the
standard list of drivers and replaces it with privsep driver. |
2.3 12 Oct 2014 21:20:25 |
marino |
Revive security/wpa_supplicant after 6.5 years => version 2.3
This port was retired at version 0.3.8 because wpa_supplicant is
part of FreeBSD base. However, the last few releases have had a period
of only a few months, so the base is always going to be behind. DragonFly
is also affected, so I'm bringing the port back at the latest version.
It features the same patches as FreeBSD including the conversion to use
libutil's pidfile routines. There are some additional patches for
DragonFly support and to fix some bugs from the 9 Oct 2014 release.
The WPA Supplicant build system has been converted to ports options, and
there are dozens of them. I've set the defaults to match the
configuration in base and verified that it builds with all options
selected at once. |
0.3.8_2 25 Apr 2008 23:21:09 |
pav |
- Remove, it's ancient and newer version is included in base of all supported
releases
Suggested by: sam |
0.3.8_2 03 Feb 2007 01:55:47 |
markus |
Utilize PORTDOCS |
0.3.8_2 14 Sep 2006 17:37:55 |
brooks |
Drop maintainership. I'm not really interested in this now that we've
got it in the base. |
0.3.8_2 14 Sep 2006 17:37:05 |
brooks |
Fix build with openssl 0.9.8b.
PR: ports/102822
Submitted by: simon |
0.3.8_2 10 Sep 2006 23:32:56 |
kris |
Change IGNORE to BROKEN in previous |
0.3.8_2 10 Sep 2006 23:31:58 |
kris |
BROKEN on 7.x: Does not compile |
0.3.8_2 13 May 2006 04:15:53 |
edwin |
Remove USE_REINPLACE from all categories starting with S |
0.3.8_2 11 Nov 2005 19:03:22 |
brooks |
add SHA256 |
0.3.8_2 27 May 2005 01:10:30 |
brooks |
Add a new variable WITH_STATIC_SUPPLICANT to cause wpa_supplicant to be
linked staticly. This allows it to be used from devd at startup. [1]
Use LIB_DEPENDS instead of BUILD_DEPENDS for the libdnet depend since we
need it to run too. [2]
My changes differ from the submitted fixes.
Submitted by: Darren Pilgrim <dmp at bitfreak dot org> [1]
Pawel Worach <pawel dot worach at gmail dot com> [2] |
0.3.8_1 23 Apr 2005 03:29:45 |
brooks |
Fix wpa_cli. You need to pass all of the sockaddr, not just part of it.
Also be sure to keep the path null terminated as Stevens does.
While I'm here, take maintainership since I use this and seem to be
making most of the recent commits. |
0.3.8 16 Feb 2005 07:03:32 |
brooks |
- Update to 0.3.8. See ChangeLog for details.
- Install sample config file in etc/wpa_supplication.conf.sample instead
of DOCSDIR.
- Obey PREFIX.
- Follow move of binaries from bin to sbin.
Committed from a laptop running this version against an AP with WPA-PSK
and AES encription.
Submitted by: Yamamoto Shigeru <shigeru at iij dot ad dot jp>
PR: 75609 (by Rong-En Fan <rafan at infor dot org>) |
0.3.0_1 08 Jan 2005 19:06:48 |
brooks |
- Spell wpa_supplicant with two 'p's in PORTNAME
- Remove now unnecessicary DISTNAME
- Add net to CATEGORIES
- Ditch the pkg-plist file in favor of PLIST_FILES, there were only
three lines in the plist
- Make the patch files relative to WRKSRC so we can drop PATCH_ARGS
- Install some documentation
- Bump PORTREVISION for new docs |
0.3.0 13 Dec 2004 00:19:20 |
imp |
Add support for EAP. It might not work only in 802.1x mode, but should
work in WPA+802.1x.
Submitted by: sam |
0.3.0 12 Dec 2004 22:59:36 |
imp |
Fix grammatical error Kris pointed out.
Submitted by: kris |
0.3.0 12 Dec 2004 22:41:06 |
imp |
wpa_supplicant is only for current. |
0.3.0 12 Dec 2004 22:23:07 |
imp |
WPA supplicant daemon for 802.11 networks.
Submitted by: sam |