Files
swift/test/unit/common/utils/test_checksum.py
Alistair Coles 404e1f2732 s3api: Add support for crc64nvme checksum calculation
Add anycrc as a soft dependency in case ISA-L isn't available.
Plus we'll want it later: when we start writing down checksums,
we'll need it to combine per-part checksums for MPUs.

Like with crc32c, we won't provide any pure-python version as the
CPU-intensiveness could present a DoS vector. Worst case, we 501
as before.

Co-Authored-By: Tim Burke <tim.burke@gmail.com>
Signed-off-by: Tim Burke <tim.burke@gmail.com>
Change-Id: Ia05e5677a8ca89a62b142078abfb7371b1badd3f
Signed-off-by: Alistair Coles <alistairncoles@gmail.com>
2025-07-16 17:51:31 +01:00

369 lines
16 KiB
Python

# Copyright (c) 2024 NVIDIA
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import unittest
from unittest import mock
import zlib
from swift.common.utils import checksum
from test.debug_logger import debug_logger
from test.unit import requires_crc32c, requires_crc64nvme
# If you're curious about the 0xe3069283, see "check" at
# https://reveng.sourceforge.io/crc-catalogue/17plus.htm#crc.cat.crc-32-iscsi
class TestCRC32C(unittest.TestCase):
def check_crc_func(self, impl):
self.assertEqual(impl(b"123456789"), 0xe3069283)
# Check that we can save/continue
partial = impl(b"12345")
self.assertEqual(impl(b"6789", partial), 0xe3069283)
@unittest.skipIf(checksum.crc32c_anycrc is None, 'No anycrc CRC32C')
def test_anycrc(self):
self.check_crc_func(checksum.crc32c_anycrc)
# Check preferences -- beats out reference, but not kernel or ISA-L
if checksum.crc32c_isal is None and checksum.crc32c_kern is None:
self.assertIs(checksum._select_crc32c_impl(),
checksum.crc32c_anycrc)
@unittest.skipIf(checksum.crc32c_kern is None, 'No kernel CRC32C')
def test_kern(self):
self.check_crc_func(checksum.crc32c_kern)
# Check preferences -- beats out reference and anycrc, but not ISA-L
if checksum.crc32c_isal is None:
self.assertIs(checksum._select_crc32c_impl(), checksum.crc32c_kern)
@unittest.skipIf(checksum.crc32c_kern is None, 'No kernel CRC32C')
def test_kern_socket_close_happy_path(self):
mock_crc32c_socket = mock.MagicMock()
mock_socket = mock.MagicMock()
mock_socket.recv.return_value = b'1234'
mock_crc32c_socket.accept.return_value = (mock_socket, None)
with mock.patch('swift.common.utils.checksum.socket.socket',
return_value=mock_crc32c_socket):
checksum.crc32c_kern(b'x')
self.assertEqual([mock.call()],
mock_socket.close.call_args_list)
self.assertEqual([mock.call()],
mock_crc32c_socket.close.call_args_list)
@unittest.skipIf(checksum.crc32c_kern is None, 'No kernel CRC32C')
def test_kern_socket_close_after_bind_error(self):
mock_crc32c_socket = mock.MagicMock()
mock_crc32c_socket.bind.side_effect = OSError('boom')
with mock.patch('swift.common.utils.checksum.socket.socket',
return_value=mock_crc32c_socket):
with self.assertRaises(OSError) as cm:
checksum.crc32c_kern(b'x')
self.assertEqual('boom', str(cm.exception))
self.assertEqual([mock.call()],
mock_crc32c_socket.close.call_args_list)
@unittest.skipIf(checksum.crc32c_kern is None, 'No kernel CRC32C')
def test_kern_socket_close_after_setsockopt_error(self):
mock_crc32c_socket = mock.MagicMock()
mock_crc32c_socket.setsockopt.side_effect = OSError('boom')
with mock.patch('swift.common.utils.checksum.socket.socket',
return_value=mock_crc32c_socket):
with self.assertRaises(OSError) as cm:
checksum.crc32c_kern(b'x')
self.assertEqual('boom', str(cm.exception))
self.assertEqual([mock.call()],
mock_crc32c_socket.close.call_args_list)
@unittest.skipIf(checksum.crc32c_kern is None, 'No kernel CRC32C')
def test_kern_socket_close_after_accept_error(self):
mock_crc32c_socket = mock.MagicMock()
mock_crc32c_socket.accept.side_effect = OSError('boom')
with mock.patch('swift.common.utils.checksum.socket.socket',
return_value=mock_crc32c_socket):
with self.assertRaises(OSError) as cm:
checksum.crc32c_kern(b'x')
self.assertEqual('boom', str(cm.exception))
self.assertEqual([mock.call()],
mock_crc32c_socket.close.call_args_list)
@unittest.skipIf(checksum.crc32c_kern is None, 'No kernel CRC32C')
def test_kern_socket_after_sendall_error(self):
mock_crc32c_socket = mock.MagicMock()
mock_socket = mock.MagicMock()
mock_socket.sendall.side_effect = OSError('boom')
mock_crc32c_socket.accept.return_value = (mock_socket, None)
with mock.patch('swift.common.utils.checksum.socket.socket',
return_value=mock_crc32c_socket):
with self.assertRaises(OSError) as cm:
checksum.crc32c_kern(b'x')
self.assertEqual('boom', str(cm.exception))
self.assertEqual([mock.call()],
mock_socket.close.call_args_list)
self.assertEqual([mock.call()],
mock_crc32c_socket.close.call_args_list)
@unittest.skipIf(checksum.crc32c_kern is None, 'No kernel CRC32C')
def test_kern_socket_after_recv_error(self):
mock_crc32c_socket = mock.MagicMock()
mock_socket = mock.MagicMock()
mock_socket.recv.side_effect = OSError('boom')
mock_crc32c_socket.accept.return_value = (mock_socket, None)
with mock.patch('swift.common.utils.checksum.socket.socket',
return_value=mock_crc32c_socket):
with self.assertRaises(OSError) as cm:
checksum.crc32c_kern(b'x')
self.assertEqual('boom', str(cm.exception))
self.assertEqual([mock.call()],
mock_socket.close.call_args_list)
self.assertEqual([mock.call()],
mock_crc32c_socket.close.call_args_list)
@unittest.skipIf(checksum.crc32c_isal is None, 'No ISA-L CRC32C')
def test_isal(self):
self.check_crc_func(checksum.crc32c_isal)
# Check preferences -- ISA-L always wins
self.assertIs(checksum._select_crc32c_impl(), checksum.crc32c_isal)
class TestCRC64NVME(unittest.TestCase):
def check_crc_func(self, impl):
self.assertEqual(impl(b"123456789"), 0xae8b14860a799888)
# Check that we can save/continue
partial = impl(b"12345")
self.assertEqual(impl(b"6789", partial), 0xae8b14860a799888)
@unittest.skipIf(checksum.crc64nvme_anycrc is None, 'No anycrc CRC64NVME')
def test_anycrc(self):
self.check_crc_func(checksum.crc64nvme_anycrc)
if checksum.crc64nvme_isal is None:
self.assertIs(checksum._select_crc64nvme_impl(),
checksum.crc64nvme_anycrc)
@unittest.skipIf(checksum.crc64nvme_isal is None, 'No ISA-L CRC64NVME')
def test_isal(self):
self.check_crc_func(checksum.crc64nvme_isal)
# Check preferences -- ISA-L always wins
self.assertIs(checksum._select_crc64nvme_impl(),
checksum.crc64nvme_isal)
class TestCRCHasher(unittest.TestCase):
def setUp(self):
self.logger = debug_logger()
def test_base_crc_hasher(self):
func = mock.MagicMock(return_value=0xbad1)
hasher = checksum.CRCHasher('fake', func)
self.assertEqual('fake', hasher.name)
self.assertEqual(32, hasher.width)
self.assertEqual(0, hasher.crc)
self.assertEqual(b'\x00\x00\x00\x00', hasher.digest())
self.assertEqual('00000000', hasher.hexdigest())
hasher.update(b'123456789')
self.assertEqual(0xbad1, hasher.crc)
self.assertEqual(b'\x00\x00\xba\xd1', hasher.digest())
self.assertEqual('0000bad1', hasher.hexdigest())
def test_crc32_hasher(self):
# See CRC-32/ISO-HDLC at
# https://reveng.sourceforge.io/crc-catalogue/17plus.htm
hasher = checksum.crc32()
self.assertEqual('crc32', hasher.name)
self.assertEqual(4, hasher.digest_size)
self.assertEqual(zlib.crc32, hasher.crc_func)
self.assertEqual(32, hasher.width)
self.assertEqual(0, hasher.crc)
self.assertEqual(b'\x00\x00\x00\x00', hasher.digest())
self.assertEqual('00000000', hasher.hexdigest())
hasher.update(b'123456789')
self.assertEqual(0xcbf43926, hasher.crc)
self.assertEqual(b'\xcb\xf4\x39\x26', hasher.digest())
self.assertEqual('cbf43926', hasher.hexdigest())
def test_crc32_hasher_contructed_with_data(self):
hasher = checksum.crc32(b'123456789')
self.assertEqual(zlib.crc32, hasher.crc_func)
self.assertEqual(0xcbf43926, hasher.crc)
self.assertEqual(b'\xcb\xf4\x39\x26', hasher.digest())
self.assertEqual('cbf43926', hasher.hexdigest())
def test_crc32_hasher_initial_value(self):
hasher = checksum.crc32(initial_value=0xcbf43926)
self.assertEqual(zlib.crc32, hasher.crc_func)
self.assertEqual(0xcbf43926, hasher.crc)
self.assertEqual(b'\xcb\xf4\x39\x26', hasher.digest())
self.assertEqual('cbf43926', hasher.hexdigest())
def test_crc32_hasher_copy(self):
hasher = checksum.crc32(b'123456789')
self.assertEqual(4, hasher.digest_size)
self.assertEqual('cbf43926', hasher.hexdigest())
hasher_copy = hasher.copy()
self.assertEqual('crc32', hasher.name)
self.assertEqual(zlib.crc32, hasher_copy.crc_func)
self.assertEqual('cbf43926', hasher_copy.hexdigest())
hasher_copy.update(b'foo')
self.assertEqual('cbf43926', hasher.hexdigest())
self.assertEqual('04e7e407', hasher_copy.hexdigest())
hasher.update(b'bar')
self.assertEqual('fe6b0d8c', hasher.hexdigest())
self.assertEqual('04e7e407', hasher_copy.hexdigest())
@requires_crc32c
def test_crc32c_hasher(self):
# See CRC-32/ISCSI at
# https://reveng.sourceforge.io/crc-catalogue/17plus.htm
hasher = checksum.crc32c()
self.assertEqual('crc32c', hasher.name)
self.assertEqual(32, hasher.width)
self.assertEqual(0, hasher.crc)
self.assertEqual(b'\x00\x00\x00\x00', hasher.digest())
self.assertEqual('00000000', hasher.hexdigest())
hasher.update(b'123456789')
self.assertEqual(0xe3069283, hasher.crc)
self.assertEqual(b'\xe3\x06\x92\x83', hasher.digest())
self.assertEqual('e3069283', hasher.hexdigest())
@requires_crc32c
def test_crc32c_hasher_constructed_with_data(self):
hasher = checksum.crc32c(b'123456789')
self.assertEqual(0xe3069283, hasher.crc)
self.assertEqual(b'\xe3\x06\x92\x83', hasher.digest())
self.assertEqual('e3069283', hasher.hexdigest())
@requires_crc32c
def test_crc32c_hasher_initial_value(self):
hasher = checksum.crc32c(initial_value=0xe3069283)
self.assertEqual(0xe3069283, hasher.crc)
self.assertEqual(b'\xe3\x06\x92\x83', hasher.digest())
self.assertEqual('e3069283', hasher.hexdigest())
@requires_crc32c
def test_crc32c_hasher_copy(self):
hasher = checksum.crc32c(b'123456789')
self.assertEqual('e3069283', hasher.hexdigest())
hasher_copy = hasher.copy()
self.assertEqual('crc32c', hasher_copy.name)
self.assertIs(hasher.crc_func, hasher_copy.crc_func)
self.assertEqual('e3069283', hasher_copy.hexdigest())
hasher_copy.update(b'foo')
self.assertEqual('e3069283', hasher.hexdigest())
self.assertEqual('6b2fc5b0', hasher_copy.hexdigest())
hasher.update(b'bar')
self.assertEqual('ae5c789c', hasher.hexdigest())
self.assertEqual('6b2fc5b0', hasher_copy.hexdigest())
def test_crc32c_hasher_selects_kern_impl(self):
scuc = 'swift.common.utils.checksum'
with mock.patch(scuc + '.crc32c_isal', None), \
mock.patch(scuc + '.crc32c_kern') as mock_kern, \
mock.patch(scuc + '.crc32c_anycrc', None):
mock_kern.__name__ = 'crc32c_kern'
self.assertIs(mock_kern, checksum.crc32c().crc_func)
checksum.log_selected_implementation(self.logger)
self.assertIn('Using crc32c_kern implementation for CRC32C.',
self.logger.get_lines_for_level('info'))
def test_crc32c_hasher_selects_anycrc_impl(self):
scuc = 'swift.common.utils.checksum'
with mock.patch(scuc + '.crc32c_isal', None), \
mock.patch(scuc + '.crc32c_kern', None), \
mock.patch(scuc + '.crc32c_anycrc') as mock_anycrc:
mock_anycrc.__name__ = 'crc32c_anycrc'
self.assertIs(mock_anycrc, checksum.crc32c().crc_func)
checksum.log_selected_implementation(self.logger)
self.assertIn('Using crc32c_anycrc implementation for CRC32C.',
self.logger.get_lines_for_level('info'))
def test_crc32c_hasher_selects_isal_impl(self):
scuc = 'swift.common.utils.checksum'
with mock.patch(scuc + '.crc32c_isal') as mock_isal, \
mock.patch(scuc + '.crc32c_kern'), \
mock.patch(scuc + '.crc32c_anycrc'):
mock_isal.__name__ = 'crc32c_isal'
self.assertIs(mock_isal, checksum.crc32c().crc_func)
checksum.log_selected_implementation(self.logger)
self.assertIn('Using crc32c_isal implementation for CRC32C.',
self.logger.get_lines_for_level('info'))
@requires_crc64nvme
def test_crc64nvme_hasher(self):
# See CRC-64/NVME at
# https://reveng.sourceforge.io/crc-catalogue/17plus.htm
hasher = checksum.crc64nvme()
self.assertEqual('crc64nvme', hasher.name)
self.assertEqual(8, hasher.digest_size)
self.assertEqual(64, hasher.width)
self.assertEqual(0, hasher.crc)
self.assertEqual(b'\x00\x00\x00\x00\x00\x00\x00\x00', hasher.digest())
self.assertEqual('0000000000000000', hasher.hexdigest())
hasher.update(b'123456789')
self.assertEqual(0xae8b14860a799888, hasher.crc)
self.assertEqual(b'\xae\x8b\x14\x86\x0a\x79\x98\x88', hasher.digest())
self.assertEqual('ae8b14860a799888', hasher.hexdigest())
@requires_crc64nvme
def test_crc64nvme_hasher_constructed_with_data(self):
hasher = checksum.crc64nvme(b'123456789')
self.assertEqual(b'\xae\x8b\x14\x86\x0a\x79\x98\x88', hasher.digest())
self.assertEqual('ae8b14860a799888', hasher.hexdigest())
@requires_crc64nvme
def test_crc64nvme_hasher_initial_value(self):
hasher = checksum.crc64nvme(initial_value=0xae8b14860a799888)
self.assertEqual(b'\xae\x8b\x14\x86\x0a\x79\x98\x88', hasher.digest())
self.assertEqual('ae8b14860a799888', hasher.hexdigest())
@requires_crc64nvme
def test_crc64nvme_hasher_copy(self):
hasher = checksum.crc64nvme(b'123456789')
self.assertEqual('ae8b14860a799888', hasher.hexdigest())
hasher_copy = hasher.copy()
self.assertEqual('crc64nvme', hasher_copy.name)
self.assertIs(hasher.crc_func, hasher_copy.crc_func)
self.assertEqual('ae8b14860a799888', hasher_copy.hexdigest())
hasher_copy.update(b'foo')
self.assertEqual('ae8b14860a799888', hasher.hexdigest())
self.assertEqual('673ece0d56523f46', hasher_copy.hexdigest())
hasher.update(b'bar')
self.assertEqual('0991d5edf1b0062e', hasher.hexdigest())
self.assertEqual('673ece0d56523f46', hasher_copy.hexdigest())
def test_crc64nvme_hasher_selects_anycrc_impl(self):
scuc = 'swift.common.utils.checksum'
with mock.patch(scuc + '.crc64nvme_isal', None), \
mock.patch(scuc + '.crc64nvme_anycrc') as mock_anycrc:
mock_anycrc.__name__ = 'crc64nvme_anycrc'
self.assertIs(mock_anycrc,
checksum.crc64nvme().crc_func)
checksum.log_selected_implementation(self.logger)
self.assertIn(
'Using crc64nvme_anycrc implementation for CRC64NVME.',
self.logger.get_lines_for_level('info'))
def test_crc64nvme_hasher_selects_isal_impl(self):
scuc = 'swift.common.utils.checksum'
with mock.patch(scuc + '.crc64nvme_isal') as mock_isal, \
mock.patch(scuc + '.crc64nvme_anycrc'):
mock_isal.__name__ = 'crc64nvme_isal'
self.assertIs(mock_isal, checksum.crc64nvme().crc_func)
checksum.log_selected_implementation(self.logger)
self.assertIn(
'Using crc64nvme_isal implementation for CRC64NVME.',
self.logger.get_lines_for_level('info'))