]>
git.ipfire.org Git - thirdparty/kea.git/log
Marcin Siodelski [Thu, 29 Jul 2021 18:13:12 +0000 (20:13 +0200)]
[#1403] ha-sync-complete-notify command created
Implemented creator for the ha-sync-complete-notify command.
Marcin Siodelski [Mon, 20 Sep 2021 14:04:01 +0000 (16:04 +0200)]
[#2094] Minor ChangeLog update per review
Marcin Siodelski [Mon, 20 Sep 2021 09:51:34 +0000 (11:51 +0200)]
[#2094] Updated MySQL migration 12
The dhcp_client_class values are set to NULL when the options do not
belong to a class.
Marcin Siodelski [Mon, 20 Sep 2021 09:25:31 +0000 (11:25 +0200)]
[#2094] Removed client class insert
Removed inserting dhcp client class from host manager. Previously, the
host manager would set dhcp_client_class column to an empty string causing
a referential integrity error with client classes. The column is now set
to null by default.
Thomas Markwalder [Fri, 17 Sep 2021 19:20:03 +0000 (15:20 -0400)]
[#2094] Updated schema version constant
modified: ../../mysql/mysql_constants.h
Marcin Siodelski [Fri, 17 Sep 2021 13:05:12 +0000 (15:05 +0200)]
[#2094] Added ChangeLog entry for #2094
Marcin Siodelski [Fri, 17 Sep 2021 13:02:32 +0000 (15:02 +0200)]
[#2094] Created MySQL schema version 12
The updated schema causes auto-deletion of options associated with
deleted client classes.
Andrei Pavel [Thu, 16 Sep 2021 15:37:05 +0000 (18:37 +0300)]
[#2067] ARM: remove dot before commands in API Ref
Andrei Pavel [Thu, 16 Sep 2021 15:36:54 +0000 (18:36 +0300)]
[#2067] ARM: Update invalid Boost URL
Tomek Mrugalski [Mon, 20 Sep 2021 17:50:27 +0000 (19:50 +0200)]
[#2034] ChangeLog added
Andrei Pavel [Sat, 11 Sep 2021 16:51:55 +0000 (19:51 +0300)]
[#2081] remove docbook and docgen mentions (extra)
Andrei Pavel [Sat, 11 Sep 2021 16:27:06 +0000 (19:27 +0300)]
[#2081] install the default openssl-devel on CentOS 7
Andrei Pavel [Fri, 10 Sep 2021 10:41:44 +0000 (13:41 +0300)]
[#2081] remove attempt to link with OpenSSL 1.1
Thomas Markwalder [Fri, 17 Sep 2021 15:09:21 +0000 (11:09 -0400)]
[#1307] Fixed ARM spelling errors
modified: sphinx/arm/hooks-ha.rst
Thomas Markwalder [Thu, 16 Sep 2021 19:02:35 +0000 (15:02 -0400)]
[#1307] Added warning to ARM
modified: doc/sphinx/arm/hooks-ha.rst
Thomas Markwalder [Wed, 15 Sep 2021 16:02:32 +0000 (12:02 -0400)]
[#1307] Addressed review comments
Minor clean ups in:
ChangeLog
doc/examples/kea4/all-keys.json
doc/examples/kea6/all-keys.json
doc/sphinx/arm/hooks-ha.rst
src/bin/dhcp4/tests/config_parser_unittest.cc
Thomas Markwalder [Wed, 8 Sep 2021 11:19:58 +0000 (07:19 -0400)]
[#1307] Fix double include in dhcp6/tests
src/bin/dhcp6/tests/get_config_unittest.cc
src/bin/dhcp6/tests/get_config_unittest.cc.skel
- removed double include of user_context_utils.h
Thomas Markwalder [Tue, 7 Sep 2021 19:31:46 +0000 (15:31 -0400)]
[#1307] Added dhcp6 parked-packet-limit unit test
src/bin/dhcp4/tests/hooks_unittest.cc
fixed a typo
src/bin/dhcp6/tests/hooks_unittest.cc
TEST_F(HooksDhcpv6SrvTest, leases6ParkedPacketLimit) - new test
Thomas Markwalder [Tue, 7 Sep 2021 18:14:02 +0000 (14:14 -0400)]
[#1307] Updated ARM doc and added ChangeLog
ChangeLog
doc/sphinx/arm/hooks-ha.rst
Thomas Markwalder [Fri, 3 Sep 2021 18:44:53 +0000 (14:44 -0400)]
[#1307] kea-dhcp6 supports parked-packet-limit
src/bin/dhcp6/dhcp6_lexer.ll
src/bin/dhcp6/dhcp6_parser.yy
src/bin/dhcp6/json_config_parser.cc
src/lib/dhcpsrv/parsers/simple_parser6.cc
doc/examples/kea6/all-keys.json
Added parked-packet-limit
src/bin/dhcp6/dhcp6_messages.*
DHCP6_HOOK_LEASES6_PARKING_LOT_FULL
src/bin/dhcp6/dhcp6_srv.cc
Dhcpv6Srv::processDhcp6Query() - drops the packet if the parking
lot is full
src/bin/dhcp6/tests/get_config_unittest.cc
updated
Thomas Markwalder [Fri, 3 Sep 2021 17:07:25 +0000 (13:07 -0400)]
[#1307] Added a unit test for dhcp4_srv.cc
src/bin/dhcp4/tests/hooks_unittest.cc
TEST_F(HooksDhcpv4SrvTest, parkedPacketLimit) - new test
Thomas Markwalder [Fri, 3 Sep 2021 12:26:38 +0000 (08:26 -0400)]
[#1307] kea-dhcp4 now enforces parked-packet-limit
src/bin/dhcp4/dhcp4_srv.cc
Dhcpv4Srv::processDhcp4Query() - now drops packet and response
if parking lot size reaches parked-packet-limit
src/bin/dhcp4/dhcp4_messages.*
DHCP4_HOOK_LEASES4_PARKING_LOT_FULL - new message
Thomas Markwalder [Thu, 2 Sep 2021 19:20:09 +0000 (15:20 -0400)]
[#1307] Added parked-packet-limit parameter to kea-dhcp4
Can be parsed, but does nothing
doc/examples/kea4/all-keys.json
src/bin/dhcp4/dhcp4_lexer.ll
src/bin/dhcp4/dhcp4_parser.yy
src/bin/dhcp4/json_config_parser.cc
src/lib/dhcpsrv/parsers/simple_parser4.cc
added parked-packet-limit
src/bin/dhcp4/tests/config_parser_unittest.cc
TEST_F(Dhcp4ParserTest, parkedPacketLimit) - new test
src/bin/dhcp4/tests/get_config_unittest.cc
updated
Thomas Markwalder [Thu, 2 Sep 2021 13:49:18 +0000 (09:49 -0400)]
[#1307] Added getSize() to ParkingLot
src/lib/hooks/parking_lots.h
src/lib/hooks/tests/parking_lots_unittest.cc
Marcin Siodelski [Thu, 16 Sep 2021 15:41:02 +0000 (17:41 +0200)]
[#2077] Corrected an issue in MySQL CB (v6)
DHCPv6 client classes failed to evaluate during insertion to the database.
Andrei Pavel [Thu, 16 Sep 2021 14:00:03 +0000 (14:00 +0000)]
[#2077] Applied typo fix
Andrei Pavel [Thu, 16 Sep 2021 13:59:20 +0000 (13:59 +0000)]
[#2077] Applied typo fix
Marcin Siodelski [Sat, 4 Sep 2021 16:55:33 +0000 (18:55 +0200)]
[#2077] Added ChangeLog for issue 2077
Marcin Siodelski [Sat, 4 Sep 2021 15:49:29 +0000 (17:49 +0200)]
[#2077] Init match expressions
Match expressions are now initialized for client classes fetched from the
configuration backend.
Francis Dupont [Tue, 14 Sep 2021 13:08:09 +0000 (15:08 +0200)]
[#2088] Changed sets by lists
Razvan Becheriu [Wed, 15 Sep 2021 08:08:01 +0000 (11:08 +0300)]
[#2088] fixed crash on server shutdown
Francis Dupont [Tue, 14 Sep 2021 13:24:15 +0000 (15:24 +0200)]
[#2040] Added a ChangeLog entry
Francis Dupont [Sun, 5 Sep 2021 07:04:01 +0000 (09:04 +0200)]
[#2040] Added D2Stats::init
Francis Dupont [Sat, 4 Sep 2021 20:56:11 +0000 (22:56 +0200)]
[#2040] Began stats UTs
Andrei Pavel [Tue, 14 Sep 2021 08:44:29 +0000 (11:44 +0300)]
[#2049] improve build error message
Andrei Pavel [Tue, 7 Sep 2021 07:10:00 +0000 (10:10 +0300)]
[#2049] some fixes for NETCONF build
Andrei Pavel [Tue, 7 Sep 2021 08:37:42 +0000 (11:37 +0300)]
[#2049] AX_FIND_LIBRARY: add libdir to rpath
Andrei Pavel [Tue, 14 Sep 2021 08:27:16 +0000 (11:27 +0300)]
[#2049] AX_FIND_LIBRARY: look in lib64 also
Andrei Pavel [Fri, 10 Sep 2021 15:24:08 +0000 (18:24 +0300)]
[#2034] atexit(mysql_library_end())
Francis Dupont [Fri, 10 Sep 2021 14:47:43 +0000 (16:47 +0200)]
[#2078] Added unit test
Razvan Becheriu [Thu, 9 Sep 2021 11:38:12 +0000 (14:38 +0300)]
[#2078] use virtual function to create TSIGContext
Razvan Becheriu [Wed, 8 Sep 2021 07:44:15 +0000 (10:44 +0300)]
[#2078] fixed documentation
Razvan Becheriu [Tue, 7 Sep 2021 15:13:36 +0000 (18:13 +0300)]
[#2078] updated generated files
Francis Dupont [Mon, 6 Sep 2021 18:41:40 +0000 (20:41 +0200)]
[#2078] Moved the factory to libd2srv
Francis Dupont [Mon, 6 Sep 2021 18:20:20 +0000 (20:20 +0200)]
[#2078] Removed const
Francis Dupont [Mon, 6 Sep 2021 18:07:14 +0000 (20:07 +0200)]
[#2078] Added TSIG context factory
Francis Dupont [Sun, 5 Sep 2021 21:55:43 +0000 (23:55 +0200)]
[#2078] Update for new commands
Francis Dupont [Sun, 5 Sep 2021 15:26:37 +0000 (17:26 +0200)]
[#2078] Updated after key container change
Francis Dupont [Sun, 5 Sep 2021 12:03:59 +0000 (14:03 +0200)]
[#2078] Updated doc
Andrei Pavel [Mon, 6 Sep 2021 19:30:10 +0000 (22:30 +0300)]
[#2064] hammer.py: Debian uses mariadb.service
Andrei Pavel [Mon, 6 Sep 2021 17:32:08 +0000 (20:32 +0300)]
[#2064] hammer.py: install lxc on Debian (extra)
Andrei Pavel [Mon, 6 Sep 2021 17:28:26 +0000 (20:28 +0300)]
[#2064] hammer.py: ensure postgres entry in hba
Andrei Pavel [Fri, 3 Sep 2021 11:59:12 +0000 (14:59 +0300)]
[#2064] hammer.py: restart mysql on deb OSs
Andrei Pavel [Fri, 3 Sep 2021 12:00:03 +0000 (15:00 +0300)]
[#2064] hammer: don't modify postgres entry in hba
Andrei Pavel [Wed, 1 Sep 2021 10:39:57 +0000 (13:39 +0300)]
[#2064] hammer: change pg auth method to md5
Francis Dupont [Sat, 4 Sep 2021 13:59:07 +0000 (15:59 +0200)]
[#2040] Always have 3 / before @todo
Razvan Becheriu [Fri, 3 Sep 2021 14:05:52 +0000 (17:05 +0300)]
[#2040] fixed indentation, spaces and typos
Francis Dupont [Thu, 2 Sep 2021 09:48:13 +0000 (11:48 +0200)]
[#2040] Spelling
Francis Dupont [Thu, 19 Aug 2021 08:12:26 +0000 (10:12 +0200)]
[#2040] Checkpoint: todo UTs, ...
Francis Dupont [Wed, 18 Aug 2021 22:37:26 +0000 (00:37 +0200)]
[#2040] Checkpoint (todo: add stat UTs)
Francis Dupont [Wed, 18 Aug 2021 18:15:18 +0000 (20:15 +0200)]
[#2040] Checkpoint: began D2 stats
Razvan Becheriu [Thu, 2 Sep 2021 13:12:22 +0000 (16:12 +0300)]
[#2011] documentation fixes
Francis Dupont [Tue, 17 Aug 2021 15:43:34 +0000 (17:43 +0200)]
[#2011] Replaced 2.0.0 by 1.9.11
Francis Dupont [Mon, 16 Aug 2021 18:15:00 +0000 (20:15 +0200)]
[#2011] Spelling
Francis Dupont [Mon, 16 Aug 2021 14:59:17 +0000 (16:59 +0200)]
[#2011] Updated d2_cfg_tests.json
Francis Dupont [Mon, 16 Aug 2021 14:21:40 +0000 (16:21 +0200)]
[#2011] Checkpoint: finished doc part
Francis Dupont [Mon, 16 Aug 2021 11:39:09 +0000 (13:39 +0200)]
[#2011] Checkpoint: updated examples
Andrei Pavel [Thu, 2 Sep 2021 12:02:08 +0000 (15:02 +0300)]
[#2058] hammer.py: retry upload on 504
Andrei Pavel [Fri, 27 Aug 2021 15:54:59 +0000 (18:54 +0300)]
[#2058] hammer.py: indentation (minor change)
Andrei Pavel [Tue, 31 Aug 2021 13:14:30 +0000 (16:14 +0300)]
[#2072] 1.9.12-git starts here.
Andrei Pavel [Mon, 30 Aug 2021 11:55:14 +0000 (14:55 +0300)]
[#2063] DROP FOREIGN KEY for MySQL 5 compatibility
Andrei Pavel [Mon, 30 Aug 2021 11:13:36 +0000 (14:13 +0300)]
[#2061] remove redundant initSysrepo()
Razvan Becheriu [Sat, 28 Aug 2021 22:03:56 +0000 (01:03 +0300)]
[#2061] fixed TSAN warnings in kea-netconf
Razvan Becheriu [Fri, 27 Aug 2021 18:40:34 +0000 (21:40 +0300)]
[#2043] allow callbacks to create CS inside the CS constructor and destructor
Wlodek Wencel [Fri, 27 Aug 2021 13:12:45 +0000 (06:12 -0700)]
[#2055] fixed typo
Wlodek Wencel [Fri, 27 Aug 2021 12:53:34 +0000 (05:53 -0700)]
parsers regenerated
Wlodek Wencel [Fri, 27 Aug 2021 12:47:44 +0000 (05:47 -0700)]
Changelog entry, dates, messages for release
Razvan Becheriu [Fri, 27 Aug 2021 10:11:45 +0000 (13:11 +0300)]
[#2053] bump lib versions for 1.9.11
Razvan Becheriu [Thu, 26 Aug 2021 13:03:12 +0000 (16:03 +0300)]
[#2051] fixed comments
Thomas Markwalder [Thu, 26 Aug 2021 10:37:40 +0000 (06:37 -0400)]
[#2051] Addressed review comments
Minor clean-ups only.
Thomas Markwalder [Wed, 25 Aug 2021 17:45:06 +0000 (13:45 -0400)]
[#2051] Removed CriticalSection use from lease commands
Lease commands no longer attempt to create CSes if they
detect a locked address; rather they fail the update with
a ResourceBusy exception. Note leaseX-wipe commands still
create critical sections.
src/hooks/dhcp/lease_cmds/lease_cmds.cc
LeaseCmdsImpl::leaseAddHandler()
LeaseCmdsImpl::lease6BulkApplyHandler()
LeaseCmdsImpl::lease6BulkApplyHandler()
LeaseCmdsImpl::lease4UpdateHandler()
LeaseCmdsImpl::lease6UpdateHandler() - replaced CriticalSection logic with
fail with error when target address is busy
src/hooks/dhcp/lease_cmds/tests/lease_cmds_unittest.cc
TEST_F(LeaseCmdsTest, lease4ConflictingAdd)
TEST_F(LeaseCmdsTest, lease4ConflictingUpdate)
TEST_F(LeaseCmdsTest, lease6ConflictingAdd)
TEST_F(LeaseCmdsTest, lease6ConflictingUpdate) - new tests
src/lib/dhcpsrv/resource_handler.h
ResourceBusy new exception class
Razvan Becheriu [Wed, 25 Aug 2021 14:45:24 +0000 (17:45 +0300)]
[#2043] updated exception message
Razvan Becheriu [Wed, 25 Aug 2021 14:06:06 +0000 (17:06 +0300)]
[#2043] fixed comment
Razvan Becheriu [Wed, 25 Aug 2021 13:32:17 +0000 (16:32 +0300)]
[#2043] updared ChangeLog
Razvan Becheriu [Wed, 25 Aug 2021 13:03:40 +0000 (16:03 +0300)]
[#2043] addressed comments
Razvan Becheriu [Wed, 25 Aug 2021 05:28:40 +0000 (08:28 +0300)]
[#2043] add ChangeLog
Razvan Becheriu [Tue, 24 Aug 2021 21:42:08 +0000 (00:42 +0300)]
[#2043] remove check for CS in lease_cmds
Razvan Becheriu [Tue, 24 Aug 2021 19:29:39 +0000 (22:29 +0300)]
[#2043] fixed unittests
Razvan Becheriu [Tue, 24 Aug 2021 19:09:03 +0000 (22:09 +0300)]
[#2043] code cleanup
Razvan Becheriu [Tue, 24 Aug 2021 19:02:15 +0000 (22:02 +0300)]
[#2043] code cleanup
Razvan Becheriu [Tue, 24 Aug 2021 18:56:58 +0000 (21:56 +0300)]
[#2043] code cleanup
Razvan Becheriu [Tue, 24 Aug 2021 18:50:30 +0000 (21:50 +0300)]
[#2043] add check permissions for current thread action on thread pools
Razvan Becheriu [Tue, 24 Aug 2021 09:08:59 +0000 (12:08 +0300)]
[#2043] fixed compilation
Razvan Becheriu [Mon, 23 Aug 2021 23:40:35 +0000 (02:40 +0300)]
[#2043] added try catch block for all MT CS
Razvan Becheriu [Mon, 23 Aug 2021 22:32:11 +0000 (01:32 +0300)]
[#2043] addressed comments
Razvan Becheriu [Mon, 23 Aug 2021 22:16:10 +0000 (01:16 +0300)]
[#2043] assert instead of expect
Razvan Becheriu [Mon, 23 Aug 2021 16:57:19 +0000 (19:57 +0300)]
[#2043] added doxygen
Razvan Becheriu [Mon, 23 Aug 2021 16:24:42 +0000 (19:24 +0300)]
[#2043] added critical section with exceptions unittests
Razvan Becheriu [Mon, 23 Aug 2021 13:16:57 +0000 (16:16 +0300)]
[#2043] safety measures for illegal opetations on thread pool done by owned threads
Tomek Mrugalski [Tue, 24 Aug 2021 15:34:43 +0000 (17:34 +0200)]
[#1986] Reworded text about ports