NetBSD/sys/opencrypto
riastradh d1579b2d70 Rename min/max -> uimin/uimax for better honesty.
These functions are defined on unsigned int.  The generic name
min/max should not silently truncate to 32 bits on 64-bit systems.
This is purely a name change -- no functional change intended.

HOWEVER!  Some subsystems have

	#define min(a, b)	((a) < (b) ? (a) : (b))
	#define max(a, b)	((a) > (b) ? (a) : (b))

even though our standard name for that is MIN/MAX.  Although these
may invite multiple evaluation bugs, these do _not_ cause integer
truncation.

To avoid `fixing' these cases, I first changed the name in libkern,
and then compile-tested every file where min/max occurred in order to
confirm that it failed -- and thus confirm that nothing shadowed
min/max -- before changing it.

I have left a handful of bootloaders that are too annoying to
compile-test, and some dead code:

cobalt ews4800mips hp300 hppa ia64 luna68k vax
acorn32/if_ie.c (not included in any kernels)
macppc/if_gm.c (superseded by gem(4))

It should be easy to fix the fallout once identified -- this way of
doing things fails safe, and the goal here, after all, is to _avoid_
silent integer truncations, not introduce them.

Maybe one day we can reintroduce min/max as type-generic things that
never silently truncate.  But we should avoid doing that for a while,
so that existing code has a chance to be detected by the compiler for
conversion to uimin/uimax without changing the semantics until we can
properly audit it all.  (Who knows, maybe in some cases integer
truncation is actually intended!)
2018-09-03 16:29:22 +00:00
..
Makefile
aesxcbcmac.c
aesxcbcmac.h
criov.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
crypto.c Remove duplicate ; 2018-06-06 01:49:07 +00:00
cryptodev.c Typos. 2018-02-08 09:05:16 +00:00
cryptodev.h update locking notes of opencrypto(9) 2017-07-26 06:44:50 +00:00
cryptodev_internal.h rename crypto_mtx to cryptodev_mtx 2017-06-02 09:46:57 +00:00
cryptosoft.c fix cryptosoft.c:r1.51 mistake. swcrypto_attach() must not be called from module_init_class(). 2017-06-23 11:41:58 +00:00
cryptosoft.h
cryptosoft_xform.c
deflate.c opencrypto: cleanup debug messages. 2017-05-17 06:33:04 +00:00
deflate.h
files.opencrypto make the default values of q_maxlen build parameters. 2017-05-24 10:05:09 +00:00
gmac.c
gmac.h
ocryptodev.c Avoid another userland-controlled integer overflow. 2017-07-28 17:14:04 +00:00
ocryptodev.h
xform.c Apply C99-style struct initialization to enc_xform, auth_hash and comp_algo 2017-07-06 08:27:07 +00:00
xform.h KNF 2017-07-06 08:22:45 +00:00