notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: net/hostapd/Makefile

Number of commits found: 54

Monday, 4 Mar 2024
16:44 Cy Schubert (cy) search for other commits by this committer
net/hostapd*: Work around lack of MLME support

hostap MLME uses Linux data structures and definitions not available
in FreeBSD. The ability for hostapd to select the frequency (channel)
depends Linux MLME, though strictly it's not required. Work around the
Linux MLME requirement to configure device frequency.

The detailed description is: hostapd will only set the channel (frequency)
when Linux MLME is configured. Enabling NEED_AP_MLME will result in
numerous build errors due do Linux data structures and definitions not
available under FreeBSD. The code to set the frequency from the selected
channel is only within the NEED_AP_MLME code path because without MLME,
hostapd_get_hw_features() is an inline that always returns -1 whereas with
MLME hostapd_get_hw_features() will obtain hardware features from the
kernel. Until such time we simply set the frequency as configured.

PR:		276375
MFH:		2024Q1
commit hash: 2dc822b9e7c44abf61594cbc31379837bb35973d commit hash: 2dc822b9e7c44abf61594cbc31379837bb35973d commit hash: 2dc822b9e7c44abf61594cbc31379837bb35973d commit hash: 2dc822b9e7c44abf61594cbc31379837bb35973d 2dc822b
Monday, 22 Jan 2024
16:52 Muhammad Moinur Rahman (bofh) search for other commits by this committer
net/hostapd: Sanitize MANPREFIX

Approved by:    portmgr (blanket)
commit hash: c0d016fcfcbd8a7a2769aca2075ba6df0f1f069c commit hash: c0d016fcfcbd8a7a2769aca2075ba6df0f1f069c commit hash: c0d016fcfcbd8a7a2769aca2075ba6df0f1f069c commit hash: c0d016fcfcbd8a7a2769aca2075ba6df0f1f069c c0d016f
Tuesday, 12 Sep 2023
05:51 Cy Schubert (cy) search for other commits by this committer Author: R. Christian McDonald
net/hostapd: 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
commit hash: 33410dc2fce35423090de7566b10b2ce4ba5795c commit hash: 33410dc2fce35423090de7566b10b2ce4ba5795c commit hash: 33410dc2fce35423090de7566b10b2ce4ba5795c commit hash: 33410dc2fce35423090de7566b10b2ce4ba5795c 33410dc
05:51 Cy Schubert (cy) search for other commits by this committer
net/hostapd: 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
commit hash: e7f23d81ae4b522701ab73482a3bb3e3a76f6e67 commit hash: e7f23d81ae4b522701ab73482a3bb3e3a76f6e67 commit hash: e7f23d81ae4b522701ab73482a3bb3e3a76f6e67 commit hash: e7f23d81ae4b522701ab73482a3bb3e3a76f6e67 e7f23d8
05:50 Cy Schubert (cy) search for other commits by this committer
net/hostapd: 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 helped partially for some people to no longer see the
continuous CTRL-EVENT-SCAN-FAILED.

It is highly likely that we will want further changes and until
we know for sure that people are seeing ''(changed)'' events
this should stay local.  Should we need to upstream this we'll
likely need #ifdef __FreeBSD__ around this code.

