notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
All times are UTC
Ukraine
The safest procedure: change your FreshPorts password. Anything you had set before Friday March 24 2023 09:49:20 UTC should be changed. You can read more here: SQL inejection issues fixed and FreshSource code fixes Sorry about the extra work for you.
All known SQL injection issues patched. There is no evidence it was exploited. That doesn’t mean it wasn’t. Please change your password.
non port: security/wpa_supplicant/Makefile
SVNWeb

Number of commits found: 75

Wed, 7 Sep 2022
[ 21:10 Stefan Eßer (se) search for other commits by this committer ]    commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  b7f0544  (Only the first 10 of 27931 ports in this commit are shown above. View all ports for this commit)
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 View all of this commit message)
Sun, 3 Jul 2022
[ 21:33 Cy Schubert (cy) search for other commits by this committer Author: J.R. Oldroyd ]    commit hash:b3916c7a8d2599e99fabdc1735b095ff5a9f9381  commit hash:b3916c7a8d2599e99fabdc1735b095ff5a9f9381  commit hash:b3916c7a8d2599e99fabdc1735b095ff5a9f9381  b3916c7 
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
[ 21:33 Cy Schubert (cy) search for other commits by this committer ]    commit hash:fb0e9b4ce90da94c2943639f3588d25c76778a31  commit hash:fb0e9b4ce90da94c2943639f3588d25c76778a31  commit hash:fb0e9b4ce90da94c2943639f3588d25c76778a31  fb0e9b4 
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
Mon, 20 Jun 2022
[ 14:29 Cy Schubert (cy) search for other commits by this committer ]    commit hash:05a849eec9d949b3de32e464570cefbabcd64702  commit hash:05a849eec9d949b3de32e464570cefbabcd64702  commit hash:05a849eec9d949b3de32e464570cefbabcd64702  05a849e 
*/*: 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
Thu, 9 Jun 2022
[ 21:58 Cy Schubert (cy) search for other commits by this committer ]    commit hash:c86f32d652eb9dd023049122d8ca37cb13ed07b6  commit hash:c86f32d652eb9dd023049122d8ca37cb13ed07b6  commit hash:c86f32d652eb9dd023049122d8ca37cb13ed07b6  c86f32d 
*/*: 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
[ 20:41 Cy Schubert (cy) search for other commits by this committer ]    commit hash:b8477825c2dc42f6c595697a36f593c71f39fbad  commit hash:b8477825c2dc42f6c595697a36f593c71f39fbad  commit hash:b8477825c2dc42f6c595697a36f593c71f39fbad  b847782 
*/*: 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.
Sat, 16 Apr 2022
[ 15:55 Cy Schubert (cy) search for other commits by this committer ]    commit hash:c586ac04eb662dea00ab81b226fa3e41a5110b21  commit hash:c586ac04eb662dea00ab81b226fa3e41a5110b21  commit hash:c586ac04eb662dea00ab81b226fa3e41a5110b21  c586ac0 
*/{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
Mon, 17 Jan 2022
[ 17:00 Cy Schubert (cy) search for other commits by this committer ]    commit hash:d3564c5610c4d94d97971a6b7e45a7c3e45454ee  commit hash:d3564c5610c4d94d97971a6b7e45a7c3e45454ee  commit hash:d3564c5610c4d94d97971a6b7e45a7c3e45454ee  d3564c5 
security/wpa_supplicant: Update to 2.10

The long awaited hostapd 2.10 is finally here.
Mon, 14 Jun 2021
[ 16:04 Cy Schubert (cy) search for other commits by this committer ]    commit hash:ed47e1ecc5db5576f6a2d4a47e083b2366bd65cc  commit hash:ed47e1ecc5db5576f6a2d4a47e083b2366bd65cc  commit hash:ed47e1ecc5db5576f6a2d4a47e083b2366bd65cc  ed47e1e 
*/*: 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
Wed, 7 Apr 2021
[ 08:09 Mathieu Arnold (mat) search for other commits by this committer ]    commit hash:cf118ccf875508b9a1c570044c93cfcc82bd455c  commit hash:cf118ccf875508b9a1c570044c93cfcc82bd455c  commit hash:cf118ccf875508b9a1c570044c93cfcc82bd455c  cf118cc  (Only the first 10 of 8873 ports in this commit are shown above. View all ports for this commit)
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
Tue, 6 Apr 2021
[ 14:31 Mathieu Arnold (mat) search for other commits by this committer ]    commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  305f148  (Only the first 10 of 29333 ports in this commit are shown above. View all ports for this commit)
Remove # $FreeBSD$ from Makefiles.
Wed, 17 Mar 2021
[ 02:32 cy search for other commits by this committer ] Original commit   Revision:568629
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 View all of this commit message)
Tue, 26 Jan 2021
[ 20:15 cy search for other commits by this committer ] Original commit   Revision:562996
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.
Wed, 20 Jan 2021
[ 17:14 cy search for other commits by this committer ] Original commit   Revision:562150
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
Wed, 30 Dec 2020
[ 05:38 cy search for other commits by this committer ] Original commit   Revision:559640
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>
Fri, 26 Jun 2020
[ 01:33 cy search for other commits by this committer ] Original commit   Revision:540412
add MATCH option for CONFIG_MATCH_IFACE.

PR:		247177
Submitted by:	greg@unrelenting.technology
Reported by:	greg@unrelenting.technology
Tested by:	swills
Tue, 9 Jun 2020
[ 05:48 cy search for other commits by this committer ] Original commit   Revision:538281
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 View all of this commit message)
Wed, 20 May 2020
[ 04:20 cy search for other commits by this committer ] Original commit   Revision:535967
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
Wed, 22 Apr 2020
[ 19:54 leres search for other commits by this committer ] Original commit   Revision:532510
security/wpa_supplicant: Simplify @comment logic by using OPTIONS_SUB

PR:		245809
Approved by:	cy (maintainer)
[ 03:37 leres search for other commits by this committer ] Original commit   Revision:532442
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)
Wed, 1 Apr 2020
[ 01:02 cy search for other commits by this committer ] Original commit   Revision:530188
Fix poudriere builds.
Mon, 30 Mar 2020
[ 02:29 cy search for other commits by this committer ] Original commit   Revision:529854
All other non-exclusive options should be default.

PR:		245099
Reported by:	koobs
[ 02:29 cy search for other commits by this committer ] Original commit   Revision:529853
Add DBUS option.

PR:		245099
Submitted by:	greg at unrelenting.technology
Wed, 22 Jan 2020
[ 05:11 cy search for other commits by this committer ] Original commit   Revision:523762
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
Thu, 22 Aug 2019
[ 03:33 cy search for other commits by this committer ] Original commit   Revision:509576
Update 2.8 --> 2.9
Mon, 17 Jun 2019
[ 20:15 cy search for other commits by this committer ] Original commit   Revision:504433
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
Thu, 16 May 2019
[ 02:41 cy search for other commits by this committer ] Original commit   Revision:501763
Resolve the following error discovered in DEVELOPER mode.

These options name have characters outside of [-_A-Z0-9]:

IKEv2 MSCHAPv2
Mon, 22 Apr 2019
[ 15:56 cy search for other commits by this committer ] Original commit   Revision:499654
Update wpa_supplicant/hostapd 2.7 --> 2.8
Tue, 9 Apr 2019
[ 14:04 sunpoet search for other commits by this committer ] Original commit   Revision:498476 (Only the first 10 of 289 ports in this commit are shown above. View all ports for this commit)
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
Thu, 6 Dec 2018
[ 20:11 cy search for other commits by this committer ] Original commit   Revision:486779
Update 2.6 --> 2.7
Fri, 17 Aug 2018
[ 02:18 cy search for other commits by this committer ] Original commit   Revision:477405
Pet portlint.
[ 02:12 cy search for other commits by this committer ] Original commit   Revision:477401
Switch to grouping of patches per site as suggested by mat@ in D16718.

Reported by:	mat@
Tue, 14 Aug 2018
[ 20:21 cy search for other commits by this committer ] Original commit   Revision:477202
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
Tue, 17 Oct 2017
[ 05:33 cy search for other commits by this committer ] Original commit   Revision:452263
Fix "make -s" by replacing ECHO with ECHO_CMD.

PR:		 223056
Submitted by:	Franco Fichtner <franco@opnsense.org>
[ 02:17 cy search for other commits by this committer ] Original commit   Revision:452258
This port is too important to be orphaned.
Take maintainership and provide a good home.
Mon, 16 Oct 2017
[ 20:08 cy search for other commits by this committer ] Original commit   Revision:452250
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
[ 20:05 cy search for other commits by this committer ] Original commit   Revision:452249
Use https site.

MFH:		2017Q4
Tue, 27 Jun 2017
[ 13:46 sunpoet search for other commits by this committer ] Original commit   Revision:444463 (Only the first 10 of 252 ports in this commit are shown above. View all ports for this commit)
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
Sun, 1 Jan 2017
[ 03:45 sunpoet search for other commits by this committer ] Original commit   Revision:430235 (Only the first 10 of 161 ports in this commit are shown above. View all ports for this commit)
Remove BROKEN_FreeBSD_9

Approved by:	portmgr (blanket)
Sun, 25 Dec 2016
[ 03:15 jrm search for other commits by this committer ] Original commit   Revision:429390
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
Tue, 20 Dec 2016
[ 21:41 amdmi3 search for other commits by this committer ] Original commit   Revision:429033
- Unbreak on 10.x+

Reported by:	marino
Mon, 19 Dec 2016
[ 14:26 amdmi3 search for other commits by this committer ] Original commit   Revision:428933
- Mark BROKEN: does not build (undefined reference to `get_ie')
Thu, 17 Nov 2016
[ 17:43 jrm search for other commits by this committer ] Original commit   Revision:426292 (Only the first 10 of 15 ports in this commit are shown above. View all ports for this commit)
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
Fri, 11 Nov 2016
[ 17:26 amdmi3 search for other commits by this committer ] Original commit   Revision:425896
- Add LICENSE
- Verbosify build
- Switch to options helpers
Thu, 15 Sep 2016
[ 01:29 marino search for other commits by this committer ] Original commit   Revision:422173
Release some of my ports back to the heap
Sun, 11 Sep 2016
[ 17:05 marino search for other commits by this committer ] Original commit   Revision:421843
security/wpa_supplicant: Add support for LibreSSL
Thu, 19 May 2016
[ 21:12 marino search for other commits by this committer ] Original commit   Revision:415527
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
Mon, 18 Apr 2016
[ 21:05 marino search for other commits by this committer ] Original commit   Revision:413609
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
Fri, 1 Apr 2016
[ 14:25 mat search for other commits by this committer ] Original commit   Revision:412349 (Only the first 10 of 2099 ports in this commit are shown above. View all ports for this commit)
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.

With hat:	portmgr
Sponsored by:	Absolight
Sun, 11 Oct 2015
[ 22:52 marino search for other commits by this committer ] Original commit   Revision:399108
security/wpa_supplicant: Upgrade version 2.4 => 2.5
Sun, 12 Jul 2015
[ 11:22 marino search for other commits by this committer ] Original commit   Revision:391779
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
Tue, 2 Jun 2015
[ 09:35 marino search for other commits by this committer ] Original commit   Revision:388312
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
Sat, 25 Apr 2015
[ 14:02 marino search for other commits by this committer ] Original commit   Revision:384729
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
[ 06:19 marino search for other commits by this committer ] Original commit   Revision:384705
security/wpa_supplicant: Fix CVE-2015-1863

PR:		199678
Submitted by:	Jason Unovitch
Approved by:	maintainer (marino)
Mon, 16 Mar 2015
[ 20:45 marino search for other commits by this committer ] Original commit   Revision:381444 (Only the first 10 of 14 ports in this commit are shown above. View all ports for this commit)
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.
Sun, 19 Oct 2014
[ 09:33 marino search for other commits by this committer ] Original commit   Revision:371174
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
Mon, 13 Oct 2014
[ 13:49 marino search for other commits by this committer ] Original commit   Revision:370776
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.
[ 12:56 marino search for other commits by this committer ] Original commit   Revision:370769
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.
[ 09:33 marino search for other commits by this committer ] Original commit   Revision:370760
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.
Sun, 12 Oct 2014
[ 21:20 marino search for other commits by this committer ] Original commit   Revision:370742 (Only the first 10 of 22 ports in this commit are shown above. View all ports for this commit)
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.
Fri, 25 Apr 2008
[ 23:21 pav search for other commits by this committer ] Original commit 
- Remove, it's ancient and newer version is included in base of all supported
  releases

Suggested by:   sam
Sat, 3 Feb 2007
[ 01:55 markus search for other commits by this committer ] Original commit 
Utilize PORTDOCS
Thu, 14 Sep 2006
[ 17:37 brooks search for other commits by this committer ] Original commit 
Drop maintainership.  I'm not really interested in this now that we've
got it in the base.
[ 17:37 brooks search for other commits by this committer ] Original commit 
Fix build with openssl 0.9.8b.

PR:             ports/102822
Submitted by:   simon
Sun, 10 Sep 2006
[ 23:32 kris search for other commits by this committer ] Original commit 
Change IGNORE to BROKEN in previous
[ 23:31 kris search for other commits by this committer ] Original commit 
BROKEN on 7.x: Does not compile
Sat, 13 May 2006
[ 04:15 edwin search for other commits by this committer ] Original commit  (Only the first 10 of 275 ports in this commit are shown above. View all ports for this commit)
Remove USE_REINPLACE from all categories starting with S
Fri, 27 May 2005
[ 01:10 brooks search for other commits by this committer ] Original commit 
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]
Sat, 23 Apr 2005
[ 03:29 brooks search for other commits by this committer ] Original commit 
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.
Wed, 16 Feb 2005
[ 07:03 brooks search for other commits by this committer ] Original commit 
- 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>)
Sat, 8 Jan 2005
[ 19:06 brooks search for other commits by this committer ] Original commit 
- 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
Mon, 13 Dec 2004
[ 00:19 imp search for other commits by this committer ] Original commit 
Add support for EAP.  It might not work only in 802.1x mode, but should
work in WPA+802.1x.

Submitted by: sam
Sun, 12 Dec 2004
[ 22:59 imp search for other commits by this committer ] Original commit 
Fix grammatical error Kris pointed out.

Submitted by: kris
[ 22:41 imp search for other commits by this committer ] Original commit 
wpa_supplicant is only for current.
[ 22:23 imp search for other commits by this committer ] Original commit 
WPA supplicant daemon for 802.11 networks.

Submitted by: sam

Number of commits found: 75