Since upgrading my OS to a version which ships mariadb built against openssl 3.0.2, I am seeing server crashes in both my_md5() and my_aes()
status: process terminated by SIGSEGV (Segmentation Fault), pid=25463 uid=70
> $C
fffffaffee718aa0 libcrypto.so.3`evp_cipher_init_internal+0x3d()
fffffaffee718ac0 libcrypto.so.3`EVP_CipherInit_ex+0xf()
fffffaffee718ad0 MyCTX::init+0x1d()
fffffaffee718dd0 my_aes_crypt+0x64()
fffffaffee718ed0 Item_aes_crypt::val_str+0x110()
status: process terminated by SIGSEGV (Segmentation Fault), pid=14380 uid=70
> $C
fffffaffed89efe0 libcrypto.so.3`EVP_MD_free+5()
fffffaffed89f000 libcrypto.so.3`EVP_MD_CTX_reset+0x2c()
fffffaffed89f080 my_md5+0x46()
fffffaffed89f0d0 Item_func_md5::val_str_ascii+0x53()
fffffaffed89f110 Item_func::val_str_from_val_str_ascii+0x85()
Changing the code to use the new openssl APIs with EVP_CIPHER/MD_CTX_new/free() resolves the problem for me, but that doesn't fix the plugin API.
relates to
MDEV-25785
Add support for OpenSSL 3.0
Closed
Andy
created issue -
2022-04-18 10:05
Andy
made changes -
2022-04-18 10:08
Description
Since upgrading my OS to a version which ships mariadb built against openssl 3.0.2, I am seeing server crashes in both my_md5() and my_aes()
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=25463 uid=70
> $C
fffffaffee718aa0 libcrypto.so.3`evp_cipher_init_internal+0x3d()
fffffaffee718ac0 libcrypto.so.3`EVP_CipherInit_ex+0xf()
fffffaffee718ad0 MyCTX::init+0x1d()
fffffaffee718dd0 my_aes_crypt+0x64()
fffffaffee718ed0 Item_aes_crypt::val_str+0x110()
{noformat}
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=14380 uid=70
> $C
fffffaffed89efe0 libcrypto.so.3`EVP_MD_free+5()
fffffaffed89f000 libcrypto.so.3`EVP_MD_CTX_reset+0x2c()
fffffaffed89f080 my_md5+0x46()
fffffaffed89f0d0 Item_func_md5::val_str_ascii+0x53()
fffffaffed89f110 Item_func::val_str_from_val_str_ascii+0x85()
{noformat}
Changing the code to use the new openssl APIs with EVP_CIPHER_CTX_new() and EVP_CIPHER_CTX_free(), resolves the problem for me.
Since upgrading my OS to a version which ships mariadb built against openssl 3.0.2, I am seeing server crashes in both my_md5() and my_aes()
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=25463 uid=70
> $C
fffffaffee718aa0 libcrypto.so.3`evp_cipher_init_internal+0x3d()
fffffaffee718ac0 libcrypto.so.3`EVP_CipherInit_ex+0xf()
fffffaffee718ad0 MyCTX::init+0x1d()
fffffaffee718dd0 my_aes_crypt+0x64()
fffffaffee718ed0 Item_aes_crypt::val_str+0x110()
{noformat}
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=14380 uid=70
> $C
fffffaffed89efe0 libcrypto.so.3`EVP_MD_free+5()
fffffaffed89f000 libcrypto.so.3`EVP_MD_CTX_reset+0x2c()
fffffaffed89f080 my_md5+0x46()
fffffaffed89f0d0 Item_func_md5::val_str_ascii+0x53()
fffffaffed89f110 Item_func::val_str_from_val_str_ascii+0x85()
{noformat}
Changing the code to use the new openssl APIs with EVP_CIPHER_{MD,CTX}_{new,free}() resolves the problem for me.
Andy
made changes -
2022-04-18 10:09
Description
Since upgrading my OS to a version which ships mariadb built against openssl 3.0.2, I am seeing server crashes in both my_md5() and my_aes()
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=25463 uid=70
> $C
fffffaffee718aa0 libcrypto.so.3`evp_cipher_init_internal+0x3d()
fffffaffee718ac0 libcrypto.so.3`EVP_CipherInit_ex+0xf()
fffffaffee718ad0 MyCTX::init+0x1d()
fffffaffee718dd0 my_aes_crypt+0x64()
fffffaffee718ed0 Item_aes_crypt::val_str+0x110()
{noformat}
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=14380 uid=70
> $C
fffffaffed89efe0 libcrypto.so.3`EVP_MD_free+5()
fffffaffed89f000 libcrypto.so.3`EVP_MD_CTX_reset+0x2c()
fffffaffed89f080 my_md5+0x46()
fffffaffed89f0d0 Item_func_md5::val_str_ascii+0x53()
fffffaffed89f110 Item_func::val_str_from_val_str_ascii+0x85()
{noformat}
Changing the code to use the new openssl APIs with EVP_CIPHER_{MD,CTX}_{new,free}() resolves the problem for me.
Since upgrading my OS to a version which ships mariadb built against openssl 3.0.2, I am seeing server crashes in both my_md5() and my_aes()
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=25463 uid=70
> $C
fffffaffee718aa0 libcrypto.so.3`evp_cipher_init_internal+0x3d()
fffffaffee718ac0 libcrypto.so.3`EVP_CipherInit_ex+0xf()
fffffaffee718ad0 MyCTX::init+0x1d()
fffffaffee718dd0 my_aes_crypt+0x64()
fffffaffee718ed0 Item_aes_crypt::val_str+0x110()
{noformat}
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=14380 uid=70
> $C
fffffaffed89efe0 libcrypto.so.3`EVP_MD_free+5()
fffffaffed89f000 libcrypto.so.3`EVP_MD_CTX_reset+0x2c()
fffffaffed89f080 my_md5+0x46()
fffffaffed89f0d0 Item_func_md5::val_str_ascii+0x53()
fffffaffed89f110 Item_func::val_str_from_val_str_ascii+0x85()
{noformat}
Changing the code to use the new openssl APIs with EVP_CIPHER_MD/CTX_new/free() resolves the problem for me.
Andy
made changes -
2022-04-18 10:42
Description
Since upgrading my OS to a version which ships mariadb built against openssl 3.0.2, I am seeing server crashes in both my_md5() and my_aes()
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=25463 uid=70
> $C
fffffaffee718aa0 libcrypto.so.3`evp_cipher_init_internal+0x3d()
fffffaffee718ac0 libcrypto.so.3`EVP_CipherInit_ex+0xf()
fffffaffee718ad0 MyCTX::init+0x1d()
fffffaffee718dd0 my_aes_crypt+0x64()
fffffaffee718ed0 Item_aes_crypt::val_str+0x110()
{noformat}
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=14380 uid=70
> $C
fffffaffed89efe0 libcrypto.so.3`EVP_MD_free+5()
fffffaffed89f000 libcrypto.so.3`EVP_MD_CTX_reset+0x2c()
fffffaffed89f080 my_md5+0x46()
fffffaffed89f0d0 Item_func_md5::val_str_ascii+0x53()
fffffaffed89f110 Item_func::val_str_from_val_str_ascii+0x85()
{noformat}
Changing the code to use the new openssl APIs with EVP_CIPHER_MD/CTX_new/free() resolves the problem for me.
Since upgrading my OS to a version which ships mariadb built against openssl 3.0.2, I am seeing server crashes in both my_md5() and my_aes()
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=25463 uid=70
> $C
fffffaffee718aa0 libcrypto.so.3`evp_cipher_init_internal+0x3d()
fffffaffee718ac0 libcrypto.so.3`EVP_CipherInit_ex+0xf()
fffffaffee718ad0 MyCTX::init+0x1d()
fffffaffee718dd0 my_aes_crypt+0x64()
fffffaffee718ed0 Item_aes_crypt::val_str+0x110()
{noformat}
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=14380 uid=70
> $C
fffffaffed89efe0 libcrypto.so.3`EVP_MD_free+5()
fffffaffed89f000 libcrypto.so.3`EVP_MD_CTX_reset+0x2c()
fffffaffed89f080 my_md5+0x46()
fffffaffed89f0d0 Item_func_md5::val_str_ascii+0x53()
fffffaffed89f110 Item_func::val_str_from_val_str_ascii+0x85()
{noformat}
Changing the code to use the new openssl APIs with EVP_CIPHER/MD_CTX_new/free() resolves the problem for me.
Andy
made changes -
2022-04-18 10:46
Description
Since upgrading my OS to a version which ships mariadb built against openssl 3.0.2, I am seeing server crashes in both my_md5() and my_aes()
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=25463 uid=70
> $C
fffffaffee718aa0 libcrypto.so.3`evp_cipher_init_internal+0x3d()
fffffaffee718ac0 libcrypto.so.3`EVP_CipherInit_ex+0xf()
fffffaffee718ad0 MyCTX::init+0x1d()
fffffaffee718dd0 my_aes_crypt+0x64()
fffffaffee718ed0 Item_aes_crypt::val_str+0x110()
{noformat}
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=14380 uid=70
> $C
fffffaffed89efe0 libcrypto.so.3`EVP_MD_free+5()
fffffaffed89f000 libcrypto.so.3`EVP_MD_CTX_reset+0x2c()
fffffaffed89f080 my_md5+0x46()
fffffaffed89f0d0 Item_func_md5::val_str_ascii+0x53()
fffffaffed89f110 Item_func::val_str_from_val_str_ascii+0x85()
{noformat}
Changing the code to use the new openssl APIs with EVP_CIPHER/MD_CTX_new/free() resolves the problem for me.
Since upgrading my OS to a version which ships mariadb built against openssl 3.0.2, I am seeing server crashes in both my_md5() and my_aes()
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=25463 uid=70
> $C
fffffaffee718aa0 libcrypto.so.3`evp_cipher_init_internal+0x3d()
fffffaffee718ac0 libcrypto.so.3`EVP_CipherInit_ex+0xf()
fffffaffee718ad0 MyCTX::init+0x1d()
fffffaffee718dd0 my_aes_crypt+0x64()
fffffaffee718ed0 Item_aes_crypt::val_str+0x110()
{noformat}
{noformat}
status: process terminated by SIGSEGV (Segmentation Fault), pid=14380 uid=70
> $C
fffffaffed89efe0 libcrypto.so.3`EVP_MD_free+5()
fffffaffed89f000 libcrypto.so.3`EVP_MD_CTX_reset+0x2c()
fffffaffed89f080 my_md5+0x46()
fffffaffed89f0d0 Item_func_md5::val_str_ascii+0x53()
fffffaffed89f110 Item_func::val_str_from_val_str_ascii+0x85()
{noformat}
Changing the code to use the new openssl APIs with EVP_CIPHER/MD_CTX_new/free() resolves the problem for me, but that doesn't fix the plugin API.
Sergei Golubchik
made changes -
2022-04-18 11:21
Status
Open
[ 1
]
Needs Feedback
[ 10501
]
Elena Stepanova
made changes -
2022-05-16 16:38
Fix Version/s
N/A
[ 14700
]
Resolution
Incomplete
[ 4
]
Status
Needs Feedback
[ 10501
]
Closed
[ 6
]
{"report":{"fcp":982,"ttfb":263,"pageVisibility":"visible","entityId":110034,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"be7c0cda-100f-4dfd-89cd-9620ee06247e","navigationType":0,"readyForUser":1059.2000002861023,"redirectCount":0,"resourceLoadedEnd":1084.9000000953674,"resourceLoadedStart":268.90000009536743,"resourceTiming":[{"duration":184.59999990463257,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":268.90000009536743,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":268.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":453.5,"responseStart":0,"secureConnectionStart":0},{"duration":184.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":269.30000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":269.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":453.80000019073486,"responseStart":0,"secureConnectionStart":0},{"duration":242.80000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":269.5,"connectEnd":269.5,"connectStart":269.5,"domainLookupEnd":269.5,"domainLookupStart":269.5,"fetchStart":269.5,"redirectEnd":0,"redirectStart":0,"requestStart":269.5,"responseEnd":512.3000001907349,"responseStart":512.3000001907349,"secureConnectionStart":269.5},{"duration":340,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":269.5,"connectEnd":269.5,"connectStart":269.5,"domainLookupEnd":269.5,"domainLookupStart":269.5,"fetchStart":269.5,"redirectEnd":0,"redirectStart":0,"requestStart":269.5,"responseEnd":609.5,"responseStart":609.5,"secureConnectionStart":269.5},{"duration":343.90000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":269.80000019073486,"connectEnd":269.80000019073486,"connectStart":269.80000019073486,"domainLookupEnd":269.80000019073486,"domainLookupStart":269.80000019073486,"fetchStart":269.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":269.80000019073486,"responseEnd":613.7000002861023,"responseStart":613.7000002861023,"secureConnectionStart":269.80000019073486},{"duration":344.30000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":270,"connectEnd":270,"connectStart":270,"domainLookupEnd":270,"domainLookupStart":270,"fetchStart":270,"redirectEnd":0,"redirectStart":0,"requestStart":270,"responseEnd":614.3000001907349,"responseStart":614.3000001907349,"secureConnectionStart":270},{"duration":344.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":270.2000002861023,"connectEnd":270.2000002861023,"connectStart":270.2000002861023,"domainLookupEnd":270.2000002861023,"domainLookupStart":270.2000002861023,"fetchStart":270.2000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":270.2000002861023,"responseEnd":614.7000002861023,"responseStart":614.7000002861023,"secureConnectionStart":270.2000002861023},{"duration":390.7000002861023,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":270.40000009536743,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":270.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":661.1000003814697,"responseStart":0,"secureConnectionStart":0},{"duration":344.6000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":270.5,"connectEnd":270.5,"connectStart":270.5,"domainLookupEnd":270.5,"domainLookupStart":270.5,"fetchStart":270.5,"redirectEnd":0,"redirectStart":0,"requestStart":270.5,"responseEnd":615.1000003814697,"responseStart":615.1000003814697,"secureConnectionStart":270.5},{"duration":390.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":270.7000002861023,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":270.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":661.2000002861023,"responseStart":0,"secureConnectionStart":0},{"duration":344.90000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":270.80000019073486,"connectEnd":270.80000019073486,"connectStart":270.80000019073486,"domainLookupEnd":270.80000019073486,"domainLookupStart":270.80000019073486,"fetchStart":270.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":270.80000019073486,"responseEnd":615.7000002861023,"responseStart":615.7000002861023,"secureConnectionStart":270.80000019073486},{"duration":807.2999997138977,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":276.7000002861023,"connectEnd":276.7000002861023,"connectStart":276.7000002861023,"domainLookupEnd":276.7000002861023,"domainLookupStart":276.7000002861023,"fetchStart":276.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":276.7000002861023,"responseEnd":1084,"responseStart":1084,"secureConnectionStart":276.7000002861023},{"duration":808,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":276.90000009536743,"connectEnd":276.90000009536743,"connectStart":276.90000009536743,"domainLookupEnd":276.90000009536743,"domainLookupStart":276.90000009536743,"fetchStart":276.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":276.90000009536743,"responseEnd":1084.9000000953674,"responseStart":1084.9000000953674,"secureConnectionStart":276.90000009536743},{"duration":341.09999990463257,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":672.9000000953674,"connectEnd":672.9000000953674,"connectStart":672.9000000953674,"domainLookupEnd":672.9000000953674,"domainLookupStart":672.9000000953674,"fetchStart":672.9000000953674,"redirectEnd":0,"redirectStart":0,"requestStart":672.9000000953674,"responseEnd":1014,"responseStart":1014,"secureConnectionStart":672.9000000953674},{"duration":227.09999990463257,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":974.3000001907349,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":974.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1201.4000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":161.7999997138977,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/css/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1097.2000002861023,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1097.2000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1259,"responseStart":0,"secureConnectionStart":0},{"duration":155.09999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/e65b778d185daf5aee24936755b43da6/_/download/contextbatch/js/browser-metrics-plugin.contrib,-_super,-project.issue.navigator,-jira.view.issue,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1098.1000003814697,"connectEnd":1098.1000003814697,"connectStart":1098.1000003814697,"domainLookupEnd":1098.1000003814697,"domainLookupStart":1098.1000003814697,"fetchStart":1098.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":1098.1000003814697,"responseEnd":1253.2000002861023,"responseStart":1253.2000002861023,"secureConnectionStart":1098.1000003814697},{"duration":173.59999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/097ae97cb8fbec7d6ea4bbb1f26955b9-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/js/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":1098.6000003814697,"connectEnd":1098.6000003814697,"connectStart":1098.6000003814697,"domainLookupEnd":1098.6000003814697,"domainLookupStart":1098.6000003814697,"fetchStart":1098.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":1098.6000003814697,"responseEnd":1272.2000002861023,"responseStart":1272.2000002861023,"secureConnectionStart":1098.6000003814697}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":93,"responseStart":263,"responseEnd":276,"domLoading":267,"domInteractive":1206,"domContentLoadedEventStart":1206,"domContentLoadedEventEnd":1259,"domComplete":1496,"loadEventStart":1496,"loadEventEnd":1496,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1165},{"name":"bigPipe.sidebar-id.end","time":1165.8000001907349},{"name":"bigPipe.activity-panel-pipe-id.start","time":1166},{"name":"bigPipe.activity-panel-pipe-id.end","time":1169.8000001907349},{"name":"activityTabFullyLoaded","time":1277.4000000953674}],"measures":[],"correlationId":"365d76f8117c6f","effectiveType":"4g","downlink":9.3,"rtt":0,"serverDuration":112,"dbReadsTimeInMs":17,"dbConnsTimeInMs":26,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
MariaDB 10.5.15, 10.6.7, 10.7.3 cannot be built with OpenSSL 3.0. There's a compile-time check that prevents that: https://github.com/MariaDB/server/commit/c9beef43154
I suspect your OS mariadb maintainers have removed this safety check and ended up with a broken binary.
At the moment MariaDB supports OpenSSL 3.0 only starting from MariaDB 10.8. We do plan to backport this change, but it has not happened yet.