1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
|
7.24
- netfilter: ipset: fix region locking in hash types
- Handle "netfilter: ipset: Fix for recursive locking warning"
patch for backward compatibility
- netfilter: ipset: Fix for recursive locking warning
7.23
- netfilter: ipset: Hold module reference while requesting a module
(Phil Sutter)
- netfilter: ipset: add missing range check in bitmap_ip_uadt
(Jeongjun Park)
- netfilter: ipset: Fix suspicious rcu_dereference_protected()
- Replace BUG_ON() with WARN_ON_ONCE() according to usage policy.
7.22
- netfilter: ipset: Fix race between namespace cleanup and gc
in the list:set type
- netfilter: ipset: Add list flush to cancel_gc (Alexander Maltsev)
- Kill sched.h dependency on rcupdate.h (Kent Overstreet)
- Handle "netfilter: propagate net to nf_bridge_get_physindev" patch
- netfilter: propagate net to nf_bridge_get_physindev (Pavel Tikhomirov)
- Revert "netfilter: ipset: remove set destroy at ip_set module removal"
7.21
- netfilter: ipset: Suppress false sparse warnings
- tests: Verify module unload when sets with timeout were just destroyed
- netfilter: ipset: remove set destroy at ip_set module removal
- netfilter: ipset: Cleanup the code of destroy operation and explain
the two stages in comments
- netfilter: ipset: Missing gc cancellations fixed
7.20
- treewide: Convert del_timer*() to timer_shutdown*() (Steven Rostedt)
- Use timer_shutdown_sync() when available, instead of del_timer_sync()
- netfilter: ipset: fix race condition between swap/destroy and kernel
side add/del/test v4
- netfilter: ipset: fix race condition between swap/destroy and kernel
side add/del/test v3
- netfilter: ipset: fix race condition between swap/destroy and kernel
side add/del/test v2
- netfilter: ipset: fix race condition between swap/destroy and kernel
side add/del/test
7.18
- netfilter: ipset: Fix race between IPSET_CMD_CREATE and IPSET_CMD_SWAP
(reported by Kyle Zeng)
- netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for
ip_set_hash_netportnet.c (Kyle Zeng)
- compatibility: handle strscpy_pad()
- netfilter: ipset: refactor deprecated strncpy (Justin Stitt)
- netfilter: ipset: remove rcu_read_lock_bh pair from ip_set_test
(Florian Westphal)
- netfilter: ipset: Replace strlcpy with strscpy (Azeem Shaikh)
- netfilter: ipset: Add schedule point in call_ad(). (Kuniyuki Iwashima)
- net: Kconfig: fix spellos (Randy Dunlap)
- netfilter: ipset: Fix overflow before widen in the bitmap_ip_create()
function. (Gavrilov Ilia)
7.17
- netfilter: ipset: Rework long task execution when adding/deleting entries
- netfilter: ipset: fix hash:net,port,net hang with /0 subnet
7.16
- netfilter: ipset: restore allowing 64 clashing elements in hash:net,iface
- Fix all debug mode warnings
- netfilter: ipset: Add support for new bitmask parameter (Vishwanath Pai)
- netfilter: ipset: regression in ip_set_hash_ip.c (Vishwanath Pai)
- netfilter: move from strlcpy with unused retval to strscpy
(Wolfram Sang)
- compatibility: handle unsafe_memcpy()
- netlink: Bounds-check struct nlmsgerr creation (Kees Cook)
- compatibility: move to skb_protocol in the code from tc_skb_protocol
- Compatibility: check kvcalloc, kvfree, kvzalloc in slab.h too
- sched: consistently handle layer3 header accesses in the presence
of VLANs (Toke Høiland-Jørgensen)
- treewide: Replace GPLv2 boilerplate/reference with SPDX
- rule 500 (Thomas Gleixner)
- headers: Remove some left-over license text in
include/uapi/linux/netfilter/ (Christophe JAILLET)
- netfilter: ipset: enforce documented limit to prevent allocating
huge memory
- netfilter: ipset: Fix oversized kvmalloc() calls
7.15
- netfilter: ipset: Fix maximal range check in hash_ipportnet4_uadt()
(Nathan Chancellor)
7.14
- 64bit division isn't allowed on 32bit, replace it with shift
7.13
- Limit the maximal range of consecutive elements to add/delete fix
7.12
- Limit the maximal range of consecutive elements to add/delete
- Backport "netfilter: use nfnetlink_unicast()"
- Backport "netfilter: nfnetlink: consolidate callback type"
- Backport "netfilter: nfnetlink: add struct nfnl_info and
pass it to callbacks"
- Backport "netfilter: add helper function to set up the
nfnetlink header and use it"
7.10
- Fix patch "Handle false warning from -Wstringop-overflow"
- Backward compatibility: handle renaming nla_strlcpy to nla_strscpy
- treewide: rename nla_strlcpy to nla_strscpy. (Francis Laniel)
- netfilter: ipset: fix shift-out-of-bounds in htable_bits()
(Vasily Averin)
- netfilter: ipset: fixes possible oops in mtype_resize (Vasily Averin)
- Handle false warning from -Wstringop-overflow
- Backward compatibility: handle missing strscpy with a wrapper of strlcpy.
- Move compiler specific compatibility support to separated file (broken
compatibility support reported by Ed W)
7.8
- Complete backward compatibility fix for package copy of <linux/jhash.h>
- Compatibility: check for kvzalloc() and GFP_KERNEL_ACCOUNT
- netfilter: ipset: enable memory accounting for ipset allocations
(Vasily Averin)
- netfilter: ipset: prevent uninit-value in hash_ip6_add (Eric Dumazet)
- Compatibility: use skb_policy() from if_vlan.h if available
- Compatibility: Check for the fourth arg of list_for_each_entry_rcu()
- Backward compatibility fix for the package copy of <linux/jhash.h>
7.7
- Expose the initval hash parameter to userspace
- Add bucketsize parameter to all hash types
- Use fallthrough pseudo-keyword in the package copy of <linux/jhash.h> too
- Support the -exist flag with the destroy command
- netfilter: Use fallthrough pseudo-keyword (Gustavo A. R. Silva)
- netfilter: Replace zero-length array with flexible-array member
(Gustavo A. R. Silva)
- netfilter: ipset: call ip_set_free() instead of kfree() (Eric Dumazet)
- netfiler: ipset: fix unaligned atomic access (Russell King)
- netfilter: ipset: Fix subcounter update skip (Phil Sutter)
- ipset: Update byte and packet counters regardless of whether they match
(Stefano Brivio)
- netfilter: ipset: Pass lockdep expression to RCU lists (Amol Grover)
- ip_set: Fix compatibility with kernels between v3.3 and v4.5
(Serhey Popovych)
- ip_set: Fix build on kernels without INIT_DEFERRABLE_WORK
(Serhey Popovych)
- ipset: Support kernels with at least system_wq support
- ip_set: Fix build on kernels without system_power_efficient_wq
(Serhey Popovych)
7.6
- netfilter: ipset: Fix forceadd evaluation path
- netfilter: ipset: Correct the reported memory size
- ip_set: Include kernel header instead of UAPI (Serhey Popovych)
- netfilter: ipset: Fix "INFO: rcu detected stall in hash_xxx" reports
- netfilter: ipset: fix suspicious RCU usage in find_set_and_id
- Add compatibility support for bitmap_zalloc() and bitmap_zero()
- netfilter: ipset: use bitmap infrastructure completely
- netfilter: fix a use-after-free in mtype_destroy() (Cong Wang)
7.5
- netfilter: ipset: avoid null deref when IPSET_ATTR_LINENO is present
(Florian Westphal)
- ip_set: Pass init_net when @net is missing in match check params
data structure (Serhey Popovych)
- netfilter: xt_set: Do not restrict --map-set to the mangle table
(Serhey Popovych)
- compat: em_ipset: Build on old kernels (Serhey Popovych)
- compat: Use skb_vlan_tag_present() instead of vlan_tx_tag_present()
(Serhey Popovych)
7.4
- Fix nla_policies to fully support NL_VALIDATE_STRICT
- treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500
(Thomas Gleixner)
- netfilter: remove unnecessary spaces (yangxingwu)
- ipset: Add wildcard support to net,iface (Kristian Evensen)
- ipset: Copy the right MAC address in hash:ip,mac IPv6 sets
(Stefano Brivio)
- netfilter: ipset: move ip_set_get_ip_port() to ip_set_bitmap_port.c.
(Jeremy Sowden)
- netfilter: ipset: move function to ip_set_bitmap_ip.c. (Jeremy Sowden)
- netfilter: ipset: make ip_set_put_flags extern. (Jeremy Sowden)
- netfilter: ipset: move functions to ip_set_core.c. (Jeremy Sowden)
- netfilter: ipset: move ip_set_comment functions from ip_set.h
to ip_set_core.c. (Jeremy Sowden)
- netfilter: ipset: remove inline from static functions in .c files.
(Jeremy Sowden)
- netfilter: ipset: add a coding-style fix to ip_set_ext_destroy.
(Jeremy Sowden)
- netfilter: added missing includes to a number of header-files.
(Jeremy Sowden)
- netfilter: inlined four headers files into another one. (Jeremy Sowden)
- netfilter: ipset: Fix an error code in ip_set_sockfn_get()
(Dan Carpenter)
7.3
- Fix rename concurrency with listing
- ipset: Copy the right MAC address in bitmap:ip,mac and
hash:ip,mac sets (Stefano Brivio)
- ipset: Actually allow destination MAC address for hash:ip,mac
sets too (Stefano Brivio)
7.2
- Update my email address
- ipset: Fix memory accounting for hash types on resize (Stefano Brivio)
- Fix error path in set_target_v3_checkentry()
- Fix the last missing check of nla_parse()
- netfilter: ipset: fix a missing check of nla_parse (Aditya Pakki)
- netfilter: ipset: merge uadd and udel functions (Florent Fourcot)
- netfilter: ipset: remove useless memset() calls (Florent Fourcot)
7.1
- netfilter/ipset: replace a strncpy() with strscpy() (Qian Cai)
- netfilter: ipset: fix ip_set_byindex function (Florent Fourcot)
- netfilter: ipset: do not call ipset_nest_end after nla_nest_cancel
(Pan Bian)
- Correct workaround in patch "Fix calling ip_set() macro at dumping"
7.0
- Introduction of new commands and protocol version 7
- License cleanup: add SPDX license identifier to uapi header files with
no license (Greg Kroah-Hartman)
- net: Convert ip_set_net_ops (Kirill Tkhai)
- netfilter: Replace spin_is_locked() with lockdep (Lance Roy)
- Fix calling ip_set() macro at dumping
- Correct rcu_dereference() call in ip_set_put_comment()
- netfilter: ipset: fix ip_set_list allocation failure (Andrey Ryabinin)
- ipset: Make invalid MAC address checks consisten (Stefano Brivio)
- ipset: Allow matching on destination MAC address for mac and ipmac sets
(Stefano Brivio)
- netfilter: ipset: actually allow allowable CIDR 0 in hash:net,port,net
(Eric Westbrook)
- ipset: list:set: Decrease refcount synchronously on deletion and replace
(Stefano Brivio)
- netfilter: ipset: forbid family for hash:mac sets (Florent Fourcot)
- Limit max timeout value to (UINT_MAX >> 1)/MSEC_PER_SEC
- List timing out entries with "timeout 1" instead of zero timeout value
(Fixes bugzilla #1258)
- netfilter: xt_set: Check hook mask correctly (Serhey Popovych)
6.37
- netfilter: ipset: Use is_zero_ether_addr instead of static and memcmp
(Joe Perches)
6.36
- Remove duplicate module description
- netfilter: remove messages print and boot/module load time
(Pablo Neira Ayuso)
- Fix wraparound bug introduced in commit 48596a8ddc46 in v6.34
(reported by Thomas Schwark)
6.35
- netfilter: mark expected switch fall-throughs (Gustavo A. R. Silva)
- License cleanup: add SPDX GPL-2.0 license identifier to files with no
license (Greg Kroah-Hartman)
- Backport patch: netfilter: ipset: use nfnl_mutex_is_locked
- Missing nfnl_lock()/nfnl_unlock() is added to ip_set_net_exit()
- netfilter: ipset: use nfnl_mutex_is_locked (Florian Westphal)
- netfilter: ipset: add resched points during set listing
(Florian Westphal)
- Fix "don't update counters" mode when counters used at the matching
- Backport patch: netfilter: ipset: Convert timers to use timer_setup()
- netfilter: ipset: use swap macro instead of _manually_ swapping values
(Gustavo A. R. Silva)
- netfilter: ipset: Fix race between dump and swap (Ross Lagerwall)
- netfilter: ipset: pernet ops must be unregistered last (Florian
Westphal)
6.34
- Fix adding an IPv4 range containing more than 2^31 addresses
(bugzilla id #1005, reported by Oleg Serditov and Oliver Ford)
6.33
- Backport patch: sctp: remove the typedef sctp_sctphdr_t
- Backport patch: netfilter: nfnetlink: extended ACK reporting
- ipset: remove unused function __ip_set_get_netlink (Aaron Conole)
- Backport patch: netlink: pass extended ACK struct to parsing functions
- Backport patch netlink: extended ACK reporting
- netfilter: Remove exceptional & on function name (Arushi Singhal)
- Backport missing part of patch: netfilter: Remove unnecessary cast on
void pointer
- Backport nfnl_msg_type()
- netfilter: ipset: ipset list may return wrong member count for set with
timeout (Vishwanath Pai)
- netfilter: ipset: deduplicate prefixlen maps (Aaron Conole)
- Fix sparse warnings
- netfilter: ipset: Compress return logic (simran singhal)
- netfilter: ipset: Remove unnecessary cast on void pointer (simran
singhal)
- Compatibility: handle changes in 4.10 kernel tree
6.31
- netfilter: ipset: Null pointer exception in ipset list:set
(Vishwanath Pai)
- Fix bug: sometimes valid entries in hash:* types of sets were evicted
(reported by Eric Ewanco)
- Correct copyright owner
- Revert patch "Correct rcu_dereference_bh_nfnl() usage"
6.30
- netfilter: ipset: hash: fix boolreturn.cocci warnings
(Fengguang Wu)
- Fix the nla_put_net64() API changes backport
- netfilter: ipset: Fixing unnamed union init (Elad Raz)
- netfilter: x_tables: Use par->net instead of computing from the passed
net devices (Eric W. Biederman)
- Correct the reported memory size for bitmap:* types
- Fix coding styles reported by checkpatch.pl, already in kernel
- netfilter: x_tables: Pass struct net in xt_action_param
(Eric W. Biederman)
- net: sched: fix skb->protocol use in case of accelerated vlan path
(Jiri Pirko)
- Check IPSET_ATTR_ETHER netlink attribute length in hash:ipmac too
- netfilter: fix include files for compilation (Mikko Rapeli)
- ipset: Backports for the nla_put_net64() API changes (Neutron Soutmun)
- netfilter: ipset: use setup_timer() and mod_timer().
(Muhammad Falak R Wani)
- hash:ipmac type support added to ipset (Tomasz Chilinski)
6.29
- Fix race condition in ipset save, swap and delete (Vishwanath Pai)
6.28
- Check IPSET_ATTR_ETHER netlink attribute length
- Fix __aligned_u64 compatibility support for older kernel releases
- Add compatibility to support EXPORT_SYMBOL_GPL in module.h
- Fix set:list type crash when flush/dump set in parallel
- pass down netns pointer to call() and call_rcu() (backport)
- allow a 0 netmask with hash_netiface type (Florian Westphal)
6.27
- Fix reported memory size for hash:* types
- Fix hash type expire: release empty hash bucket block
- Fix hash type expiration: incorrect index fixed
- Collapse same condition body to a single one
- Fix extension alignment
- Compatibility: include linux/export.h when needed
- Compatibility: make sure vmalloc.h is included for kvfree()
- Compatibility: Fix detecting 'struct net' in 'struct tcf_ematch'
- Compatibility: Protect definition of RCU_INIT_POINTER in compatibility
header file
- netfilter: ipset: Fix sleeping memory allocation in atomic context
(Nikolay Borisov)
6.26
- Out of bound access in hash:net* types fixed (reported by Dave Jones)
- Make struct htype per ipset family (originally from Sergey Popovich)
- Optimize hash creation routine (originally from Sergey Popovich)
- Make sure element data size is a multiple of u32 (originally from Sergey
Popovich)
- Make NLEN compile time constant for hash types (originally from Sergey
Popovich)
- Simplify mtype_expire() for hash types (originally from Sergey Popovich)
- Count non-static extension memory into the set memory size for userspace
- net: sched: Simplify em_ipset_match (Eric W. Biederman)
6.25.1
- net/netfilter/ipset: work around gcc-4.4.4 initializer bug
(Andrew Morton)
6.25
- Add element count to all set types header
- Add element count to hash headers (Eric B Munson)
- implement nla_put_in_addr and nla_put_in6_addr (Jiri Benc)
- deinline ip_set_put_extensions() (Denys Vlasenko)
- Fix error path in mtype_resize() when new hash bucket cannot be
allocated
- There is no need to call synchronize_rcu() after list_add_rcu()
- Fix typo in function name get_phyoutdev_name()
- Separate memsize calculation code into dedicated functions (originally
from Sergey Popovich)
- Split extensions into separate files (originally from Sergey Popovich)
- Improve comment extension helpers (originally from Sergey Popovich)
- Improve skbinfo get/init helpers (originally from Sergey Popovich)
- Headers file cleanup (originally from Sergey Popovich)
- Correct rcu_dereference_bh_nfnl() usage (originally from Sergey
Popovich)
- add helpers for fetching physin/outdev (Florian Westphal)
- When a single set is destroyed, make sure it can't be grabbed by dump
- In comment extension ip_set_comment_free() is always called in a safe
path
- Add rcu_barrier() to module removal in the bitmap types too
- Fix coding styles reported by the most recent checkpatch.pl
- Make sure bitmap:ip,mac detects the proper MAC even when it's
overwritten
- RCU safe comment extension handling
- Make sure the proper is_destroyed value is checked at dumping
- Fix broken commit "Check extensions attributes before getting
extensions."
- Improve preprocessor macros checks (Sergey Popovich)
- Fix hashing for ipv6 sets (Sergey Popovich)
- Fix ext_*() macros so pointers returned by these macros could be
referenced directly (Sergey Popovich)
- Check for comment netlink attribute length (Sergey Popovich)
- Return bool values instead of int (Sergey Popovich)
- Check CIDR value only when attribute is given (Sergey Popovich)
- Make sure we always return line number on batch (Sergey Popovich)
- Permit CIDR equal to the host address CIDR in IPv6 (Sergey Popovich)
- Use HOST_MASK literal to represent host address CIDR len (Sergey
Popovich)
- Check IPSET_ATTR_PORT only once (Sergey Popovich)
- Check extensions attributes before getting extensions (Sergey Popovich)
- Use SET_WITH_*() helpers to test set extensions (Sergey Popovich)
- Return ipset error instead of bool (Sergey Popovich)
- Preprocessor directices cleanup (Sergey Popovich)
- No need to make nomatch bitfield (Sergey Popovich)
- Make sure bit operations are not reordered
- Properly calculate extensions offsets and total length (Sergey Popovich)
- Fix cidr handling for hash:*net* types, reported by Jonathan Johnson
- fix boolreturn.cocci warnings (Fengguang Wu)
- make ip_set_get_ip*_port to use skb_network_offset (Alexander Drozdov)
- Make sure listing doesn't grab a set which is just being destroyed.
- Missing rcu_read_lock() and _unlock() in mtype_list() fixed
- Fix coding styles reported by checkpatch.pl
- Use nlmsg_total_size instead of NLMSG_SPACE in ip_set_core.c
- There's no need to call synchronize_rcu() with kfree_rcu()
- Call rcu_barrier() in module removal path
- Call synchronize_rcu() in set type (un)register functions only when
needed
- Remove an unused macro
- Give a better name to a macro in ip_set_core.c
- Resolve the STREQ macro to make the code more readable, and use
nla_strlcpy where possible
- Use MSEC_PER_SEC consistently
- Remove unnecessary integer RCU handling and fix other sparse warnings
- Fix sparse warning "cast to restricted __be32"
6.24
- netfilter: ipset: small potential read beyond the end of buffer
(Dan Carpenter)
- Fix parallel resizing and listing of the same set
- styles warned by checkpatch.pl fixed
- Introduce RCU in all set types instead of rwlock per set
(performance tested by Jesper Dangaard Brouer)
- Remove rbtree from hash:net,iface in order to run under RCU
- Explicitly add padding elements to hash:net,net and hash:net,port,net
- Allocate the proper size of memory when /0 networks are supported
- Simplify cidr handling for hash:*net* types
- Indicate when /0 networks are supported
- Kernel API changes in em_ipset.c, support both old and new ones
- netfilter: Convert uses of __constant_<foo> to <foo> (Joe Perches)
- net: use the new API kvfree() (WANG Cong)
- treewide: fix errors in print (Masanari Iida)
- netfilter: use IS_ENABLED(CONFIG_BRIDGE_NETFILTER) (Pablo Neira Ayuso)
- Use IS_ENABLED macro and define it if required
- Alignment problem between 64bit kernel 32bit userspace fixed
(reported by Sven-Haegar Koch)
- netfilter: ipset: off by one in ip_set_nfnl_get_byindex()
(Dan Carpenter)
6.23
- Support updating extensions when the set is full
(fixes bugzilla id #880)
6.22
- hash:mac type added to ipset
- skbinfo extension: send nonzero extension elements only to userspace
- netfilter: Convert pr_warning to pr_warn (Joe Perches)
- netfilter: ipset: Add skbinfo extension support to SET target.
(Anton Danilov)
- netfilter: ipset: Add skbinfo extension kernel support for the list
set type. (Anton Danilov)
- netfilter: ipset: Add skbinfo extension kernel support for the hash
set types. (Anton Danilov)
- netfilter: ipset: Add skbinfo extension kernel support for the
bitmap set types. (Anton Danilov)
- netfilter: ipset: Add skbinfo extension kernel support in the ipset
core. (Anton Danilov)
- Fix static checker warning in ip_set_core.c (reported by Dan Carpenter)
- Fix warn: integer overflows 'sizeof(*map) + size * set->dsize'
(reported by Dan Carpenter)
- net/netfilter/ipset: Resolve missing-field-initializer warnings
(Mark Rustad)
- netnet,netportnet: Fix value range support for IPv4 (Sergey Popovich)
- Removed invalid IPSET_ATTR_MARKMASK validation (Vytas Dauksa)
6.21.1
- netfilter: ip_set: rename nfnl_dereference()/nfnl_set()
(Patrick McHardy)
6.21
- ipset: add forceadd kernel support for hash set types (Josh Hunt)
- netfilter: ipset: move registration message to init from net_init
(Ilia Mirkin)
- kernel: uapi: fix MARKMASK attr ABI breakage (Florian Westphal)
- Prepare the kernel for create option flags when no extension is needed
- add markmask for hash:ip,mark data type (Vytas Dauksa)
- add hash:ip,mark data type to ipset (Vytas Dauksa)
- ipset: remove unused code (Stephen Hemminger)
- netfilter: ipset: Add hash: fix coccinelle warnings (Fengguang Wu)
- Typo in ip_set_hash_netnet.c fixed (David Binderman)
- net ipset: use rbtree postorder iteration instead of opencoding
(Cody P Schafer)
- ipset: Follow manual page behavior for SET target on list:set
(Sergey Popovich)
6.20.1
- netfilter: ipset: remove duplicate define (Michael Opdenacker)
- net->user_ns is available starting from 3.8, add compatibility
checking (reported by Jan Engelhardt)
- Fix memory allocation for bitmap:port (reported by Quentin Armitage)
- Avoid clashing with configured kernel in [CONFIG_]IP_SET_MAX
- The unnamed union initialization may lead to compilation error
(reported by Husnu Demir)
- Use dev_net() instead of the direct access to ->nd_net (reported by
the kbuild test robot)
6.20
- Compatibility code is modified not to rely on kernel version numbers
- Use netlink callback dump args only
- Add hash:net,port,net module to kernel (Oliver Smith)
- Add net namespace for ipset (Vitaly Lavrov)
- Use a common function at listing the extensions of the elements
- For set:list types, replaced elements must be zeroed out
- Fix hash resizing with comments
- Support comments in the list-type ipset (Oliver Smith)
- Support comments in bitmap-type ipsets (Oliver Smith)
- Support comments in hash-type ipsets (Oliver Smith)
- Support comments for ipset entries in the core (Oliver Smith)
- Add hash:net,net module to kernel (Oliver Smith)
- Fix serious failure in CIDR tracking (Oliver Smith)
- list:set: make sure all elements are checked by the gc
- Support extensions which need a per data destroy function
- Generalize extensions support
- Move extension data to set structure
- Rename extension offset ids to extension ids
- Prepare ipset to support multiple networks for hash types
- Introduce new operation to get both setname and family
- Validate the set family and not the set type family at swapping
(Bug reported by Quentin Armitage, netfilter bugzilla id #843)
- Consistent userspace testing with nomatch flag
- Skip really non-first fragments for IPv6 when getting port/protocol
- ipset standalone package needs to ship em_ipset.c (reported by Jan
Engelhardt)
6.19
- Compatibility fixes to keep the support of kernels back to 2.6.32
- Backport nla_put_net64
- Support package fragments for IPv4 protos without ports
(Anders K. Pedersen)
- Use fix sized type for timeout in the extension part
- Make sure kernel configured properly for sparse checkings
- Fix "may be used uninitialized" warnings (reported by Pablo Neira
Ayuso)
- Rename simple macro names to avoid namespace issues. (reported by
David Laight)
- Fix sparse warnings due to missing rcu annotations (reported by
Pablo Neira Ayuso)
- Sparse warning about shadowed variable fixed
- Don't call ip_nest_end needlessly in the error path (suggested by
Pablo Neira Ayuso)
- set match: add support to match the counters
- The list:set type with counter support
- The hash types with counter support
- The bitmap types with counter support
- Introduce the counter extension in the core
- list:set type using the extension interface
- Hash types using the unified code base
- Unified hash type generation
- Bitmap types using the unified code base
- Unified bitmap type generation
- Introduce extensions to elements in the core
- Move often used IPv6 address masking function to header file
- Make possible to test elements marked with nomatch, from userspace
- netfilter ipset: Use ipv6_addr_equal() where appropriate.
(YOSHIFUJI Hideaki)
- Add a compatibility header file for easier maintenance
- The uapi include split in the package itself
- Reorder modules a little bit in Kbuild
6.18
- list:set: update reference counter when last element pushed off
- hash:*net*: nomatch flag not excluded on set resize
6.17
- Make sure ip_set_max isn't set to IPSET_INVALID_ID
- netfilter: ipset: timeout values corrupted on set resize (Josh Hunt)
- "Directory not empty" error message (reported by John Brendler)
6.16.1
- Add ipset package version to external module description
- Backport RCU handling up to 2.6.32.x
6.16
- Netlink pid is renamed to portid in kernel 3.7.0
- Fix RCU handling when the number of maximal sets are increased
- netfilter: ipset: fix netiface set name overflow (Florian Westphal)
6.15
- Increase the number of maximal sets automatically as needed
- Restore the support of kernel versions between 2.6.32 and 2.6.35
- Fix range bug in hash:ip,port,net
- Revert, then reapply cidr book keeping patch to handle /0
6.14
- Support to match elements marked with "nomatch" in hash:*net* sets
- Coding style fixes
- Include supported revisions in module description
- Add /0 network support to hash:net,iface type
- Fix cidr book keeping for hash:*net* types
- Check and reject crazy /0 input parameters
- Backport ether_addr_equal
- Coding style fix, backport from kernel
- net: cleanup unsigned to unsigned int (Eric Dumazet)
6.13
- ipset: Handle properly an IPSET_CMD_NONE (Tomasz Bursztyka)
- netfilter: ipset: hash:net,iface: fix interface comparison (Florian
Westphal)
- Timeout fixing bug broke SET target special timeout value, fixed
- Use MSEC_PER_SEC instead of harcoded value
6.12
- Backport nla_put_net* functions as NLA_PUT* were removed
- netlink: add netlink_dump_control structure for netlink_dump_start()
- ipset: Stop using NLA_PUT*().
- Fix hash size checking in kernel (bug reported by Seblu)
- Correct README file about minimal required iptables version
(Oskar Berggren)
- Sparse warnings "incorrect type in assignment" fixed
- Fix timeout value overflow bug at large timeout parameters
(bug reported by Andreas Herz)
- ipv6: Add fragment reporting to ipv6_skip_exthdr().
- net: remove ipv6_addr_copy()
- Fix the inclusion of linux/export.h (Henry Culver)
6.11
- hash:net,iface timeout bug fixed
- Exceptions support added to hash:*net* types
- net: Add export.h for EXPORT_SYMBOL/THIS_MODULE to non-modules
- Log warning when a hash type of set gets ful
6.10
- Invert the logic to include version.h in ip_set_core.c
- Suppress false compile-time warnings about uninitialized variable ip_to
6.9.1
- Fix compiling ipset as external kernel modules
6.9
- Complete Kconfig with hash:net,iface type (standalone package)
- rtnetlink: Compute and store minimum ifinfo dump size (Greg Rose)
- Remove redundant linux/version.h includes from net/ (Jesper Juhl)
- ipset: use NFPROTO_ constants (Jan Engelhardt)
- netfilter: ipset: expose userspace-relevant parts in ip_set.h
(Jan Engelhardt)
- netfilter: ipset: avoid use of kernel-only types (Jan Engelhardt)
- netfilter: Remove unnecessary OOM logging messages (Joe Perches)
- Dumping error triggered removing references twice and lead to kernel BUG
- Autoload set type modules safely
6.8
- Fix compiler warnings "'hash_ip4_data_next' declared inline after being
called" (Chris Friesen)
- hash:net,iface fixed to handle overlapping nets behind different
interfaces
- Make possible to hash some part of the data element only.
6.7
- Whitespace and coding fixes, detected by checkpatch.pl
- hash:net,iface type introduced
- Use the stored first cidr value instead of '1'
- Fix return code for destroy when sets are in use
- Add xt_action_param to the variant level kadt functions, ipset API change
- Drop supporting kernel versions below 2.6.35
6.6
- Use unified from/to address masking and check the usage
- ip_set_flush returned -EPROTO instead of -IPSET_ERR_PROTOCOL, fixed
- Take into account cidr value for the from address when creating the set
- Adding ranges to hash types with timeout could still fail, fixed
- Removed old, not used hashing method ip_set_chash
- Remove variable 'ret' in type_pf_tdel(), which is set but not used
- Use proper timeout parameter to jiffies conversion
6.5
- Support range for IPv4 at adding/deleting elements for hash:*net* types
- Set type support with multiple revisions added
- Fix adding ranges to hash types
6.4
- Support listing setnames and headers too
- Fix the order of listing of sets
- Options and flags support added to the kernel API
6.3
- ipset/Kconfig was a mixed up kernel config file, fixed (Michael Tokarev)
- bitmap:ip,mac type requires "src" for MAC, enforce it
- whitespace fixes: some space before tab slipped in
- set match and SET target fixes (bugs reported by Lennert Buytenhek)
6.2
- list:set timeout variant fixes
- References are protected by rwlock instead of mutex
- Add explicit text message to detect patched kernel (netlink.patch)
- Timeout can be modified for already added elements
6.1
- The hash:*port* types ignored the address range with non TCP/UDP, fixed
- Fix checking the revision number of the set type at create command
- SCTP, UDPLITE support to hash:*port* types added
- Fix revision reporting got broken by the revision checking patch
6.0
- Reorganized kernel/ subdir
- netfilter: ipset: fix linking with CONFIG_IPV6=n (Patrick McHardy)
- netfilter: ipset: send error message manually
- netfilter: ipset: add missing break statemtns in
ip_set_get_ip_port() (Patrick McHardy)
- netfilter: ipset: add missing include to xt_set.h (Patrick McHardy)
- netfilter: ipset: remove unnecessary includes (Patrick McHardy)
- netfilter: ipset: use nla_parse_nested() (Patrick McHardy)
- Separate ipset errnos completely from system ones and bump protocol
version
- Use better error codes in xt_set.c
- Fix sparse warning about shadowed definition
- bitmap:ip type: flavour specific adt functions (Patrick McHardy's review)
- bitmap:port type: flavour specific adt functions (Patrick McHardy's
review)
- Move the type specifici attribute validation to the core
(suggested by Patrick McHardy)
- Use vzalloc() instead of __vmalloc() (Eric Dumazet, Patrick McHardy)
- Use meaningful error messages in xt_set.c (Patrick McHardy's review)
- Constified attribute cannot be written (Patrick McHardy's review)
- Send (N)ACK at dumping only when NLM_F_ACK is set
(Patrick McHardy's review)
- Correct the error codes: use ENOENT and EMSGSIZE (Patrick McHardy's
review)
5.4
- Fixed broken ICMP and ICMPv6 handling
- Fix trailing whitespaces and pr_* messages
- Un-inline functions which are not small enough (suggested by Patrick McHardy)
- Fix module loading at create/header command (reported by Patrick McHardy)
- Fix wrong kzalloc flag in type_pf_expire
- The get_ip*_port functions are too large to be inlined, move into the core
- Add missing __GFP_HIGHMEM flag to __vmalloc (suggested by Eric Dumazet)
- Enforce network-order data in the netlink protocol
- Use annotated types and fix sparse warnings (suggested by Patrick McHardy)
- Move ip_set_alloc, ip_set_free and ip_set_get_ipaddr* into core
(suggested by Patrick McHardy)
- NETMASK*, HOSTMASK* macros are too generic, use small inline functions
(suggested by Patrick McHardy)
- Use static LIST_HEAD() for ip_set_type_list (suggested by Patrick McHardy)
- Move NLA_PUT_NET* macros to include/net/netlink.h (suggested by Patrick
McHardy)
- The module parameter max_sets should be unsigned int (reported by Patrick
McHardy)
- Get rid of ip_set_kernel.h (suggested by Patrick McHardy)
- Fix the placement style of boolean operators at continued lines
(suggested by Patrick McHardy)
5.3
- There is no need to call synchronize_net() at swapping
- Replace strncpy with strlcpy at creating a set
- Update copyright date and some style changes
- Use jhash.h accepted in kernel, with backward compatibility
- Separate prefixlens from ip_set core
- Remove unused ctnl parameter from call_ad (Jan Engelhardt)
- Comment the possible return values of the add/del/test type-functions
5.2
- Kernel version check at minimal supported version was mistyped, now fixed.
5.1
- Kernel version compatibility: support bumped starting from 2.6.34
(Supporting older kernel releases would mean too much burden for me,
sorry.)
- kernel: use EXPORT_SYMBOL_GPL (Jan Engelhardt)
- kernel: const annotations (Jan Engelhardt)
- kernel: use __read_mostly for registration-type structures
(Jan Engelhardt)
- kernel: do not mix const and __read_mostly (Jan Engelhardt)
- xt_set: avoid user types in exported kernel headers (Jan Engelhardt)
- build: enable parallel building (Jan Engelhardt)
- Fix Kbuild for me to delete backup files
5.0
- New main branch - ipset completely rewritten
4.2
- nethash and ipportnethash types counted every entry twice
which could produce bogus entries when listing/saving these types
of sets (bug reported by Husnu Demir)
4.1
- Do not use init_MUTEX either (Jan Engelhardt)
- Improve listing/saving hash type of sets by not copying empty
entries unnecessarily to userspace.
4.0
- Compilation of ip_set_iptree.c fails with kernel 2.6.20 due to
missing include of linux/jiffies.h (Jan Engelhardt)
- Do not use DECLARE_MUTEX (compatibility fix on 2.6.31-rt, Jan
Engelhardt)
- Flushing iptreemap type of sets caused high ksoftirqd load due to
zeroed out gc parameter (bug reported by Georg Chini)
- New protocol is introduced to handle aligment issues properly
(bug reported by Georg Chini)
- Binding support is removed
3.2
- Mixed up formats in ip_set_iptree.c (Rob Sterenborg)
- Don't use 'bool' for backward compatibility reasons (Rob Sterenborg)
3.1
- Nonexistent sets were reported as existing sets when testing
from userspace in setlist type of sets (bug reported by Victor A.
Safronov)
- When saving sets, setlist type of sets must come last in order
to satisfy the dependency from the elements (bug reported by Marty B.)
- Sparse insists that the flags argument to kmalloc() is gfp_t
(Stephen Hemminger)
- Correct format specifiers and change %i to %d (Jan Engelhardt)
- Fix the definition of 'bool' for kernels <= 2.6.18 (Jan Engelhardt)
3.0
- New kernel-userspace protocol release
- Bigendian and 64/32bit fixes (Stefan Gula, bugzilla id 593)
- Support of 2.4.3[67].* kernels fixed
- Compiling with debugging enabled fixed
2.5.0
- Use the spinlock initiator instead of setting the locks directly
as it causes compilation errors with 2.6.29-rt (Jan Engelhardt).
2.4.9
- References to the old include file replaced with new one in order to
really use the new Jenkins' hash function.
2.4.8
- The Jenkins' hash lookup2() replaced with Jenkins' faster/better lookup3()
hash function.
- Bug fixed: after elements are added and deleted from a hash, an element
can successfully be added in spite it's already in the hash and thus
duplicates can occur (Shih-Yi Chen).
- Compatibility with old gcc without 'bool' added.
2.4.7
- Typo which broke compilation with kernels < 2.6.28
fixed (reported by Richard Lucassen, Danny Rawlins)
2.4.6
- Compatibility fix for kernels >= 2.6.28
2.4.5
- setlist type does not work properly together with swapping
sets, bug reported by Thomas Jacob.
- Include linux/capability.h explicitly in ip_set.c (Jan Engelhardt)
2.4.4
- Premature checking prevents to add valid elements to hash
types, fixed (bug reported by JC Janos).
2.4.2
- When flushing a nethash/ipportnethash type of set, it can
lead to a kernel crash due to a wrong type declaration,
bug reported by Krzysztof Oledzki.
- iptree and iptreemap types require the header file linux/timer.h,
also reported by Krzysztof Oledzki.
2.4.1
- Zero-valued element are not accepted by hash type of sets
because we cannot make a difference between a zero-valued
element and not-set element.
2.4
- ipportiphash, ipportnethash and setlist types added
- set type modules reworked to avoid code duplication
as much as possible, code unification macros
- expand_macros Makefile target added to help debugging
code unification macros
- ip_set_addip_kernel and ip_set_delip_kernel
changed from void to int, __ip_set_get_byname and
__ip_set_put_byid added for the sake of setlist type
- unnecessary includes removed
- compatibility fix for kernels >= 2.6.27:
semaphore.h was moved from asm/ to linux/ (James King)
- ChangeLog forked for kernel part
|