summaryrefslogtreecommitdiff
path: root/net/freeradius
AgeCommit message (Collapse)AuthorFilesLines
2019-11-03net: align variable assignmentsrillig1-2/+2
pkglint -Wall -F --only aligned --only indent -r No manual corrections.
2019-08-11Bump PKGREVISIONs for perl 5.30.0wiz1-1/+2
2019-07-04freeradius: updated to 3.0.19adam6-72/+44
3.0.19: FEATURE IMPROVEMENTS Update dictionary.cisco. Update sqlippool to allow for stored procedures with PostgreSQL. This increases performance substantially Patch from Nathan Ward. Re-added "show client config" command to radmin. Cleaned up mods-available/sql example so that it is easier to understand. Added pfSense dictionary. Update dictionary.h3c Update elasticsearch/logstash config for v6.7.0. EAP-PWD security fixes from Mathy Vanhoef. See http://freeradius.org/security/. BUG FIXES Update dynamic_client module and server core so that the functionality works. This has been broken since at least v2. Fix crash in sqlippool due to escaping changes Patch from Nathan Ward. Fix systemd notify, watchdog and unit files Fix erroneous length check in EAP-FAST. Update documentation to remove old "ignore_null" configuration. Fix default POD port. Should be 3799. Correctly encode vendor-specific "encrypted" attributes 3.0.18: FEATURE IMPROVEMENTS cleanup_delay can now be 30 seconds. This helps with proxies that have packet loss. Do-Not-Respond policies can now be set in the "post-auth" section. Encode / Decode ADSL Forum DHCP options. Fix module ordering issues. e.g. when "sqlippool" needs "sql". See the "instantiate" section of radiusd.conf. Add Big Switch dictionary. Add sql_session_start policy (raddb/policy.d/accounting) This minimizes race conditions when using Simultaneous-Use Patch from Philippe Wooding. For rlm_perl, all variables are now tainted by default. See raddb/mods-available/perl, and the "perl_flags" configuration item. This change should only affect people who are using variables in insecure ways. Allow "sqlcounter" module to be listed in "post-auth". Add support for IPv6 attributes in SQL. The server is better at handling fail-over for outbound RadSec and TCP connections. The server is now more aggressive about retrying failed outbound RadSec and TCP connections. Add TLS-Session-Version and TLS-Session-Cipher-Suite to the "session_state" list. Add expansion for Radsec connections. "%{listen:TLS-...}" for TLS-Client-Cert-* and TLS-Cert-* attributes. Add notes on running "ldapsearch" using the parameters from the LDAP module. "ipaddr" attributes can now be cast to "integer" type attributes in an "update" section. Move main thread queue to using atomic queues. This should help with contention in high load scenarios. Add "recv_buff" setting to listeners. For more details, see sites-available/default. The sqlippool module can now use attributes other than "Pool-Name" to assign IP pools. The "Pool-Name" attribute is still the default. The "unpack" expansion can now unpack substrings. See mods-available/unpack for documentation and examples. The preprocess module now does "ciscvo_vsa_hack" for Eltex-AVPair. Vendors SHOULD NOT USE THAT KIND OF ATTRIBUTE. Allow for <instance>-LDAP-UserDN. See mods-available/ldap for more information. Add sanitizing of control list for moonshot. Update rlm_sql_mysql to be compatible with MySQL 8 Fixes https://bugs.launchpad.net/bugs/1795310. Allow logging of only Access-Accept or Access-Reject messages See radiusd.conf, "auth_accept" and "auth_reject". Removed Connect-Rate comparison. It was unused and broken. Add dictionary.infinera. RPMs can now change raddb location with rpmbuild parameter --define '_sysconfdir /etc'. OpenDirectory module now points to Apple documentation for help with build and configuration. Use OpenSSL HMAC functions instead of local ones. Some SQL modules can now use "auto_escape" to escape unsafe strings See mods-config/sql/main/mysql/queries.conf. Add wispr2date conversion in mods-available/date. Implement dictionary-based handling in rlm_python. Add support for SKIP LOCKED in sqlippool. This can improve performance by an order of magnitude or more. See raddb/mods-config/sql/ippool/*/queries.conf Updated Debian packages to allow for libssl1.1 Allow PSK and certificates at the same time Except for TLS 1.3 which does not support that. Update Debian packages for newer releases Update docker scripts. Add crypt xlat. MySQL connections can now skip verifying the server certificate. Add better mechanism to detect MariaDB (Old MySQL). Add RFC 7532 "bang path" support for realms Update dictionary.ukerna documentation. Add support for systemd service and watchdogs Check for openss/rand.h, and allow building without OpenSSL engine. The default PosgtreSQL queries now use "ON CONFLICT" to better deal with issues. This requires PostgreSQL 9.5 or later. Please use a recent version of PostgreSQL, or edit the default queries to remove "ON CONFLICT". BUG FIXES The session-state list is no longer cleaned in the inner-tunnel. This lets the outer Access-Reject section access session-state. Fix typo in lock initialization for TLS sockets Found by Sergio NNX. Add check for crash when home server down Add username key for postauth table. Better libpcap checks, when the header files or libraries are missing. Allow building with old versions of OpenSSL Allow non-FreeRADIUS State attributes to be used with the "session-state" list. i.e. State length != 16. Be more aggressive about cleaning up zombie children when running in debug mode. Use LTDL_DEEPBIND, which fixes issues with Oracle libraries exporting LDAP API functions. unlock files when asked to unlock them. return error instead of asserting in map code. Don't write 0 bytes to SSL. Remove "expiry_time IS NULL" from allocate_update query. Various dictionary cleanups and consistency checks rlm_python has stronger thread locking to prevent reported issues. Performance may be affected. Don't allow Message-Authenticator to overflow past the end of a large packet. Fix crash in sqlippool when SQL server goes away Typos in man pages. Patch from Nikolai Kondrashov Check for correct OpenSSL version in vulnerability list. Patch from Christian Hesse. Fix crash with CoA packets/ Fix crash in rlm_exec with CoA. Print errors while parsing the log config, and don't quit when deprecated log settings are found. Fix DHCP encoder xlat so that it can be used with a list of attributes. It previously only encoded the first member of the list, and now encodes all members. The "expr" module now skips more whitespace. Remove internal FreeRADIUS-Response-Delay attributes from attr_filter Access-Reject. Don't send junk to redis when maximum args reached. Small updates to IPv6 for accounting schema Fix OpenDirectory integration in rlm_mschap. Fix slow memory leak with dynamic clients. Don't artificially truncate debug output for long strings. Fix memory leak in EAP-PWD. Fix crash in "hints" file with Fall-Through = yes. Fix crash / timer issues with many CoA packets. Fix attr_filter so that it does not treat vendor attributes of number 26 as Vendor-Specific. Fix reconnect correctly in rlm_sql_mysql. Fix rlm_cache to properly use Cache-TTL < 0 Fix rare occurance of bad xlat expansion. Check for rare race condition when a proxy reply arrives too late.
2018-12-19Fix startup crash when running outside of gdb on BSD systemsmanu2-1/+43
On BSD systems, ptrace(PT_DETACH) uses a third argument for resume address, with the magic value (void *)1 to resume where process stopped. Specifying NULL there leads to a crash because process resumes at address 0. We introduce an OS-dependent _PTRACE_DETACH macro to specify third argument as NULL on Linux and (void *)1 on other systems. Always using (void *)1 could be another solution, since basic tests suggests passing (void *)1 as third argument on Linux does not cause harm. From upstream https://github.com/FreeRADIUS/freeradius-server/commit/1f8cd27b78c011826bc0744debb4ed60b3f0584a
2018-10-08freeradius: Move openssl buildlink into common file.jperkin2-3/+5
Also add explicit openssl configure arguments. Fixes issue where the module builds could not find openssl.
2018-09-25freeradius: Reset PKGREVISION after update.jperkin1-3/+1
2018-09-25freeradius*: Update to 3.0.17.jperkin5-26/+18
Provided by Coy Hile in joyent/pkgsrc#131. Fixes an issue where the module builds would fail if they found a system LDAP. Fix print-PLIST while here. FreeRADIUS 3.0.17 Tue 17 Apr 2018 14:00:00 EDT urgency=low Feature improvements * Add CURLOPT_CAINFO. Patch from Nicolas C. #2167 * "stats home server" now supports "src IPADDR", to specify home server also by source IP. Fixes #2169. * Add Dockerfiles for a selection of common systems. * Increase number of permitted file descriptors, for systems with many home servers. * Add TLS-Client-Cert-X509v3-Extended-Key-Usage-OIDs. Patch from Isaac Boukris. Fixes #2205. * Update main READMEs. Patches from Matthew Newton. * Added dictionary.mimosa Bug fixes * Don't call post-proxy twice when proxying to a virtual server. Matthew Newton, #2161. * Use "raw" string value for shared secrets and dynamic clients. It now parses strings with backslashes and "special characters" correctly. Fixes #2168. * Fix RuntimeDirectory for RedHat, from Alan Buxey. * Relax checks in 'if' parser from Isaac Bourkis * Minor cleanups for %{debug_attr:&request} from Isaac Boukris. * Be more aggressive about cleaning up cached certificate attributes, due to deficiencies in OpenSSL. Reported by Nicolas Reich. * Be more accepting when parsing IPv6 addresses. Bug noted by Klara Mall. * Fix double free in rlm_sql. Fixes #2180. * rlm_detail now writes empty Access-Accept packets. * rlm_python can now create tagged attributes. * Don't crash on duplicate realm + authhost / accthost. Bug found by Richard Palmer. * Allow partial certificate chain to trusted CA. Fixes #2162 * Treat SSL_read() returning zero as error. Fixes #2164. * detail writer now checks if the file was renamed or deleted. * Add User-Name to Access-Accept if EAP-Message exists, not Stripped-User-Name. * RedHat Systemd updates. Fixes #2184 * Use correct API for State variable in rlm_securid. * Remove broken radclient option "-i". * Fix "users" file (and hints, etc). So that it does not get confused about entry ordering with multiple $INCLUDEs. * Fix rlm_sql to expand the un-escaped string, not the raw string. * Link default and inner-tunnel only if they exist. Fixes #2206. * Don't use both IP_PKTINFO and IP_SENDSRCADDR. * Always install signal handler for SIGINT (needed by Docker). * Fix intermediate CA flow for OCSP. Fixes #2160. Intermediate certs which are not self-signed will now be checked. * sqlippool now returns "fail" if it fails IP allocation. * Fix rlm_yubikey to look for correct attribute in replay attack check.
2018-08-22Recursive bump for perl5-5.28.0wiz1-1/+2
2018-04-12freeradius: Updated to 3.0.16nonaka11-188/+28
2018.01.11 Version 3.0.16 has been released. The focus of this release is stability. Feature Improvements * rlm_python now supports multiple lists. From #2031. * Add trust router re-keying. From #2007. * Add support for Samba / AD LDAP schema See doc/schemas/ldap/samba/README.txt and doc/schemas/ldap/samba/. * Add "tls_min_version" and "tls_max_version" to EAP module for Debian OpenSSL issues. * Better documentation for client certificates in PEAP and TTLS: it usually doesn't work. Fixes #2068. * Distinguish login failure from AD unavailable. Fixes #2069. * Update RH spec files. Fixes #2070. * Run Post-Proxy-Type if all home servers are dead Fixes #2072. * Print offending IP addresses when EAP sessions come from two upstream home servers, and rate-limit the messages. * Minor packaging updates. * Better documentation for rlm_rest. * EAP-FAST now has it's own "cipher_list", so that it is easier to configure. * EAP-FAST now forcibly disables TLS1.2, until such time as we implement the new keying mechanism from TLS1.2. * Add documentation for allow_expired_crl. * Update Debian logrotation. #2093 and #2101. * DHCP relay can now drop responses. #2095. * rlm_sqlippool can now assign Delegated-IPv6-Prefix It also now can assign any IPv4 or IPv6 address Based on patches from maximumG. #2094 See raddb/mods-available/sqlippool for changes. * radeapclient can now use EAP-SIM-Ki to dynamically create the necessary triplets. * Explain why many LDAP connections are closed Fixes #1969. * Debian build / package issues fixed by Matthew Newton. * dictionary.patton updates from Brice Schaffner. Fixes #2137. * Added scripts to build "inner-server.pem", and updated mods-config/inner-eap and certs/README to match. * Added provisions for using an external CA. See raddb/certs/. * Include dhcpclient binary in freeradius-dhcp debian packge. Bug Fixes * Bind the lifetime of program name and python path to the module FR-AD-002 (redone). * Pass correct statement length into sqlite3_prepare[_v2] FR-AD-003 (redone). * Allow 100-Continue responses with additional headers in rlm_rest. * fix corner case where detail files were not being locked correctly. * Fix (SQL-Group == "%{...}") checks, and same for LDAP-Group Fixes #1947. * Clean up exfile code. Which should help to avoid issues with reading / writing 100's of detail files. * Fix build for winbind. Patch from Alex Clouter. * Fix checkrad for Mikrotik. Patch from Muchael Ducharme. * Fix home server stats lookup. Patch from Phil Mayers. * Add libjson-c3 as an optional dependency. * Require LTB OpenLDAP on CentOS / Redhat, to avoid linking against NSS, which breaks the server. Fixes #2040. * rlm_python fixes. Fixes #2041. * Typos in "man" pages. Fixes #2045. * Expand "next" in %{%{...}:-%{...}}. Fixes #2048. * Don't add TLS attributes twice. Fixes #2050. * Fix memory allocation in rlm_rest. Fixes #2051. * Update trustrouter for new API. Fixes #2059. * Fix SQLite issues on FreeBSD. Fixes #2060. * Don't do debug logging of bad passwords. Fixes #2064. * More graceful handling of "die" in rlm_perl. Fixes #2073. * Fix occasional crash when using cisco_accounting_username_bug = yes. * EAP-FAST fixes from Isaac Boukris #2078, #2076, and #2082, #2126. * DHCP fixes, relay, #2092, add run-time check, #2028. * Decode multiple RADIUS packets at a time in highly loaded RadSec connections. Patch from Jan Tomasek. #2106. * TunnelPassword is not "single value" in LDAP schema Fixes #2061. * sql log now opens the expanded filename, not the input one This was a regression introduced in 3.0.15. * Remove unnecessary UNIQUE constrain in Oracle schemas. * Fix SSL thread and locking issues when modules also use SSL Fixes #2125 and #2129. * Re-add dhcpclient "raw packet" changes. Patches from Nicolas Chaigne and Matthew Newton. Fixes #2155.
2018-03-31Fix build on NetBSD/current.joerg2-5/+16
2018-01-28Bump PKGREVISION for gdbm shlib major bumpwiz1-1/+2
2018-01-23freeradius: Fix Darwin .dylib extension.jperkin2-54/+59
2017-09-09Fix build on NetBSD 8+. Fix Perl use.joerg5-9/+139
2017-08-26Update net/freeradius to 3.0.15.fhajny30-688/+1090
Based on a PR from @coyhile (https://github.com/joyent/pkgsrc/issues/18). Splits modules with external dependencies into separate packages. The 1.1.x branch was EOL'd in 2008. No upgrade guide from 1.1.x to 3.0.x seem to exist. Summary of improvements in 3.x: - Moved configuration entries in radiusd.conf to make more sense. - Added the "integer64" and "ipv4prefix" data types. - Added RADIUS over TLS (i.e. RadSec). See raddb/sites-available/tls. - Updated internal API to support new attributes and formats. - Added code to send SNMP Traps. See raddb/trigger.conf. - Added preliminary support for Apple's Grand Central Dispatch. - Added provisions for raddb/dictionary.local, for local changes See raddb/dictionary for more details. - Added packet/s tracking. See max_pps in the "listen" section. - The %{} expansions and "unlang" conditions are now parsed at server start. Descriptive errors are produced for syntax and format errors. - Casting is now supported for "unlang" comparisons. See "man unlang" e.g. <ipaddr>127.0.0.1 == Framed-IP-Address. - Direct comparison of attribute references is now supported e.g. &Foo == &Bar. This avoids stringification of the attributes. - Direct assignment of attributes is now supported e.g. Foo := &Bar. It also works for "octets" data types. - Comparisons of IPv4 and IPv6 prefixes are now supported The "<" operator means "within the prefix" for comparisons. - New sha1 xlat expansion (thanks to Alan Buxey). - Colourised log messages when logging to stdout. Look for yellow warnings and red errors. Doing this will save you a LOT of grief. - If the PCRE library is available, use it (insted of the POSIX functions) to process regular expressions (thanks to Phil Mayers). - -xv now displays all the features the server was built with, and the versions of the core libraries (libtalloc, libssl). Summary of improvements in 2.x: - simple policy language (see "man unlang") - virtual servers ("raddb/sites-available/README") - IPv6 support - better proxy support ("raddb/proxy.conf") - More EAP types - Debugging output should be <em>much</em> easier to understand - VMPS support - More modules have been moved to "stable" status (python, etc.) - SQL configuration has been cleaned up (see "raddb/sql/*") - limited support for HUP. (The configuration for some modules is re-loaded on HUP. Nothing else is reloaded.) - check configuration and exit ("radiusd -C") - Server core is now event based (simpler, more powerful)
2016-10-09Recursive bump for all users of pgsql now that the default is 95.wiz1-2/+2
2016-07-09Bump PKGREVISION for perl-5.24.0 for everything mentioning perl.wiz1-2/+2
2016-03-05Bump PKGREVISION for security/openssl ABI bump.jperkin1-2/+2
2015-11-08Remove a fix intended for NetBSD/amd64 2.0, added to address PR/31225 in r1.37sevan1-5/+1
It's safe to assume the test for MACHINE_ARCH == "amd64" doesn't actually apply to NetBSD, hence being redundant. ok joerg@
2015-11-04Add SHA512 digests for distfiles for net categoryagc1-1/+2
Problems found with existing digests: Package haproxy distfile haproxy-1.5.14.tar.gz 159f5beb8fdc6b8059ae51b53dc935d91c0fb51f [recorded] da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated] Problems found locating distfiles: Package bsddip: missing distfile bsddip-1.02.tar.Z Package citrix_ica: missing distfile citrix_ica-10.6.115659/en.linuxx86.tar.gz Package djbdns: missing distfile djbdns-1.05-test25.diff.bz2 Package djbdns: missing distfile djbdns-cachestats.patch Package djbdns: missing distfile 0002-dnscache-cache-soa-records.patch Package gated: missing distfile gated-3-5-11.tar.gz Package owncloudclient: missing distfile owncloudclient-2.0.2.tar.xz Package poink: missing distfile poink-1.6.tar.gz Package ra-rtsp-proxy: missing distfile rtspd-src-1.0.0.0.tar.gz Package ucspi-ssl: missing distfile ucspi-ssl-0.70-ucspitls-0.1.patch Package waste: missing distfile waste-source.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-06-12Recursive PKGREVISION bump for all packages mentioning 'perl',wiz1-2/+2
having a PKGNAME of p5-*, or depending such a package, for perl-5.22.0.
2014-11-02fixes unusual usage of PLIST_SRC and MESSAGE_SRC.obache2-12/+5
2014-05-29Bump for perl-5.20.0.wiz1-2/+2
Do it for all packages that * mention perl, or * have a directory name starting with p5-*, or * depend on a package starting with p5- like last time, for 5.18, where this didn't lead to complaints. Let me know if you have any this time.
2014-03-11Remove example rc.d scripts from PLISTs.jperkin1-2/+1
These are now handled dynamically if INIT_SYSTEM is set to "rc.d", or ignored otherwise.
2014-02-12Recursive PKGREVISION bump for OpenSSL API version bump.tron1-2/+2
2013-07-12Bump PKGREVISION of all packages which create users, to pick up change ofjperkin1-2/+2
sysutils/user_* packages.
2013-05-31Bump all packages for perl-5.18, thatwiz1-2/+2
a) refer 'perl' in their Makefile, or b) have a directory name of p5-*, or c) have any dependency on any p5-* package Like last time, where this caused no complaints.
2013-04-14Drop patch that breaks build with modern libtool.joerg2-14/+1
2013-03-02Bump PKGREVISION for mysql default change to 55.wiz1-2/+2
2013-02-06PKGREVISION bumps for the security/openssl 1.0.1d update.jperkin1-2/+2
2012-12-16recursive bump from cyrus-sasl libsasl2 shlib major bump.obache1-2/+2
2012-10-23Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-2/+1
2012-10-03Bump all packages that use perl, or depend on a p5-* package, orwiz1-2/+2
are called p5-*. I hope that's all of them.
2012-01-24Recursive dependency bump for databases/gdbm ABI_DEPENDS change.sbd1-2/+2
2011-08-23Recursive bump from gdbm shlib bump.obache1-1/+2
2010-11-13Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES.shattered1-2/+2
2010-10-29Changes 1.1.8:adam4-27/+39
Bug fixes: Fix crash (memcpy with length -1) when invalid Tunnel-Password attributes are received.
2010-06-28DESTDIR supportjoerg1-12/+9
2010-05-29Properly link libradius.joerg1-2/+2
2010-01-17Recursive PKGREVISION bump for jpeg update to 8.wiz1-2/+2
2009-12-21Bump revisions for libltdl update.joerg1-2/+2
2009-07-17Give up MAINTAINERadrianp1-2/+2
2009-06-30Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build withjoerg1-1/+3
MAKE_JOBS=2 and worked without.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-8/+1
2008-05-15Add CONFLICTS for upcoming freeradius 2.x importadrianp1-1/+3
2008-01-18Per the process outlined in revbump(1), perform a recursive revbumptnn1-1/+2
on packages that are affected by the switch from the openssl 0.9.7 branch to the 0.9.8 branch. ok jlam@
2007-12-02Remove Ex-MASTER_SITE. From Zafer Aydogan.wiz1-3/+2
2007-11-24Fix builds on Solaris using the SunPRO compiler. This should fix PR# 36186.adrianp3-4/+79
Also do some pkglintification while we are here.
2007-09-18Update to 1.1.7adrianp4-21/+23
Feature Improvements * Updated LDAP documentation. * Added note on DH parameters in eap.conf, and debugging messages which complain if DH is used, but not configured properly. * Updated the Mikrotik dictionary. Added a note that the sample dictionary they supply is broken. * Output more information on blocked threads, which should help narrow down which modules is causing the problem. * Added more eDirectory support. * rlm_ldap now prints out attributes in the standard format * Enabled server-side handling of procedures in MySQL Bug Fixes * Added NT-Hash support for mschap_xlat. * Corrected documentation to point to correct location of files. * Checks for more recent FreeBSD versions. * uses -DLDAP_DEPRECATED to avoid OpenLDAP crashes. * Use correct value for authentication name in rlm_mschap. * Fix over-ride for usernames when use_tunneled_reply = yes.
2007-07-04Make it easier to build and install packages "unprivileged", wherejlam1-2/+4
the owner of all installed files is a non-root user. This change affects most packages that require special users or groups by making them use the specified unprivileged user and group instead. (1) Add two new variables PKG_GROUPS_VARS and PKG_USERS_VARS to unprivileged.mk. These two variables are lists of other bmake variables that define package-specific users and groups. Packages that have user-settable variables for users and groups, e.g. apache and APACHE_{USER,GROUP}, courier-mta and COURIER_{USER,GROUP}, etc., should list these variables in PKG_USERS_VARS and PKG_GROUPS_VARS so that unprivileged.mk can know to set them to ${UNPRIVILEGED_USER} and ${UNPRIVILEGED_GROUP}. (2) Modify packages to use PKG_GROUPS_VARS and PKG_USERS_VARS.
2007-04-14Update to 1.1.6adrianp3-7/+10
Feature Improvements * Added more dictionaries Bug Fixes * Corrected typo in rlm_pap.c (closes #440) * Corrected typo in src/main/auth.c (closes #437) * Suppress SSL error messages if error is zero. (closes #436) * Don't complain about "Error in read client certificate A" if we expect to read it in the next packet. Fix based on patch by Dan Lukes. * Corrected nearly 30 bugs found by Coverity See also http://scan.coverity.com * Don't die on HUP. Instead leak memory (sorry). After a few hundred HUP's, the server will have leaked a few megabytes of memory, and you should probably re-start it. It's ugly, but better than dying. (Closes #426) * Corrected a few double free's * Corrected typo in radrelay, which prevented it from working * Made Firebird module build * Fixed bug in PostgreSQL module that caused server crash. * Fixed bug in SQL module that could cause server to crash.