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


18

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

Answers:


12

你需要在看<limits.h>(或它包含的文件,例如一个,sys/syslimits.h在OS X)对#defineUID_MAX

最新的操作系统(Solaris 2.x,OS X,BSD,Linux,HP-UX 11i,AIX 6)最多可以处理20亿(2^31-2),因此我认为这是可以解决的,而不是那些不那么复杂的系统。没错


1
不幸的是,没有这样的事情UID_MAX。例如,shadow-utils使用一些工具(uid_t)-1来找出UID的最大值。
kirelagin 2014年

5
大多数系统都使用/etc/login.defs,它已将UID_MAX设置为最高可用UID值,在我检查过的任何系统上均为60000。
Ryaner 2014年

6
手册页login.defs指示,在这种情况下,UID_MAX只控制将自动分配用于创建新用户的UID最高useradd
Stephen Touset 2015年

2
大概是2 ^ 32(40亿,而不是2)。在RHEL UID上,通常为“无效值” UID保留4,294,967,295(2 ^ 32-1),在某些操作系统中为nfsnobody用户保留4,294,967,294(2 ^ 32-2)。因此,最大非保留值是4,294,967,293(2 ^ 32-3)
tehnicaorg

4

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开启此值可能会更好)。


1
在我的系统(Ubuntu 12.04)和其他基于Debian的系统上,头文件是:/usr/include/$(gcc -print-multiarch)/bits/typesizes.h或:/usr/include/$(dpkg-architecture -qDEB_HOST_MULTIARCH)/bits/typesizes.h
-pabouk

1
拥有这些glibc文件可能意味着有可用的编译器。因此,可以#include <sys / types.h>来访问uid_t并打印结果(printf(“ uid_t:%d字节(%d位)\ n”,sizeof(uid_t),sizeof(uid_t)* 8 );
tehnicaorg

3

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

我没有方便的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或者超出系统限制就会出错。


3

此链接中,提出问题,响应者使用试验和错误方法确定所讨论的系统使用带符号的long int,保留31位以存储值,最大值为2,147,483,647。

# groupadd -g 42949672950 testgrp
# more /etc/group
testgrp:*:2147483647:
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.