Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    Rules order randomly changes

    Scheduled Pinned Locked Moved Plus 25.03 Develoment Snapshots
    25 Posts 4 Posters 1.4k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • w0wW
      w0w @marcosm
      last edited by

      @marcosm said in Rules order randomly changes:

      c181ebe180017116626da28f30407a1da3cba061

      Applied patch and after several times adding "dummy" rule up and down on the LAN interface, occasionally deleting it, I've got it again.

      aae3c3b1-66ee-496c-8418-4b55edcb80a3-image.png

      M 1 Reply Last reply Reply Quote 0
      • M
        marcosm Netgate @w0w
        last edited by

        @w0w I'm not able to reproduce the issue with the referenced patch applied. Exact steps to reproduce it would be appreciated. Make sure you're testing using a single browser tab - making changes from multiple tabs (without reloading the page first each time) is not supported. Also make sure that only the referenced patch is applied and no other custom patches.

        w0wW 1 Reply Last reply Reply Quote 0
        • w0wW
          w0w @marcosm
          last edited by

          @marcosm
          Will try to reproduce it and find the steps later, currently no other patches applied, this is unmodified 25.03 but I'll re-check it.

          1 Reply Last reply Reply Quote 0
          • w0wW
            w0w
            last edited by

            It is assumed that the Ethernet firewall rules tab already contains some rules in a predefined order, same for LAN and WAN and others.

            Steps to Reproduce the Bug:

            1. Go to the Firewall Rules LAN Tab.
            2. Add a rule at the top of the list, then save without applying changes.
            3. Move the rule to the middle of the list, then save without applying changes.
            4. Delete the rule, then save without applying changes.
            5. Switch to the Ethernet Rules Tab and check if the rule order is still intact.
            M 1 Reply Last reply Reply Quote 0
            • M
              marcosm Netgate @w0w
              last edited by marcosm

              @w0w Thanks. Try this patch in addition to the previous one:

              diff --git a/src/usr/local/www/firewall_rules_edit.php b/src/usr/local/www/firewall_rules_edit.php
              index dc0d260ca9..c62a03e44f 100644
              --- a/src/usr/local/www/firewall_rules_edit.php
              +++ b/src/usr/local/www/firewall_rules_edit.php
              @@ -1369,16 +1369,16 @@ if ($_POST['save']) {
               
               			$ridx = get_interface_ruleindex($tmpif, $after);
               			if (is_numeric($after) && ($tmpif == $if || (isset($pconfig['floating'])) || isset($pconfig['ethernet']))) {
              -				// save the rule after the one being requested
              -				array_splice($a_filter, $after+1, 0, array($filterent));
               				// shift the separators
               				$a_separators = config_get_path('filter/separator/' . strtolower($tmpif), []);
               				if ($after == -1) {
               					// rule is being placed on top
               					shift_separators($a_separators, -1);
              +					array_splice($a_filter, $ridx['first'], 0, array($filterent));
               				} else {
               					// rule is being placed after another rule
               					shift_separators($a_separators, $ridx['index']);
              +					array_splice($a_filter, $after+1, 0, array($filterent));
               				}
               				config_set_path('filter/separator/' . strtolower($tmpif), $a_separators);
               			} else {
              
              
              w0wW 1 Reply Last reply Reply Quote 2
              • w0wW
                w0w @marcosm
                last edited by

                @marcosm
                Looks good now, tried some additional random tests, so far, so good.
                Thank you.

                S 1 Reply Last reply Reply Quote 2
                • S
                  SteveITS Galactic Empire @w0w
                  last edited by

                  FWIW I just ran into this symptom on a different/second router with 24.11. Unclear from above if this is known to be a 24.11 issue. Probably should have screen capped but it's late and I was focused on something else (boot issue on this router) before deciding I should post here. I did check and delete two rules but I think the order was wrong before I did that. However it's been on 24.11 for a couple months now so maybe had prior edits. I'll try to pay better attention next time.

                  Separately (only because I'm writing), I also just realized some of my pfBlocker geo rules were missing, and when I update those the separators I just moved around were in the wrong spot again because the geo rules get added towards the top of the page. (six pfB rules were missing/removed, the separators stay at "position 14" or whatever, and they are now in the wrong spot 6 lines too far down instead of also moving up 6 lines) This is probably unrelated to the rule ordering but I wanted to mention it.

                  Pre-2.7.2/23.09: Only install packages for your version, or risk breaking it. Select your branch in System/Update/Update Settings.
                  When upgrading, allow 10-15 minutes to restart, or more depending on packages and device speed.
                  Upvote ๐Ÿ‘ helpful posts!

                  1 Reply Last reply Reply Quote 0
                  • M
                    marcosm Netgate
                    last edited by

                    The fixes have been added to the System Patches package for 24.11.

                    S 1 Reply Last reply Reply Quote 5
                    • S
                      SteveITS Galactic Empire @marcosm
                      last edited by

                      @marcosm Great, thank you

                      Pre-2.7.2/23.09: Only install packages for your version, or risk breaking it. Select your branch in System/Update/Update Settings.
                      When upgrading, allow 10-15 minutes to restart, or more depending on packages and device speed.
                      Upvote ๐Ÿ‘ helpful posts!

                      1 Reply Last reply Reply Quote 0
                      • L
                        louis2 @marcosm
                        last edited by louis2

                        @marcosm

                        At this moment I am using pfSense 24.11

                        I intend to do some rule changes in favor to test the stability of rule number.

                        Note that for a start:

                        • I did apply All recommended patches for 24.11
                        • and did define an extra patch based on your id c181ebe180017116626da28f30407a1da3cba061
                        • logged into pfsense using ssh
                        • created a ruledump with pfctl -vvsr > 20250306_1941_RuleDump.txt
                        • did read that file into the db I did create in the past in order to create graylog lookups
                        • among other things that DB creates a CRS32 as unique key for each rule

                        I will make some changes to the firewall rules in the coming days and after that create another dump. Read that dump in the DB and check if the same CRS32 do still correspond with the same rule numbers.

                        Since I have limited time, the whole process will take probably something like a week.
                        Note: I might have generated a ticket related to the issue a few years ago. I did not check.

                        S 1 Reply Last reply Reply Quote 0
                        • S
                          SteveITS Galactic Empire @louis2
                          last edited by

                          @louis2 said in Rules order randomly changes:

                          I did apply All recommended patches for 24.11

                          The patch is in the recommended list but you need to update that package to see it. It wasn't in the list a couple days ago.

                          Pre-2.7.2/23.09: Only install packages for your version, or risk breaking it. Select your branch in System/Update/Update Settings.
                          When upgrading, allow 10-15 minutes to restart, or more depending on packages and device speed.
                          Upvote ๐Ÿ‘ helpful posts!

                          1 Reply Last reply Reply Quote 0
                          • w0wW
                            w0w
                            last edited by w0w

                            @w0w said in Rules order randomly changes:

                            I don't know if I'm just lucky or whatโ€ฆ Sorry, it happened again.

                            9b715f01-c975-4275-81ea-153bb8ff65aa-image.png

                            Steps to reproduce:

                            1. Copy one or two rules using the "Actions" โ†’ "Copy" button on the right side of the selected rule. I copied two rules (7.1 and 8.1), pressed Save, but did not apply the changes.
                            2. Go to the LAN or any other interface and copy a rule the same way, somewhere in the middle of the list, just like you did in the Ethernet tab. Press Save, but do not apply the changes.
                            3. Go back to the Ethernet tab โ€“ the order is messed up.
                            
                            M 1 Reply Last reply Reply Quote 0
                            • stephenw10S stephenw10 referenced this topic on
                            • M
                              marcosm Netgate @w0w
                              last edited by

                              @w0w Thank you. Try with this patch:

                              diff --git a/src/etc/inc/pfsense-utils.inc b/src/etc/inc/pfsense-utils.inc
                              index 5095c9ff0f..23cdbdf295 100644
                              --- a/src/etc/inc/pfsense-utils.inc
                              +++ b/src/etc/inc/pfsense-utils.inc
                              @@ -3088,18 +3088,33 @@ function filter_rules_sort() {
                               	config_set_path('filter/rule', $rules);
                               }
                               function filter_rules_compare($a, $b) {
                              -	if ((isset($a['floating']) && isset($b['floating'])) ||
                              -	    (isset($b['ethernet']) && isset($b['ethernet']))) {
                              -		return $a['seq'] - $b['seq'];
                              -	} else if (isset($a['floating']) || isset($a['ethernet'])) {
                              -		return -1;
                              -	} else if (isset($b['floating']) || isset($b['ethernet'])) {
                              +	if (isset($a['ethernet'])) {
                              +		// Ethernet rules always come first.
                              +		if (!isset($b['ethernet'])) {
                              +			return -1;
                              +		}
                              +	} elseif (isset($a['floating'])) {
                              +		// Floating rules are placed after Ethernet rules and before Interface rules.
                              +		if (isset($b['ethernet'])) {
                              +			return 1;
                              +		} elseif (!isset($b['floating'])) {
                              +			return -1;
                              +		}
                              +	} elseif (isset($b['ethernet']) || isset($b['floating'])) {
                              +		// Interface rules are placed after Ethernet and Floating rules.
                               		return 1;
                              -	} else if ($a['interface'] == $b['interface']) {
                              -		return $a['seq'] - $b['seq'];
                              -	} else {
                              +	} elseif ($a['interface'] != $b['interface']) {
                              +		// Interface rules for the same interface are grouped together.
                               		return compare_interface_friendly_names($a['interface'], $b['interface']);
                               	}
                              +
                              +	// Use the sequence number as a last resort.
                              +	if (isset($a['seq']) && isset($b['seq'])) {
                              +		return ($a['seq'] <=> $b['seq']);
                              +	}
                              +
                              +	// Nothing to compare.
                              +	return 0;
                               }
                               
                               function generate_ipv6_from_mac($mac) {
                              
                              

                              If testing on 24.11, apply this one after first applying the latest recommended System patches. If testing on 25.03-BETA, first apply c181ebe180017116626da28f30407a1da3cba061 and the previous one, then this one.

                              w0wW 1 Reply Last reply Reply Quote 2
                              • w0wW
                                w0w @marcosm
                                last edited by w0w

                                @marcosm said in Rules order randomly changes:

                                At first glance, everything seems to be working, but we won't rush. I'll test it for some more time.

                                1 Reply Last reply Reply Quote 1
                                • First post
                                  Last post
                                Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.