NetBSD/sys/netsmb
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
..
files.netsmb
iconv.c Make rump_smbfs(8) uses host iconv(3) to convert filenames 2014-11-15 18:49:04 +00:00
iconv.h
Makefile
mchain.h Adjust smbfs/netsmb for filenames byte length changes that come as 2014-11-15 18:52:44 +00:00
netbios.h Remove leftover IPX-related stuffs 2015-05-25 08:29:01 +00:00
smb_conn.c
smb_conn.h
smb_crypt.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
smb_dev.c Reject negative offset/count for smb read/write. 2017-07-28 14:45:59 +00:00
smb_dev.h
smb_iod.c
smb_rq.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
smb_rq.h
smb_smb.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
smb_subr.c From FreeBSD: 2017-10-03 15:27:10 +00:00
smb_subr.h Plug another overflow: refuse bogus sa_len from user. 2017-07-28 14:37:27 +00:00
smb_tran.h
smb_trantcp.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
smb_trantcp.h
smb_usr.c Reject negative ioc_setupcnt. 2017-07-28 14:40:42 +00:00
smb.h
subr_mchain.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00