Displaying 2 results from an estimated 2 matches for "1234567890abcdef1234567890abcdef1".
2024 Mar 12
1
rsync segfaults when openssl fips is enabled
...; While doing so, if any file in src or dest location has a xattr value which is more than 32 bytes long, rsync segfaults.
>
> root at ph3dev [ ~ ]# getfattr -d -m '' -- /opt/x
> getfattr: Removing leading '/' from absolute path names
> # file: opt/x
> user.bla1="1234567890abcdef1234567890abcdef1" --------> 33 bytes long
>
> After examining the coredump file, this happens at;
>
> rsync/xattrs.c
> Line 277 in 2f9b963
>
> sum_init(xattr_sum_nni, checksum_seed);
>
> Here md5 is used by default and md5 usage is prohibited in fips mode.
>
> Is there any w...
2024 Feb 21
1
rsync segfaults when openssl fips is enabled
...<src> <dest>
While doing so, if any file in src or dest location has a xattr value
which is more than 32 bytes long, rsync segfaults.
root at ph3dev [ ~ ]# getfattr -d -m '' -- /opt/x
getfattr: Removing leading '/' from absolute path names
# file: opt/x
user.bla1="1234567890abcdef1234567890abcdef1" --------> 33 bytes long
After examining the coredump file, this happens at;
rsync/xattrs.c
Line 277 in 2f9b963
sum_init(xattr_sum_nni, checksum_seed);
Here md5 is used by default and md5 usage is prohibited in fips mode.
Is there any way to workaround this problem? Also, why not use x...