Unix UID 有多大(以位为单位)?

Unix UID 有多大(以位为单位)?

我知道 unix 用户 ID (UID) 通常是 16 位或 32 位无符号整数,但是如何在任何给定系统(在 shell 中)中找出它?

答案1

您需要在<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),因此我会假设这一点,并为那些不支持该功能的较不知名的系统制定一种解决方法。

答案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这个值)。

答案3

此链接提出问题后,应答者使用反复试验的方法来确定所讨论的系统是否使用有符号长整数,剩下 31 位来存储值,最大值为 2,147,483,647。

# groupadd -g 42949672950 testgrp
# more /etc/group
testgrp:*:2147483647:

答案4

这是一个有趣的问题。如果有标准、可移植的方法来确定这一点,我会感到惊讶。

我手边没有 Linux 机器,但是idFreeBSD 8.0 上的命令回到零:

# id 4294967296
uid=0(root) gid=0(wheel) groups=0(wheel),5(operator)

我确信这是未定义的行为,但我敢打赌,大多数版本id要么会回到零65'536(如果是 16 位 UID),4'294'967'296要么在超出系统限制时出错。

相关内容