PR:		273696
Obtained from:	src bfb202c4554a
MFH:		2023Q3
commit hash: 087cebebd616c77d469a9e337fa0c99041b3ccfb commit hash: 087cebebd616c77d469a9e337fa0c99041b3ccfb commit hash: 087cebebd616c77d469a9e337fa0c99041b3ccfb commit hash: 087cebebd616c77d469a9e337fa0c99041b3ccfb 087cebe
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
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.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 20 Jul 2022
14:22 Tobias C. Berner (tcberner) search for other commits by this committer
net: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  <ports@c0decafe.net>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Aaron Straup Cope <ascope@cpan.org>
  *  Aaron Zauner <az_mail@gmx.at>
  *  Adam Jette <jettea46@yahoo.com>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Alan Eldridge <alane@geeksrus.net>
  *  Alex Bakhtin <Alex.Bakhtin@gmail.com>
  *  Alex Deiter <Alex.Deiter@Gmail.COM>
  *  Alex Dupre <ale@FreeBSD.org>
  *  Alex Dupre <sysadmin@alexdupre.com>
  *  Alex Kapranoff <kappa@FreeBSD.org.ua>
  *  Alex Miller <asm@asm.kiev.ua>
  *  Alexander Hausner <alex@hugo.bmg.gv.at>
  *  Alexander Kriventsov <avk@vl.ru>
  *  Alexander Logvinov <avl@FreeBSD.org>
  *  Alexander Logvinov <ports@logvinov.com>
  *  Alexander Moisseev <moiseev@mezonplus.ru>
  *  Alexander Novitsky
  *  Alexander Nusov <alexander.nusov@nfvexpress.com>
  *  Alexander Panyushkin <vsityz@gmail.com>
  *  Alexander V. Chernikov <melifaro@FreeBSD.org>
  *  Alexandre Biancalana <ale@biancalanas.net>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Alexey V. Degtyarev <alexey@renatasystems.org>
  *  Alfred Perlstein <alfred@FreeBSD.org>
  *  Alonso Cardenas Marquez <acm@FreeBSD.org>
  *  Anatoliy Dmytriyev
  *  Anders Nordby <anders@FreeBSD.org>
  *  Anders Nordby <anders@fix.no>
  *  Andreas Klemm <andreas@klemm.gtn.com>
  *  Andreas Kohn <andreas@syndrom23.de>
  *  Andrei Lavreniyuk <andy.lavr@gmail.com>
  *  Andrew Pantyukhin <infofarmer@FreeBSD.org>
  *  Andrew Thompson <thompsa@FreeBSD.org>
  *  Andrey Zakhvatov
  *  Andy Kosela <akosela@andykosela.com>
  *  Anes Mukhametov <anes@anes.su>
  *  Anton Berezin <tobez@FreeBSD.org>
  *  Anton Berezin <tobez@tobez.org>
  *  Anton Karpov <toxa@toxahost.ru>
  *  Anton Yuzhaninov <citrin@citrin.ru>
  *  Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
  *  Antonio Querubin <tony@lava.net>
  *  Archie Cobbs
  *  Arne Lundberg <arlu@telia.com>
  *  Babak Farrokhi
  *  Babak Farrokhi <babak@farrokhi.net>
  *  Babak Farrokhi <farrokhi@FreeBSD.org>
  *  Bartek Rutkowski robak@FreeBSD.org
  *  Bill Fenner <fenner@FreeBSD.org>
  *  Bill Fumerola <billf@chc-chimes.com>
  *  Bill Fumerola <billf@mu.org>
  *  Bjorn Konig <bkoenig@alpha-tierchen.de>
  *  Blaz Zupan <blaz@si.FreeBSD.org>
  *  BluePex Security Solutions <freebsd-ports@bluepex.com>
  *  Bob Frazier
  *  Boris Lytochkin <lytboris@gmail.com>
  *  Brad Davis <so14k@so14k.com>
  *  Brent B. Powers <bbp2006@columbia.edu>
  *  Brian Somers <brian@FreeBSD.org>
  *  Bruce M Simpson <bms@FreeBSD.org>
  *  Bruce M. Simpson <bms@FreeBSD.org>
  *  Bruce Simpson
  *  Carlo Strub <cs@FreeBSD.org>
  *  Carlos J Puga Medina <cpm@FreeBSD.org>
  *  Carsten Larsen <cs@innolan.dk>
  *  Cheng-Lung Sung <clsung@FreeBSD.org>
  *  Cheng-Lung Sung <clsung@dragon2.net>
  *  Chris Hutchinson <portmaster@BSDforge.com>
  *  Christer Edwards <christer.edwards@gmail.com>
  *  Christian Brueffer <chris@unixpages.org)
  *  Christian Laursen <xi@borderworlds.dk>
  *  Christopher Boumenot <boumenot@gmail.com>
  *  Christopher Key <cjk32@cam.ac.uk>
  *  Chung-Kie Tung <tung@turtle.ee.ncku.edu.tw>
  *  Clement Laforet
  *  Clement Laforet <clement@FreeBSD.org>
  *  Clement Laforet <sheepkiller@cultdeadsheep.org>
  *  Corey Smith <corsmith@gmail.com>
  *  Cory R. King <coryking@mozimedia.com>
  *  Craig Boston <craig@yekse.gank.org>
  *  Craig Leres <leres@FreeBSD.org>
  *  Daisuke Aoyama <aoyama@peach.ne.jp>
  *  Dan Caescu <daniel at freebsd.ro>
  *  Dan Pelleg <dpelleg+unison@cs.cmu.edu>
  *  Daniel Baker <dbaker@FreeBSD.org> <dbaker@cuckoo.com>
  *  Daniel Bryan <sisko@bsdmail.com>
  *  Daniel O'Connor <darius@dons.net.au>
  *  Danilo G. Baio <dbaio@FreeBSD.org>
  *  Danny Howard <dannyman@tellme.com>
  *  David Carlier
  *  David O'Brien (obrien@FreeBSD.org)
  *  David O'Brien (obrien@NUXI.com)
  *  David O'Brien (obrien@cs.ucdavis.edu)
  *  David O'Brien <obrien@NUXI.com>
  *  David Shane Holden <dpejesh@yahoo.com>
  *  David Thiel (lx@redundancy.redundancy.org)
  *  David Thiel <lx@redundancy.redundancy.org>
  *  Dean Freeman (wfreeman@sourcefire.com)
  *  Denis Generalov <gd.workbox@gmail.com>
  *  Denis Pokataev <catone@cpan.org>
  *  Dennis Herrmann <adox@mcx2.org>
  *  Dennis Herrmann <dhn@FreeBSD.org>
  *  Derek Schrock <dereks@lifeofadishwasher.com>
  *  Diederik de Groot
  *  Dima Dorfman <dd@FreeBSD.org>
  *  Dima Panov <fluffy@FreeBSD.org>
  *  Dima Sivachenko
  *  Dima Sivachenko <dima@chg.ru>
  *  Dirk-Willem van Gulik / dirkx@webweaving.org
  *  Dmitry Sivachenko <demon@FreeBSD.org>
  *  Dmitry Sivachenko <dima@Chg.RU>
  *  Dmitry Sivachenko <mitya@yandex-team.ru>
  *  Dominic Marks <dominic.marks@btinternet.com>
  *  Dominic Mitchell <dom@happygiraffe.net>
  *  Douglas Thrift <douglas@douglasthrift.net>
  *  Dryice Liu
  *  Ed Schouten <ed@FreeBSD.org>
  *  Edwin Groothuis (edwin@mavetju.org)
  *  Elias Mandouvalos <ocean@compulink.gr>
  *  Emanuel Haupt <ehaupt@FreeBSD.org>
  *  Emanuel Haupt <ehaupt@critical.ch>
  *  Emmanuel Richiardone (err@tollari.org)
  *  Eric Freeman <freebsdports@chillibear.com>
  *  Erich Zigler <erich@tacni.net>
  *  Erwin Lansing <erwin@FreeBSD.org>
  *  Eugene Grosbein <eugen@FreeBSD.org>
  *  Eugene Grosbein <ports@grosbein.net>
  *  Felippe de Meirelles Motta <lippemail@gmail.com>
  *  Felix Hanley
  *  Felix Hanley <felix@userspace.com.au>
  *  Filippo Natali <filippo.natali@gmail.com>
  *  Filippo Natali <filippo@widestore.net>
  *  Florent Thoumie <flz@xbsd.org>
  *  Franco Fichtner <franco@opnsense.org>
  *  Frank Fenor <frank@fenor.de>
  *  Frank W. Josellis <frank@dynamical-systems.org>
  *  Frederic Culot <culot@FreeBSD.org>
  *  Frederic Culot <frederic@culot.org>
  *  Fukang Chen <loader@FreeBSD.org>
  *  G. Adam Stanislav <adam@whizkidtech.net>
  *  Gabriel Ambuehl <gabriel_ambuehl@buz.ch>
  *  Gabriel Dutra <0xdutra@gmail.com>
  *  Gabriel M. Dutra <0xdutra@gmail.com>
  *  Ganael LAPLANCHE <ganael.laplanche@martymac.org>
  *  Ganael Laplanche <ganael.laplanche@martymac.org>
  *  Gasol Wu <gasol.wu@gmail.com>
  *  Gaspar Chilingarov <nm@web.am>
  *  Gea-Suan Lin <gslin@ccca.nctu.edu.tw>
  *  Gea-Suan Lin <gslin@gslin.org>
  *  Geoff Garside
  *  George Reid <greid@ukug.uk.freebsd.org>
  *  George V. Neville-Neil
  *  Gerrit Beine (<tux@pinguru.net>)
  *  GomoR <netpkt@gomor.org>
  *  Goran Tal
  *  Greg Larkin <glarkin@FreeBSD.org>
  *  Gregory Edigarov <greg@bestnet.kharkov.ua>
  *  Guangyuan Yang <ygy@FreeBSD.org>
  *  Guerkan Karaman <gk.freebsd@googlemail.com>
  *  Gunter Wambaugh <gunter@six-two.net>
  *  Gustau Perez <gustau.perez@gmail.com>
  *  Gustau Perez i Querol <gustau.perez@gmail.com>
  *  HSIN-HSIUNG CHANG
  *  Hajimu UMEMOTO <ume@FreeBSD.org>
  *  Haowu Ge <ghw@7axu.com>
  *  Henk van Oers <hvo.pm@xs4all.nl>
  *  Henrik Hodne <henrik@hodne.io>
  *  Honza Betik
  *  Hugo Saro <hugo@barafranca.com>
  *  Hung-Yi Chen <gaod@hychen.org>
  *  Hye-Shik Chang <perky@FreeBSD.org>
  *  IWATSUKI Hiroyuki <don@na.rim.or.jp>
  *  Iblis Lin <iblis@hs.ntnu.edu.tw>
  *  Igor Vinokurov <igor@zynaps.ru>
  *  Ilia Skalozubov <freebsd@skinc.ru>
  *  Ilya Bakulin <webmaster@kibab.com>
  *  Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com>
  *  J.R. Oldroyd <fbsd@opal.com>
  *  Jaap Akkerhuis <jaap@NLnetLabs.nl>
  *  Jacques Vidrine <nectar@FreeBSD.org>
  *  James Elstone <james@elstone.net>
  *  James FitzGibbon <jfitz@FreeBSD.org>
  *  Jan Hornyak <pav@oook.cz>
  *  Janni
  *  Janos Mohacsi <janos.mohacsi@bsd.hu>
  *  Janos.Mohacsi@bsd.hu
  *  Janos.Mohacsi@dante.org.uk
  *  Jase Thew <freebsd@beardz.net>
  *  Jean-Yves Lefort <jylefort@brutele.be>
  *  Jeff Putsch <jdputsch@comcast.net>
  *  Jeremie Le Hen <jlh@FreeBSD.org>
  *  Jesper Skriver <jesper@FreeBSD.org>
  *  Jesse McConnell <jesse@gallup.com>
  *  Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
  *  Joe Clarke
  *  Joe Horn <joehorn@gmail.com>
  *  Joe Marcus Clarke <marcus@FreeBSD.org>
  *  Johannes Meixner <johannes@perceivon.net>
  *  John Bayly <freebsd.ports@tipstrade.net>
  *  John Hixson <jhixson@gmail.com>
  *  John Hixson<jhixson@FreeBSD.org>
  *  John Polstra <jdp@FreeBSD.org>
  *  Jon Nistor <nistor@snickers.org>
  *  Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
  *  Jose M. Alcaide <jose@we.lc.ehu.es>
  *  Joseph Benden <joe@thrallingpenguin.com>
  *  Joseph Scott <joseph@randomnetworks.com>
  *  Joshua Goodall <joshua@roughtrade.net>
  *  Jov <amutu@amutu.com>
  *  Juergen Lock <nox@FreeBSD.org>
  *  Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
  *  Jui-Nan Lin <jnlin@freebsd.cs.nctu.edu.tw>
  *  Juraj Lutter <otis@FreeBSD.org>
  *  Jyun-Yan You <jyyou@cs.nctu.edu.tw>
  *  Karsten Pedersen <kpedersen@disroot.org>
  *  Kelly Yancey <kbyanc@FreeBSD.org>
  *  Kelly Yancey <kbyanc@posi.net>
  *  Kevin Bowling <k@kev009.com>
  *  Kevin Bowling <kbowling@freebsd.org>
  *  Kevin Lo <kevlo@FreeBSD.org>
  *  Kimura Fuyuki <fuyuki@hadaly.org>
  *  Kimura Fuyuki <fuyuki@mj.0038.net>
  *  Kirill Ponomarew <krion@FreeBSD.org>
  *  Kirill Ponomarew <ponomarew@oberon.net>
  *  Koop Mast <einekoai@chello.nl>
  *  Koop Mast <kwm@FreeBSD.org>
  *  Kris Kennaway <kris@FreeBSD.org
  *  Kris Kennaway <kris@FreeBSD.org>
  *  Kristof Provost <kp@FreeBSD.org>
  *  Krzysztof Stryjek <ports@bsdserwis.com>
  *  Kubilay Kocak <koobs@FreeBSD.org>
  *  Lars Eggert <lars@eggert.org>
  *  Lars Erik Gullerud <lerik@nolink.net>
  *  Lars Thegler <lars@thegler.dk>
  *  Lars Thegler <lth@FreeBSD.org>
  *  Lasse L. Johnsen (lasse@freebsdcluster.org)
  *  Lawrence Chen <beastie@tardisi.com>
  *  Li-Wen Hsu <lwhsu@FreeBSD.org>
  *  Loic Pefferkorn <loic-freebsd@loicp.eu>
  *  Loren M. Lang
  *  Lung-Pin Chang <changlp@cs.nctu.edu.tw>
  *  M. Birgmeier
  *  MANTANI Nobutaka <nobutaka@FreeBSD.org>
  *  MIHIRA Yoshiro <sanpei@FreeBSD.org>
  *  Mahlon E. Smith <mahlon@martini.nu>
  *  Maksym Sobolyev <sobomax@pbxpress.it>
  *  Manuel Creach <manuel.creach@icloud.com>
  *  Marcin Cieslak <saper@system.pl>
  *  Marcin Jessa <freebsd@yazzy.org>
  *  Marcin Jessa <yazzy@yazzy.org>
  *  Marco P. Rodrigues <drkangel@drkangel.org>
  *  Marco Steinbach <coco@webdev.c0c0.intra>
  *  Marcus Glocker <marcus@nazgul.ch>
  *  Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
  *  Mario Sergio Fujikawa Ferreira <liouxFreeBSD.org>
  *  Mark Felder <feld@FreeBSD.org>
  *  Mark Pulford <mark@kyne.com.au>
  *  Mars G Miro <spry@anarchy.in.the.ph>
  *  Martin Matuska <mm@FreeBSD.org>
  *  Martin Wilke <miwi@FreeBSD.org>
  *  Masafumi NAKANE <max@FreeBSD.org>
  *  Masahiro Teramoto <markun@onohara.to>
  *  Masaki TAGAWA <masaki@club.kyutech.ac.jp>
  *  Massimiliano Stucchi <mstucchi@ripe.net>
  *  Matt Emmerton <matt@gsicomp.on.ca>
  *  Matt Peterson <matt@peterson.org>
  *  Matthew George <mdg@secureworks.net>
  *  Matthew Luckie <mjl@luckie.org.nz>
  *  Matthew Seaman
  *  Matthias Fechner <mfechner@FreeBSD.org>
  *  Matthias Teege <matthias@mteege.de>
  *  Max Khon <fjoe@FreeBSD.org>
  *  Max V. Kostikov <max@kostikov.co>
  *  Maxim Sobolev <sobomax@FreeBSD.org>
  *  Meno Abels <meno.abels@adviser.com>
  *  Michael Frey <frey@raum3.de>
  *  Michael Handler <handler@grendel.net>
  *  Michael Johnson <ahze@FreeBSD.org
  *  Michael Johnson <ahze@FreeBSD.org>
  *  Michael Joyner <mjoyner@hq.dyns.cx>
  *  Michael Kohn <mike@mikekohn.net>
  *  Michael L. Hostbaek (mich@freebsdcluster.org)
  *  Michael L. Hostbaek <mich@freebsdcluster.org>
  *  Michael Muenz <m.muenz@gmail.com>
  *  Mike Carlson <carlson39@llnl.gov>
  *  Mikhail Teterin
  *  Mikhail Teterin <mi@aldan.algebra.com>
  *  Mikhail Zakharov <zmey20000@yahoo.com>
  *  Muhammad Moinur Rahman <5u623l20@gmail.com>
  *  Muhammad Moinur Rahman <bd_subzero@yahoo.com>
  *  Muhammad Moinur Rahman <bofh@FreeBSD.org>
  *  Munechika SUMIKAWA <sumikawa@FreeBSD.org>
  *  Nathan Whitehon <nwhitehorn@freebsd.org>
  *  Neil Booth
  *  Nick Sayer <nsayer@FreeBSD.org>
  *  Nicola Vitale <nivit@FreeBSD.org>
  *  Nobutaka Mantani <nobutaka@FreeBSD.org>
  *  Oleg Mamontov <oleg@mamontov.net>
  *  Oliver Mahmoudi <olivermahmoudi@gmail.com>
  *  Olivier Cochard-Labbé <olivier@FreeBSD.org>
  *  Olivier Duchateau
  *  Olivier Tharan <olive@oban.frmug.org>
  *  Palle Girgensohn <girgen@FreeBSD.org>
  *  Pankov Pavel <pankov_p@mail.ru>
  *  Paolo Pisati <flag@gufi.org>
  *  Patrick Li <pat@databits.net>
  *  Patrick MARIE <mycroft@virgaria.org>
  *  Patrick Powell <papowell@astart.com>
  *  Paul Dlug <paul@aps.org>
  *  Paul Schmehl <pauls@utdallas.edu>
  *  Pav Lucistnik <pav@FreeBSD.org>
  *  Pawel Pekala <pawel@FreeBSD.org>
  *  Peter Pentchev <roam@FreeBSD.org>
  *  Philip M. Gollucci <ports@FreeBSD.org>
  *  Philippe Audeoud <jadawin@tuxaco.net>
  *  Phillip Neumann <pneumann@gmail.com>
  *  Piotr Florczyk <pf@itwf.pl>
  *  Piotr Kubaj <pkubaj@anongoth.pl>
  *  Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Raffaele De Lorenzo - raffaele.delorenzo@libero.it
  *  Rich Neswold <rneswold@mcs.net>
  *  Richard Gallamore <ultima@FreeBSD.org>
  *  Roger Hardiman <roger@FreeBSD.org>
  *  Roman Bogorodskiy <novel@FreeBSD.org>
  *  Roman Neuhauser (<neuhauser@bellavista.cz>)
  *  Roman Shterenzon <roman@xpert.com>
  *  Rong-En Fan <rafan@FreeBSD.org>
  *  Rong-En Fan <rafan@infor.org>
  *  Roy Marples <roy@marples.name>
  *  Rusmir Dusko <nemysis@FreeBSD.org>
  *  Russell Francis
  *  Ryan Steinmetz <rpsfa@rit.edu>
  *  Ryan Steinmetz <zi@FreeBSD.org>
  *  Ryan T. Dean <rtdean@cytherianage.net>
  *  Sahil Tandon <sahil@FreeBSD.org>
  *  Sahil Tandon <sahil@tandon.net>
  *  Seamus Venasse <svenasse@polaris.ca>
  *  Sebastien Petit <spe@phear.org>
  *  Sebastien Santoro <dereckson@gmail.com>
  *  Seiichirou Hiraoka
  *  Sergei Kolobov <sergei@kolobov.com>
  *  Sergey Kandaurov <pluknet@gmail.com>
  *  Sergey Kozlov <sergey.kozlov@intel.com>
  *  Sergey Kozlov <skozlov@FreeBSD.org>
  *  Sergey Matveychuk <sem@FreeBSD.org>
  *  Sergey Skvortsov <skv@protey.ru>
  *  Sergey Velichkevych <serg@cad.kiev.ua>
  *  Shinsuke Matsui (<smatsui@karashi.org>)
  *  Silvio Ap Silva aka kanazuchi <alvolivre@live.com>
  *  Simon Barner <barner@gmx.de>
  *  Simun Mikecin < numisemis at yahoo dot com >
  *  Simun Mikecin <numisemis@yahoo.com>
  *  Sofian Brabez <sbrabez@gmail.com>
  *  Stacey D. Son <sds@son.org>
  *  Stanislav Sedov <stas@FreeBSD.org>
  *  Stefan Hagen <sh@codevoid.de>
  *  Steve Jacobson <sjac@cs.stanford.edu>
  *  Steve Wills <swills@FreeBSD.org>
  *  Steven Kreuzer <skreuzer@FreeBSD.org>
  *  Sunagawa Koji <koj@ofug.net>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  TAKAHASHI Kaoru <kaoru@kaisei.org>
  *  TAKATSU Tomonari <tota@FreeBSD.org>
  *  TERAMOTO Masahiro <markun@onohara.to>
  *  Talal Al Dik (tad@vif.com)
  *  Thibault Payet <monwarez@mailoo.org>
  *  Thierry Thomas (<thierry@FreeBSD.org>)
  *  Thierry Thomas (<thierry@pompo.net>)
  *  Thierry Thomas <thierry@pompo.net>
  *  Thomas Dreibholz <dreibh@iem.uni-due.de>
  *  Thomas Quinot <thomas@cuivre.fr.eu.org>
  *  Tillman Hodgson <tillman@seekingfire.com>
  *  Tim Bishop <tim@bishnet.net>
  *  Timothy Beyer <beyert@cs.ucr.edu>
  *  Timothy Redaelli <drizzt@gufi.org>
  *  Tom McLaughlin <tmclaugh@FreeBSD.org>
  *  Tom McLaughlin <tmclaugh@sdf.lonestar.org>
  *  Tony Shadwick <tshadwick@oss-solutions.com>
  *  Torsten Zuehlsdorff <ports@toco-domains.de>
  *  Torsten Zuehlsdorff <tz@FreeBSD.org>
  *  Trenton Schulz <trueos@norwegianrockcat.com>
  *  Trevor Corpropst <tcornpropst@cox.net>
  *  Tsung-Han Yeh <snowfly@yuntech.edu.tw>
  *  Ulrich Spoerlein <uspoerlein@gmail.com>
  *  Vadim Belman <vab@lflat.vas.mobilix.dk>
  *  Valery Komarov <komarov@valerka.net>
  *  Vanilla I. Shu <vanilla@FreeBSD.org>
  *  Vasil Dimov <vd@FreeBSD.org>
  *  Vassili Tchersky <vt@bsdjeunz.org>
  *  Veniamin Gvozdikov <vg@FreeBSD.org>
  *  Victor Yagofarov <xnasx@yandex.ru>
  *  Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
  *  Vsevolod Stakhov <vsevolod@highsecure.ru>
  *  Wen Heping <wen@FreeBSD.org>
  *  Wen Heping <wenheping@gmail.com>
  *  Wen Heping<wenheping@gmail.com>
  *  Wen heping <wenheping@gmail.com>)
  *  Weongyo Jeong <weongyo@FreeBSD.org>
  *  Willem Jan Withagen <wjw@digiware.nl>
  *  William Grzybowski <wg@FreeBSD.org>
  *  William Ward <William.Ward@ericsson.com>
  *  Winston Weinert <winstonw@lavabit.com>
  *  Xiaoding Liu <xiaoding+freebsd@xiaoding.org>
  *  Xin LI <delphij@FreeBSD.org>
  *  Xin Li <delphij@FreeBSD.org>
  *  Yann Berthier <yb@sainte-barbe.org>
  *  Yarema <yds@CoolRat.org>
  *  Yen-Ming Lee <leeym@FreeBSD.org>
  *  Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
  *  Yen-Ming Lee <leeym@leeym.com>
  *  Yi-Hsuan Hsin <mhsin@mhsin.org>
  *  Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
  *  Yi-Jheng, Lin <yzlin@cs.nctu.edu.tw>
  *  Ying-Chieh Liao <ijliao@FreeBSD.org>
  *  Yoshihiko Sarumaru <mistral@imasy.or.jp>
  *  Yukihiro Nakai <Nacai@iname.com>
  *  Yuri Victorovich <yuri@rawbw.com>
  *  Zach Thompson <hideo@lastamericanempire.com>
  *  Zane C, Bowers <vvelox@vvelox.net>
  *  Zane C. Bowers <vvelox@vvelox.net>
  *  Zane C. Bowers-Hadley <vvelox@vvelox.net>
  *  Zhen REN <bg1tpt@gmail.com>
  *  aaron@FreeBSD.org
  *  ache
  *  adam
  *  adam@veda.is
  *  adamw
  *  alepulver
  *  alexp
  *  andreas
  *  andreas@FreeBSD.org
  *  andrey@kostenko.name
  *  arved
  *  asami
  *  ats (original)
  *  brd@FreeBSD.org
  *  brix@FreeBSD.org
  *  bsdx
  *  chinsan
  *  chinsan <chinsan.tw@gmail.com>
  *  clsung
  *  clsung@dragon2.net
  *  cpm <cpm@fbsd.es>
  *  cy@FreeBSD.org
  *  dave@dogwood.com
  *  dds
  *  devin@spamcop.net
  *  dikshie <dikshie@lapi.itb.ac.id>
  *  dikshie@sfc.wide.ad.jp
  *  doconnor@gsoft.com.au
  *  erwin@FreeBSD.org
  *  fenner
  *  gahr
  *  gebhart@secnetix.de
  *  glarkin
  *  glewis
  *  gugu
  *  igor@zynaps.ru
  *  ijliao
  *  james@targetnet.com
  *  jameskamlyn@gmail.com
  *  jamundsen
  *  janos.mohacsi@bsd.hu
  *  jeff@cetlink.net
  *  jesusr
  *  jhay
  *  jkh
  *  johans@stack.nl
  *  jupengfei <jupengfei@gmail.com>
  *  kai
  *  krion@FreeBSD.org
  *  kris@FreeBSD.org
  *  kungfuftr <scott@surreytech.co.uk>
  *  kuriyama
  *  lance@evitel.net
  *  lbartoletti <lbartoletti@FreeBSD.org>
  *  liamfoy@sepulcrum.org
  *  lwhsu@FreeBSD.org
  *  marck@FreeBSD.org
  *  matusita@jp.FreeBSD.org
  *  maurice
  *  melifaro@ipfw.ru
  *  mfechner@FreeBSD.org
  *  mharo@FreeBSD.org
  *  michael johnson <ahze@ahze.net>
  *  mike@binghamton.edu
  *  msmith
  *  mwest@uct.ac.za
  *  nbm
  *  netch@netch.kiev.ua
  *  nishida@sfc.wide.ad.jp
  *  nork@FreeBSD.org
  *  pat@databits.net
  *  paul@FreeBSD.org
  *  petef
  *  petef@FreeBSD.org
  *  peter
  *  ports@c0decafe.net
  *  quest <quest@mac.com>
  *  rdenis@simphalempin.com
  *  renchap@cocoa-x.com
  *  rflynn@acsalaska.net
  *  roam@orbitel.bg
  *  ru
  *  ryo
  *  scrappy@FreeBSD.org
  *  shan
  *  shanali
  *  shigeru@iij.ad.jp
  *  shipley@dis.org
  *  skreuzer
  *  smace@FreeBSD.org
  *  sobomax
  *  spf@xslt.cs.nccu.edu.tw
  *  stast
  *  stb
  *  steinex
  *  sten@blinkenlights.nl
  *  swills@
  *  thierry@pompo.net
  *  tim@relay.nnn.tstu.ru
  *  timur@FreeBSD.org
  *  tm@onepost.net
  *  trevor
  *  vanhu <vanhu@netasq.com>
  *  vanilla
  *  vanilla@
  *  wenheping <wenheping@gmail.com>
  *  will
  * # Created by Matthias Fechner <mfechner@FreeBSD.org>
  * # Created by Radim Kolar <hsn@sendmail.cz>

