Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-36149

UBSAN in X is outside the range of representable values of type 'unsigned long' | page_cleaner_flush_pages_recommendation

Details

    Description

      --source include/have_innodb.inc 
       
      CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
      SELECT @@innodb_io_capacity;
      SELECt @@innodb_io_capacity_max;
      SET GLOBAL innodb_io_capacity=18446744073709551615;
      SET GLOBAL innodb_max_dirty_pages_pct=1;
      CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
      CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
      CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
      CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
      CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
      CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
      

      Leads to:

      CS 11.8.1 6f1161aa34cbb178b00fc24cbc46e2e0e2af767a (Optimized, UBASAN, Clang) Build 24/02/2025

      /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2302:19: runtime error: 1.85291e+19 is outside the range of representable values of type 'unsigned long'
          #0 0x557d0b95b4b3 in page_cleaner_flush_pages_recommendation(unsigned long, unsigned long, double, unsigned long, double) /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2302:19
          #1 0x557d0b95b4b3 in buf_flush_page_cleaner() /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2619:18
          #2 0x14ffc48ecdb3 in execute_native_thread_routine /build/gcc-14-ig5ci0/gcc-14-14.2.0/build/x86_64-linux-gnu/libstdc++-v3/src/c++11/../../../../../src/libstdc++-v3/src/c++11/thread.cc:104:18
          #3 0x557d0930695c in asan_thread_start(void*) asan_interceptors.cpp.o
          #4 0x14ffc449caa3 in start_thread nptl/pthread_create.c:447:8
          #5 0x14ffc4529c3b in clone3 misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:78
       
      SUMMARY: UndefinedBehaviorSanitizer: float-cast-overflow /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2302:19 
      

      Setup:

      Compiled with a recent version of Clang (I used Clang 18.1.3) with LLVM 18. Ubuntu instructions:
        # Note: It is strongly recommended to uninstall all old Clang & LLVM packages (ref  dpkg --list | grep -iE 'clang|llvm'  and use  apt purge  and  dpkg --purge  to remove the packages), before following these steps
           # Note: llvm-17-linker-tools installs /usr/lib/llvm-17/lib/LLVMgold.so, which is needed for compilation, and LLVMgold.so is no longer included in LLVM 18
           sudo apt install clang llvm-18 llvm-18-linker-tools llvm-18-runtime llvm-18-tools llvm-18-dev libstdc++-14-dev llvm-dev llvm-17-linker-tools
           sudo ln -s /usr/lib/llvm-17/lib/LLVMgold.so /usr/lib/llvm-18/lib/LLVMgold.so
      Compiled with: "-DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DCMAKE_C{,XX}_FLAGS='-march=native -mtune=native'" and:
          -DWITH_ASAN=ON -DWITH_ASAN_SCOPE=ON -DWITH_UBSAN=ON -DWSREP_LIB_WITH_ASAN=ON
      Set before execution:
          export UBSAN_OPTIONS=print_stacktrace=1:report_error_type=1   # And you may also want to supress UBSAN startup issues using 'suppressions=UBSAN.filter' in UBSAN_OPTIONS. For an example of UBSAN.filter, which includes current startup issues see: https://github.com/mariadb-corporation/mariadb-qa/blob/master/UBSAN.filter
      

      Bug confirmed present in:
      MariaDB: 11.4.6 (opt), 11.8.1 (opt), 12.0.0 (opt)

      Bug (or feature/syntax) confirmed not present in:
      MariaDB: 10.11.12 (dbg), 10.11.12 (opt), 12.0.0 (dbg)

      Attachments

        Issue Links

          Activity

            ramesh Ramesh Sivaraman created issue -
            marko Marko Mäkelä made changes -
            Field Original Value New Value
            Assignee Marko Mäkelä [ marko ] Ramesh Sivaraman [ JIRAUSER48189 ]
            Roel Roel Van de Paar made changes -
            Description {code:sql}
            --source include/have_innodb.inc

            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            SELECT @@innodb_io_capacity;
            SELECt @@innodb_io_capacity_max;
            SET GLOBAL innodb_io_capacity=18446744073709551615;
            SET GLOBAL innodb_max_dirty_pages_pct=1;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;

            {code}

            Leads to:

            {noformat:title=CS 11.8.1 6f1161aa34cbb178b00fc24cbc46e2e0e2af767a (Optimized, UBASAN, Clang) Build 24/02/2025}
            /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2302:19: runtime error: 1.85291e+19 is outside the range of representable values of type 'unsigned long'
                #0 0x557d0b95b4b3 in page_cleaner_flush_pages_recommendation(unsigned long, unsigned long, double, unsigned long, double) /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2302:19
                #1 0x557d0b95b4b3 in buf_flush_page_cleaner() /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2619:18
                #2 0x14ffc48ecdb3 in execute_native_thread_routine /build/gcc-14-ig5ci0/gcc-14-14.2.0/build/x86_64-linux-gnu/libstdc++-v3/src/c++11/../../../../../src/libstdc++-v3/src/c++11/thread.cc:104:18
                #3 0x557d0930695c in asan_thread_start(void*) asan_interceptors.cpp.o
                #4 0x14ffc449caa3 in start_thread nptl/pthread_create.c:447:8
                #5 0x14ffc4529c3b in clone3 misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:78

            SUMMARY: UndefinedBehaviorSanitizer: float-cast-overflow /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2302:19
            {noformat}

            Setup:

            {noformat}
            Compiled with a recent version of Clang (I used Clang 18.1.3) with LLVM 18. Ubuntu instructions:
              # Note: It is strongly recommended to uninstall all old Clang & LLVM packages (ref dpkg --list | grep -iE 'clang|llvm' and use apt purge and dpkg --purge to remove the packages), before following these steps
                 # Note: llvm-17-linker-tools installs /usr/lib/llvm-17/lib/LLVMgold.so, which is needed for compilation, and LLVMgold.so is no longer included in LLVM 18
                 sudo apt install clang llvm-18 llvm-18-linker-tools llvm-18-runtime llvm-18-tools llvm-18-dev libstdc++-14-dev llvm-dev llvm-17-linker-tools
                 sudo ln -s /usr/lib/llvm-17/lib/LLVMgold.so /usr/lib/llvm-18/lib/LLVMgold.so
            Compiled with: "-DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DCMAKE_C{,XX}_FLAGS='-march=native -mtune=native'" and:
                -DWITH_ASAN=ON -DWITH_ASAN_SCOPE=ON -DWITH_UBSAN=ON -DWSREP_LIB_WITH_ASAN=ON
            Set before execution:
                export UBSAN_OPTIONS=print_stacktrace=1:report_error_type=1 # And you may also want to supress UBSAN startup issues using 'suppressions=UBSAN.filter' in UBSAN_OPTIONS. For an example of UBSAN.filter, which includes current startup issues see: https://github.com/mariadb-corporation/mariadb-qa/blob/master/UBSAN.filter
            {noformat}

            Bug confirmed present in:
            MariaDB: 11.4.6 (opt), 11.8.1 (opt), 12.0.0 (opt)

            Bug (or feature/syntax) confirmed not present in:
            MariaDB: 10.11.12 (dbg), 10.11.12 (opt), 12.0.0 (dbg)
            {code:sql}
            --source include/have_innodb.inc

            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            SELECT @@innodb_io_capacity;
            SELECt @@innodb_io_capacity_max;
            SET GLOBAL innodb_io_capacity=18446744073709551615;
            SET GLOBAL innodb_max_dirty_pages_pct=1;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            CREATE OR REPLACE TABLE t (a INT) ENGINE=INNODB;
            {code}

            Leads to:

            {noformat:title=CS 11.8.1 6f1161aa34cbb178b00fc24cbc46e2e0e2af767a (Optimized, UBASAN, Clang) Build 24/02/2025}
            /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2302:19: runtime error: 1.85291e+19 is outside the range of representable values of type 'unsigned long'
                #0 0x557d0b95b4b3 in page_cleaner_flush_pages_recommendation(unsigned long, unsigned long, double, unsigned long, double) /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2302:19
                #1 0x557d0b95b4b3 in buf_flush_page_cleaner() /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2619:18
                #2 0x14ffc48ecdb3 in execute_native_thread_routine /build/gcc-14-ig5ci0/gcc-14-14.2.0/build/x86_64-linux-gnu/libstdc++-v3/src/c++11/../../../../../src/libstdc++-v3/src/c++11/thread.cc:104:18
                #3 0x557d0930695c in asan_thread_start(void*) asan_interceptors.cpp.o
                #4 0x14ffc449caa3 in start_thread nptl/pthread_create.c:447:8
                #5 0x14ffc4529c3b in clone3 misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:78

            SUMMARY: UndefinedBehaviorSanitizer: float-cast-overflow /test/11.8_opt_san/storage/innobase/buf/buf0flu.cc:2302:19
            {noformat}

            Setup:

            {noformat}
            Compiled with a recent version of Clang (I used Clang 18.1.3) with LLVM 18. Ubuntu instructions:
              # Note: It is strongly recommended to uninstall all old Clang & LLVM packages (ref dpkg --list | grep -iE 'clang|llvm' and use apt purge and dpkg --purge to remove the packages), before following these steps
                 # Note: llvm-17-linker-tools installs /usr/lib/llvm-17/lib/LLVMgold.so, which is needed for compilation, and LLVMgold.so is no longer included in LLVM 18
                 sudo apt install clang llvm-18 llvm-18-linker-tools llvm-18-runtime llvm-18-tools llvm-18-dev libstdc++-14-dev llvm-dev llvm-17-linker-tools
                 sudo ln -s /usr/lib/llvm-17/lib/LLVMgold.so /usr/lib/llvm-18/lib/LLVMgold.so
            Compiled with: "-DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DCMAKE_C{,XX}_FLAGS='-march=native -mtune=native'" and:
                -DWITH_ASAN=ON -DWITH_ASAN_SCOPE=ON -DWITH_UBSAN=ON -DWSREP_LIB_WITH_ASAN=ON
            Set before execution:
                export UBSAN_OPTIONS=print_stacktrace=1:report_error_type=1 # And you may also want to supress UBSAN startup issues using 'suppressions=UBSAN.filter' in UBSAN_OPTIONS. For an example of UBSAN.filter, which includes current startup issues see: https://github.com/mariadb-corporation/mariadb-qa/blob/master/UBSAN.filter
            {noformat}

            Bug confirmed present in:
            MariaDB: 11.4.6 (opt), 11.8.1 (opt), 12.0.0 (opt)

            Bug (or feature/syntax) confirmed not present in:
            MariaDB: 10.11.12 (dbg), 10.11.12 (opt), 12.0.0 (dbg)
            Roel Roel Van de Paar made changes -
            Labels UBSAN UBSAN float-cast-overflow
            Roel Roel Van de Paar made changes -
            Labels UBSAN float-cast-overflow UBSAN float-cast-overflow need_rr
            Roel Roel Van de Paar made changes -
            Status Open [ 1 ] Confirmed [ 10101 ]
            Roel Roel Van de Paar made changes -
            Labels UBSAN float-cast-overflow need_rr UBSAN float-cast-overflow need_rr sporadic
            Roel Roel Van de Paar made changes -
            Labels UBSAN float-cast-overflow need_rr sporadic UBSAN float-cast-overflow need_rr not-11.2 regression-11.4 sporadic
            Roel Roel Van de Paar made changes -
            Labels UBSAN float-cast-overflow need_rr not-11.2 regression-11.4 sporadic UBSAN float-cast-overflow need_rr not-11.2 regression-11.4
            Roel Roel Van de Paar made changes -
            Labels UBSAN float-cast-overflow need_rr not-11.2 regression-11.4 UBSAN float-cast-overflow need_rr
            ramesh Ramesh Sivaraman made changes -
            Assignee Ramesh Sivaraman [ JIRAUSER48189 ] Marko Mäkelä [ marko ]
            marko Marko Mäkelä made changes -
            Fix Version/s 10.6 [ 24028 ]
            Fix Version/s 10.11 [ 27614 ]
            Affects Version/s 10.6 [ 24028 ]
            Affects Version/s 10.11 [ 27614 ]
            Assignee Marko Mäkelä [ marko ] Debarun Banerjee [ JIRAUSER54513 ]
            debarun Debarun Banerjee made changes -
            debarun Debarun Banerjee made changes -
            Assignee Debarun Banerjee [ JIRAUSER54513 ] Marko Mäkelä [ marko ]
            Status Confirmed [ 10101 ] In Review [ 10002 ]
            marko Marko Mäkelä made changes -
            Assignee Marko Mäkelä [ marko ] Debarun Banerjee [ JIRAUSER54513 ]
            Status In Review [ 10002 ] Stalled [ 10000 ]
            debarun Debarun Banerjee made changes -
            Assignee Debarun Banerjee [ JIRAUSER54513 ] Marko Mäkelä [ marko ]
            Status Stalled [ 10000 ] In Review [ 10002 ]
            marko Marko Mäkelä made changes -
            Assignee Marko Mäkelä [ marko ] Debarun Banerjee [ JIRAUSER54513 ]
            Status In Review [ 10002 ] Stalled [ 10000 ]
            debarun Debarun Banerjee made changes -
            issue.field.resolutiondate 2025-03-17 09:26:05.0 2025-03-17 09:26:05.073
            debarun Debarun Banerjee made changes -
            Fix Version/s 10.11.12 [ 29998 ]
            Fix Version/s 10.6 [ 24028 ]
            Fix Version/s 10.11 [ 27614 ]
            Fix Version/s 11.4 [ 29301 ]
            Fix Version/s 11.8 [ 29921 ]
            Resolution Fixed [ 1 ]
            Status Stalled [ 10000 ] Closed [ 6 ]
            JIraAutomate JiraAutomate made changes -
            Fix Version/s 11.4.6 [ 29999 ]
            Fix Version/s 11.8.2 [ 30001 ]

            People

              debarun Debarun Banerjee
              ramesh Ramesh Sivaraman
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.