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

    Hardware Crypto Support Missing AES-GCM?

    Scheduled Pinned Locked Moved General pfSense Questions
    20 Posts 6 Posters 3.1k 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.
    • M
      mcury Rebel Alliance @SteveITS
      last edited by

      Just for comparison purposes, this is a SG-4100:

      7dd9ee89-8f6d-4398-afcd-7e7fa0b770ec-image.png

      dead on arrival, nowhere to be found.

      1 Reply Last reply Reply Quote 0
      • T
        tman222
        last edited by

        Thanks guys!

        I went ahead and ran dmesg | grep aes and see the following on both systems:

        aesni0: <AES-CBC,AES-CCM,AES-GCM,AES-ICM,AES-XTS>
        

        So it does look like AES-GCM is supported. Any idea why it is not showing up in the UI under Hardware Crypto? Is there any other way to check to see if it's properly supported/enabled (in case this is just a UI bug)? Thanks again.

        T M 2 Replies Last reply Reply Quote 0
        • T
          tman222 @tman222
          last edited by

          Cryptographic options currently enabled on both systems:

          c35687f7-7ea1-4f75-b491-b07251ee5a7b-image.png

          1 Reply Last reply Reply Quote 0
          • M
            mcury Rebel Alliance @tman222
            last edited by

            @tman222 said in Hardware Crypto Support Missing AES-GCM?:

            So it does look like AES-GCM is supported. Any idea why it is not showing up in the UI under Hardware Crypto? Is there any other way to check to see if it's properly supported/enabled (in case this is just a UI bug)? Thanks again.

            Try this: /usr/bin/openssl engine -t -c

            More info: https://docs.netgate.com/pfsense/en/latest/hardware/cryptographic-accelerators.html

            dead on arrival, nowhere to be found.

            T 1 Reply Last reply Reply Quote 0
            • T
              tman222 @mcury
              last edited by

              @mcury - thanks for the suggestion, but unfortunately running that command didn't show too much beyond that the /dev/crypto and Intel RDRAND engines are available.

              I also ran kldstat and see that the aesni.ko, iimb.ko, and cryptodev.ko modules are loaded.

              Could this be UI bug? Is there any other way to check? Thanks again.

              M 1 Reply Last reply Reply Quote 0
              • M
                mcury Rebel Alliance @tman222
                last edited by mcury

                @tman222 said in Hardware Crypto Support Missing AES-GCM?:

                Could this be UI bug? Is there any other way to check? Thanks again.

                I think so.
                I've also upgraded from 23.01 to 23.05 and the IPsec MB wasn't showing.

                After that upgrade, I decided to use a SSD and not the eMMC, I had to reinstall my system, so did a 23.05 clean install.

                After that, IPsec MB became available in the GUI.

                So, not sure if this is a bug but after a clean 23.05 install, GUI started to show the other options.

                Here is what jimp said about this:
                https://forum.netgate.com/topic/180341/surprise-swap-and-ipsec-mb-crypto?_=1685031490197

                dead on arrival, nowhere to be found.

                1 Reply Last reply Reply Quote 0
                • T
                  tman222
                  last edited by

                  Thanks @mcury - I'll wait for others to hopefully chime in on this as well, otherwise I'll go ahead and raise a ticket on Redmine.

                  @jimp @stephenw10 - any ideas on this?

                  Thanks again for your help.

                  P 1 Reply Last reply Reply Quote 0
                  • P
                    pst @tman222
                    last edited by pst

                    @tman222 I think I found the problem.

                    In /usr/local/www/includes/functions.inc.php, function crypto_accel_get_algs() the code to handle duplicates in the arrays seems to be broken, which leads to exclusion of algorithms that are included in both CPU and IIMB. That the algorithms comes out unsorted is also an indication the logic is broken.

                    I changed the function to look like this, which works as expected. Unfortunately I can't provide a diff as I forgot to take a backup...

                    function crypto_accel_get_algs($crypto)
                    {
                            $algs = [];
                    
                            foreach ($crypto['accel'] as $accel) {
                                    /* skip these... */
                                    if (!$accel['present'] || !$accel['enabled'])
                                            continue;
                    
                                    $algs = array_merge($algs, $accel['algs']);
                            }
                    
                            /* return early */
                            if (empty($algs))
                                    return (gettext('Inactive'));
                    
                            /* sort alphabetically */
                            ksort($algs);
                    
                            /* now flip back so keys become values, done twice to remove duplicates */
                            $algs = array_flip($algs);
                            $algs = array_flip($algs);
                    
                            /* format and return the algs string */
                            return (implode(',', $algs));
                    }
                    

                    GUI now shows:

                    ed46baaf-dbfc-49ae-ad30-3d62f5d8e383-image.png

                    1 Reply Last reply Reply Quote 4
                    • T
                      tman222
                      last edited by

                      Thanks @pst - this look like it could be fixed via simple patch to that PHP function. Do you want to go ahead and raise a Redmine bug report on this (since you already figured out the fix) so that the Netgate developers can see it? Thanks again.

                      P 1 Reply Last reply Reply Quote 0
                      • P
                        pst @tman222
                        last edited by

                        @tman222 Yes, I can create a bug report

                        T 1 Reply Last reply Reply Quote 1
                        • T
                          tman222 @pst
                          last edited by

                          @pst said in Hardware Crypto Support Missing AES-GCM?:

                          @tman222 Yes, I can create a bug report

                          Thanks @pst - can you post the link here to the Redmine ticket once done? Thanks again for all your help with figuring this out.

                          P 1 Reply Last reply Reply Quote 0
                          • P
                            pst @tman222
                            last edited by

                            @tman222 https://redmine.pfsense.org/issues/14417

                            1 Reply Last reply Reply Quote 2
                            • J
                              jackyaz
                              last edited by

                              Thanks for this! I've created a patch file here in case it helps anyone!

                              https://gist.githubusercontent.com/jackyaz/1fc79ab30dba254af73a85e48551a1e4/raw/e3f241e8109904196d6563bb000042d521bccbc6/crypto_algs_dashboard.patch

                              JonathanLeeJ 2 Replies Last reply Reply Quote 2
                              • JonathanLeeJ
                                JonathanLee @jackyaz
                                last edited by JonathanLee

                                @jackyaz Thank you was wondering about this with my 23.05.01 and found this post. Fixed my issues. On the 2100 if you enabled both

                                IPsec-MB Crypto: Yes (active)
                                SafeXcel Crypto: Yes (active)
                                

                                Chacha20-Poly1305 would vanish off the system when IPsec-MB was marked inactive.
                                However with both enabled

                                Before Patch
                                Screenshot 2025-02-28 at 22.29.21.png

                                AES-GCM,ChaCha20-Poly1305,AES-ICM,AES-XTS,SHA1,SHA256,SHA384,SHA512
                                

                                After Patch...
                                Screenshot 2025-02-28 at 22.20.38.png

                                AES-CCM and AES-CBC is back
                                

                                Again cbc is an older cipher

                                Make sure to upvote

                                1 Reply Last reply Reply Quote 0
                                • JonathanLeeJ
                                  JonathanLee @jackyaz
                                  last edited by

                                  @jackyaz

                                  Is this of concern /* duplicates are ignored because keys must be unique */

                                  Make sure to upvote

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