With hat:	portmgr
commit hash: 6a378e5659b93de6dbe8956246fb3bf971677624 commit hash: 6a378e5659b93de6dbe8956246fb3bf971677624 commit hash: 6a378e5659b93de6dbe8956246fb3bf971677624 commit hash: 6a378e5659b93de6dbe8956246fb3bf971677624 6a378e5
Sunday, 3 Jul 2022
21:33 Cy Schubert (cy) search for other commits by this committer 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
commit hash: b3916c7a8d2599e99fabdc1735b095ff5a9f9381 commit hash: b3916c7a8d2599e99fabdc1735b095ff5a9f9381 commit hash: b3916c7a8d2599e99fabdc1735b095ff5a9f9381 commit hash: b3916c7a8d2599e99fabdc1735b095ff5a9f9381 b3916c7
Monday, 20 Jun 2022
14:29 Cy Schubert (cy) search for other commits by this committer
*/*: 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
commit hash: 05a849eec9d949b3de32e464570cefbabcd64702 commit hash: 05a849eec9d949b3de32e464570cefbabcd64702 commit hash: 05a849eec9d949b3de32e464570cefbabcd64702 commit hash: 05a849eec9d949b3de32e464570cefbabcd64702 05a849e
Thursday, 9 Jun 2022
21:58 Cy Schubert (cy) search for other commits by this committer
*/*: 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
commit hash: c86f32d652eb9dd023049122d8ca37cb13ed07b6 commit hash: c86f32d652eb9dd023049122d8ca37cb13ed07b6 commit hash: c86f32d652eb9dd023049122d8ca37cb13ed07b6 commit hash: c86f32d652eb9dd023049122d8ca37cb13ed07b6 c86f32d
20:41 Cy Schubert (cy) search for other commits by this committer
*/*: 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.
commit hash: b8477825c2dc42f6c595697a36f593c71f39fbad commit hash: b8477825c2dc42f6c595697a36f593c71f39fbad commit hash: b8477825c2dc42f6c595697a36f593c71f39fbad commit hash: b8477825c2dc42f6c595697a36f593c71f39fbad b847782
Saturday, 16 Apr 2022
15:55 Cy Schubert (cy) search for other commits by this committer
*/{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
commit hash: c586ac04eb662dea00ab81b226fa3e41a5110b21 commit hash: c586ac04eb662dea00ab81b226fa3e41a5110b21 commit hash: c586ac04eb662dea00ab81b226fa3e41a5110b21 commit hash: c586ac04eb662dea00ab81b226fa3e41a5110b21 c586ac0
Monday, 17 Jan 2022
17:00 Cy Schubert (cy) search for other commits by this committer
net/hostapd: Update to 2.10

The long awaited hostapd 2.10 is finally here.
commit hash: f5e549a9f44e992c0a2f34b2f7686198f5590bad commit hash: f5e549a9f44e992c0a2f34b2f7686198f5590bad commit hash: f5e549a9f44e992c0a2f34b2f7686198f5590bad commit hash: f5e549a9f44e992c0a2f34b2f7686198f5590bad f5e549a
Tuesday, 14 Sep 2021
10:55 Bernhard Froehlich (decke) search for other commits by this committer
net/hostapd: Fix CPE information because current one is deprecated

Approved by:    portmgr (blanket)
commit hash: af1b44de7c7f16ffb71c29214166acd0b2cce08b commit hash: af1b44de7c7f16ffb71c29214166acd0b2cce08b commit hash: af1b44de7c7f16ffb71c29214166acd0b2cce08b commit hash: af1b44de7c7f16ffb71c29214166acd0b2cce08b af1b44d
Monday, 14 Jun 2021
16:04 Cy Schubert (cy) search for other commits by this committer
*/*: 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
commit hash: ed47e1ecc5db5576f6a2d4a47e083b2366bd65cc commit hash: ed47e1ecc5db5576f6a2d4a47e083b2366bd65cc commit hash: ed47e1ecc5db5576f6a2d4a47e083b2366bd65cc commit hash: ed47e1ecc5db5576f6a2d4a47e083b2366bd65cc ed47e1e
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Wednesday, 20 Jan 2021
17:14 cy search for other commits by this committer
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
Original commitRevision:562150 
Tuesday, 9 Jun 2020
05:48 cy search for other commits by this committer
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
servers in external networks. This could have a security implication if
traffic from the local network to external destinations have different
rules (e.g., firewall and packet inspection) for different local hosts
and the AP having access to external hosts while the attacker controlled
local device not having such access. Such deployment cases may not be
common for networks where WPS would be enabled, but it is not possible
to completely rule out the applicability to cases where hostapd is used
to control a WPS enabled AP.

In addition to the more generic issues with the UPnP protocol, couple of
implementation specific issues in hostapd were discovered while
reviewing this area of the WPS implementation. These issues could allow
local devices (i.e., devices that have been authorized to transmit
packets in the network in which the AP is located) to trigger
misbehavior in hostapd and cause the process to either get terminated or
to start using more CPU resources by using a specially constructed
SUBSCRIBE command.

All these issues require the attacker to be able to discover the UPnP
service provided by hostapd and to open a TCP connection toward the IP
address of the AP. The former requires access to the local network to be
able to receive broadcast packets and the latter requires access to
initiate TCP/IP connection to the IP address used by the AP. In most
common AP deployment cases, both of these operations are available only
from the local network.

Vulnerable versions/configurations

All hostapd versions with WPS AP support with UPnP enabled in the build
parameters (CONFIG_WPS_UPNP=y) and in the runtime configuration
(upnp_iface).

Possible mitigation steps

- Disable WPS UPnP support in the hostapd runtime configuration by
  removing the upnp_iface parameter.

- Merge the following commits to hostapd and rebuild:

  For CVE-2020-12695:
  WPS UPnP: Do not allow event subscriptions with URLs to other networks
  For the other issues:
  WPS UPnP: Fix event message generation using a long URL path
  WPS UPnP: Handle HTTP initiation failures for events more properly

  These patches are available from https://w1.fi/security/2020-1/

- Update to hostapd v2.10 or newer, once available

Obtained from:	https://w1.fi/security/2020-1/
MFH:		2020Q2
Security:	VU#339275 and CVE-2020-12695
Original commitRevision:538281 
Wednesday, 20 May 2020
04:20 cy search for other commits by this committer
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
Original commitRevision:535967 
Thursday, 22 Aug 2019
03:33 cy search for other commits by this committer
Update 2.8 --> 2.9
Original commitRevision:509577 
Monday, 17 Jun 2019
20:15 cy search for other commits by this committer
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
Original commitRevision:504433 
Monday, 22 Apr 2019
15:56 cy search for other commits by this committer
Update wpa_supplicant/hostapd 2.7 --> 2.8
Original commitRevision:499654 
Tuesday, 5 Mar 2019
03:56 cy search for other commits by this committer
Also document usage in pkg-message for binary package users.

PR:		236230
Reported by:	mt@markoturk.info
MFH:		2019Q1
Original commitRevision:494674 
Thursday, 6 Dec 2018
20:11 cy search for other commits by this committer
Update 2.6 --> 2.7
Original commitRevision:486778 
Friday, 17 Aug 2018
02:18 cy search for other commits by this committer
Pet portlint.
Original commitRevision:477405 
02:12 cy search for other commits by this committer
leres@ suggested in D16718 and offline that I assume maintainership
of net/hostapd.

Suggested by:	leres@
Approved by:	leres@
Original commitRevision:477404 
02:12 cy search for other commits by this committer
Chase net/wpa_supplicant r477202 and base contrib/wpa r337819.

WPA: Ignore unauthenticated encrypted EAPOL-Key data

Though hostapd is technically not vulnerable, the mitigation for
CVE-2018-14526 does apply cleanly, therefore it is applied to maintain
consistency with net/wpa_supplicant and wpa in base.

Approved by:	leres@
MFH:		2018Q3
Differential Revision:	https://reviews.freebsd.org/D16718
Original commitRevision:477403 
02:12 cy search for other commits by this committer
In preparation for applying security patches, switch to grouping of
patches per site as suggested by mat@.

Suggested by:	mat@
Differential Revision:	https://reviews.freebsd.org/D16718
Original commitRevision:477402 
Tuesday, 17 Oct 2017
01:30 cy search for other commits by this committer
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.

Approved by:	leres (maintainer)
Security:	https://w1.fi/security/2017-1/ \
		wpa-packet-number-reuse-with-replayed-messages.txt
Security:	https://www.krackattacks.com/
MFH:		2017Q4
Differential Revision:	D12691
Original commitRevision:452257 
01:30 cy search for other commits by this committer
Use https site.

Approved by:	leres (maintainer)
MFH:		2017Q4
Differential Revision:	D12691 (part of)
Original commitRevision:452256 
Friday, 15 Sep 2017
18:18 leres search for other commits by this committer
Update MAINTAINER on my ports and "Created by" on the ones I created
to use my @FreeBSD.org email address.

 - devel/arduino
 - devel/arduino-glcd
 - devel/arduino-irremote
 - devel/arduino-mk
 - devel/arduino-sevseg
 - net/hostapd
 - net/py-pcap
 - security/bro
 - security/broccoli
 - security/create-cert
 - sysutils/lbl-cf
 - sysutils/lbl-hf
 - www/mini_httpd

Reviewed by:	ler (mentor)
Approved by:	ler (mentor)
Differential Revision:	https://reviews.freebsd.org/D12374
Original commitRevision:449916 
Tuesday, 21 Mar 2017
17:50 krion search for other commits by this committer
Update net/hostapd to 2.6 and fix multiple vulnerabilities

PR:		217907
Submitted by:	maintainer
Approved by:	mat (mentor)
Differential Revision: https://reviews.freebsd.org/D10051
Original commitRevision:436625 
Friday, 30 Sep 2016
17:29 marino search for other commits by this committer
net/hostapd: Fix build on DragonFly and with LibreSSL

1. Return the driver_bsd.c patch, it's still required for DF
2. Modify the os_unix.c patch to include exception for DF
3. Add patch to fix build with LibreSSL (originates from OpenBSD)
4. There's no configure set, so replace ineffective configure arg
   with CFLAGS and LDFLAGS for non-base SSL library

Approved by:	SSL blanket and DF blanket
Original commitRevision:423004 
Friday, 23 Sep 2016
18:20 madpilot search for other commits by this committer
Update to 2.5

PR:		212779
Submitted by:	leres at ee.lbl.gov (maintainer)
Original commitRevision:422688 
Tuesday, 13 Sep 2016
05:01 marino search for other commits by this committer
net/hostapd: Remove PORTS_SSL option and use SSL_DEFAULT

The port is now configured depending on the SSL base specified by the
SSL_DEFAULT variable.  Before it would break by default if SSL_DEFAULT
was set to non-base.  This changes puts hostapd in line with the rest
of the ports tree.

Approved by:	SSL blanket
Original commitRevision:421977 
Thursday, 16 Jun 2016
13:23 mat search for other commits by this committer
Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.

WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo

PR:		210149
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	The FreeBSD Foundation, Absolight
Differential Revision:	https://reviews.freebsd.org/D6577
Original commitRevision:416966 
Sunday, 6 Sep 2015
17:15 danfe search for other commits by this committer
Remove BROKEN_* statements, the port builds fine everywhere.
Original commitRevision:396228 
Tuesday, 2 Jun 2015
09:52 marino search for other commits by this committer
net/hostapd: 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 security/wpa_supplicant

PR:		200567
Submitted by:	Jason Unovitch
Approved by:	maintainer (Craig Leres)
Original commitRevision:388314 
Sunday, 3 May 2015
15:12 amdmi3 search for other commits by this committer
- Add CPE info

Approved by:	portmgr blanket
Original commitRevision:385279 
Sunday, 29 Mar 2015
12:15 marino search for other commits by this committer
net/hostapd: Upgrade version 2.3 => 2.4, add PORTS_SSL option

PR:		198889
Submitted by:	maintainer (leres - ee.lbl.gov)
Original commitRevision:382595 
Thursday, 15 Jan 2015
09:05 tijl search for other commits by this committer
Add missing USE_OPENSSL=yes

PR:		195796
Original commitRevision:377064 
Thursday, 16 Oct 2014
07:19 marino search for other commits by this committer
net/hostapd: Upgrade version 2.2 => 2.3

While upgrading to the latest version released last week:
  * Rebase .config file on latest sample versoin
  * Support non-default prefixes
  * Merge new contents of do-configure target into post-patch target

PR:		194315
Approved by:	maintainer: (Craig Leres)
Original commitRevision:370974 
Sunday, 12 Oct 2014
10:46 marino search for other commits by this committer
net/hostapd: Update WWW + MASTER_SITES and support DragonFly

The domain for hostapd has changed from hostap.epitest.fi to w1.fi
although the former still redirects.  Update WWW and MASTER_SITES to
reflect the new name.

Regenerate the l2 packet patch so that hostapd also builds on DragonFly
(no-op for FreeBSD).

While here, rearrange makefile to remove need for <pre> and <post> and
use of $PORTNAME in $WRKSRC which would break if PORTNAME changes.
Original commitRevision:370693 
Saturday, 7 Jun 2014
05:26 danilo search for other commits by this committer
- Update from 2.1 to 2.2 [1]
- Use just BSD3CLAUSE as LICENSE (according to README)

PR:		ports/190726
Submitted by:	leres@ee.lbl.gov [1]
Original commitRevision:356881 
Friday, 4 Apr 2014
13:56 bapt search for other commits by this committer
s/-script://
Original commitRevision:350124 
Thursday, 13 Mar 2014
10:06 pawel search for other commits by this committer
Update to version 2.1

PR:		ports/187459
Submitted by:	maintainer
Original commitRevision:348049 
Friday, 28 Feb 2014
08:42 ehaupt search for other commits by this committer
Support staging
Original commitRevision:346465 
Friday, 20 Sep 2013
22:10 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
net)
Original commitRevision:327755 
Wednesday, 14 Aug 2013
22:35 ak search for other commits by this committer
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Original commitRevision:324744 
Saturday, 2 Feb 2013
11:44 pawel search for other commits by this committer
Update to version 2.0

PR:		ports/175438
Submitted by:	Craig Leres <leres@ee.lbl.gov> (maintainer)
Original commitRevision:311422 
Monday, 18 Jun 2012
22:27 jgh search for other commits by this committer
- Update to 1.0
- Use ports framework for build:
  - Bonus: Now honours CC/CFLAGS/LDFLAGS
- Remove DISTNAME override
- Update LICENSE (GPLv2 not GPLv1)
- Mark MAKE_JOBS_SAFE
- Patch Makefile to see $(CC) not "CC" when not verbose
- Pet portlint (LICENSE order)

- while here shift where arch is tested, and use MAN{1,8}PREFIX

PR:     ports/169154 (based on)
Submitted by:   koobs.freebsd@gmail.com
Approved by:    maintainer, leres@ee.lbl.gov
Original commit
Thursday, 10 Nov 2011
05:38 linimon search for other commits by this committer
Mark broken on powerpc as well as sparc64.  (In fact, on all the tier-2s.)

Hat:            portmgr
Original commit
Wednesday, 10 Aug 2011
09:13 linimon search for other commits by this committer
Mark as broken on sparc64: does not compile.
Original commit
Saturday, 12 Feb 2011
04:52 miwi search for other commits by this committer
hostapd is a user space daemon for access point and authentication
servers. It implements IEEE 802.11 access point management, IEEE
802.1X/WPA/WPA2/EAP Authenticators, RADIUS client, EAP server, and
RADIUS authentication server. The current version supports Linux
(Host AP, madwifi, mac80211-based drivers) and FreeBSD (net80211).

WWW: http://hostap.epitest.fi/hostapd/

PR:             ports/154621
Submitted by:   leres at ee.lbl.gov
Original commit

Number of commits found: 54