Answers:
你需要在看<limits.h>
(或它包含的文件,例如一个,sys/syslimits.h
在OS X)对#define
的UID_MAX
。
最新的操作系统(Solaris 2.x,OS X,BSD,Linux,HP-UX 11i,AIX 6)最多可以处理20亿(2^31-2
),因此我认为这是可以解决的,而不是那些不那么复杂的系统。没错
glibc提供了所有这些系统类型的定义。
您可以检查/usr/include/bits/typesizes.h
:
% grep UID_T /usr/include/bits/typesizes.h
#define __UID_T_TYPE __U32_TYPE
接下来,您研究/usr/include/bits/types.h
:
% grep '#define __U32_TYPE' /usr/include/bits/types.h
#define __U32_TYPE unsigned int
这使您可以找出C类型。由于您需要以字节为单位的大小,因此最佳选择是根据以下规范来解析typedef名称types.h
:
We define __S<SIZE>_TYPE and __U<SIZE>_TYPE for the signed and unsigned
variants of each of the following integer types on this machine.
16 -- "natural" 16-bit type (always short)
32 -- "natural" 32-bit type (always int)
64 -- "natural" 64-bit type (long or long long)
LONG32 -- 32-bit type, traditionally long
QUAD -- 64-bit type, always long long
WORD -- natural type of __WORDSIZE bits (int or long)
LONGWORD -- type of __WORDSIZE bits, traditionally long
因此,这里是一个单线:
% grep '#define __UID_T_TYPE' /usr/include/bits/typesizes.h | cut -f 3 | sed -r 's/__([US])([^_]*)_.*/\1 \2/'
U 32
这里的U
意思是unsigned
(也可以S
用于signed
)并且32
是大小(在上面的列表中查找;我想,大多数时候,您可以假定这已经是字节大小,但是如果您希望脚本可以完全移植)case
开启此值可能会更好)。
/usr/include/$(gcc -print-multiarch)/bits/typesizes.h
或:/usr/include/$(dpkg-architecture -qDEB_HOST_MULTIARCH)/bits/typesizes.h
UID_MAX
。例如,shadow-utils
使用一些工具(uid_t)-1
来找出UID的最大值。