mirror_zfs/module/icp/algs/modes
Richard Yao 303678350a
Convert some sprintf() calls to kmem_scnprintf()
These `sprintf()` calls are used repeatedly to write to a buffer. There
is no protection against overflow other than reviewers explicitly
checking to see if the buffers are big enough. However, such issues are
easily missed during review and when they are missed, we would rather
stop printing rather than have a buffer overflow, so we convert these
functions to use `kmem_scnprintf()`. The Linux kernel provides an entire
page for module parameters, so we are safe to write up to PAGE_SIZE.

Removing `sprintf()` from these functions removes the last instances of
`sprintf()` usage in our platform-independent kernel code. This improves
XNU kernel compatibility because the XNU kernel does not support
(removed support for?) `sprintf()`.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Richard Yao <richard.yao@alumni.stonybrook.edu>
Closes #14209
2022-11-28 13:49:58 -08:00
..
cbc.c Replace dead opensolaris.org license link 2022-07-11 14:16:13 -07:00
ccm.c Cleanup: Address Clang's static analyzer's unused code complaints 2022-10-14 13:37:54 -07:00
ctr.c Cleanup: Address Clang's static analyzer's unused code complaints 2022-10-14 13:37:54 -07:00
ecb.c Replace dead opensolaris.org license link 2022-07-11 14:16:13 -07:00
gcm_generic.c Replace dead opensolaris.org license link 2022-07-11 14:16:13 -07:00
gcm_pclmulqdq.c Replace dead opensolaris.org license link 2022-07-11 14:16:13 -07:00
gcm.c Convert some sprintf() calls to kmem_scnprintf() 2022-11-28 13:49:58 -08:00
modes.c crypto_get_ptrs() should always write to *out_data_2 2022-10-19 17:10:56 -07:00