highuid.txt 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. Notes on the change from 16-bit UIDs to 32-bit UIDs:
  2. - kernel code MUST take into account __kernel_uid_t and __kernel_uid32_t
  3. when communicating between user and kernel space in an ioctl or data
  4. structure.
  5. - kernel code should use uid_t and gid_t in kernel-private structures and
  6. code.
  7. What's left to be done for 32-bit UIDs on all Linux architectures:
  8. - Disk quotas have an interesting limitation that is not related to the
  9. maximum UID/GID. They are limited by the maximum file size on the
  10. underlying filesystem, because quota records are written at offsets
  11. corresponding to the UID in question.
  12. Further investigation is needed to see if the quota system can cope
  13. properly with huge UIDs. If it can deal with 64-bit file offsets on all
  14. architectures, this should not be a problem.
  15. - Decide whether or not to keep backwards compatibility with the system
  16. accounting file, or if we should break it as the comments suggest
  17. (currently, the old 16-bit UID and GID are still written to disk, and
  18. part of the former pad space is used to store separate 32-bit UID and
  19. GID)
  20. - Need to validate that OS emulation calls the 16-bit UID
  21. compatibility syscalls, if the OS being emulated used 16-bit UIDs, or
  22. uses the 32-bit UID system calls properly otherwise.
  23. This affects at least:
  24. iBCS on Intel
  25. sparc32 emulation on sparc64
  26. (need to support whatever new 32-bit UID system calls are added to
  27. sparc32)
  28. - Validate that all filesystems behave properly.
  29. At present, 32-bit UIDs _should_ work for:
  30. ext2
  31. ufs
  32. isofs
  33. nfs
  34. coda
  35. udf
  36. Ioctl() fixups have been made for:
  37. ncpfs
  38. smbfs
  39. Filesystems with simple fixups to prevent 16-bit UID wraparound:
  40. minix
  41. sysv
  42. qnx4
  43. Other filesystems have not been checked yet.
  44. - The ncpfs and smpfs filesystems cannot presently use 32-bit UIDs in
  45. all ioctl()s. Some new ioctl()s have been added with 32-bit UIDs, but
  46. more are needed. (as well as new user<->kernel data structures)
  47. - The ELF core dump format only supports 16-bit UIDs on arm, i386, m68k,
  48. sh, and sparc32. Fixing this is probably not that important, but would
  49. require adding a new ELF section.
  50. - The ioctl()s used to control the in-kernel NFS server only support
  51. 16-bit UIDs on arm, i386, m68k, sh, and sparc32.
  52. - make sure that the UID mapping feature of AX25 networking works properly
  53. (it should be safe because it's always used a 32-bit integer to
  54. communicate between user and kernel)
  55. Chris Wing
  56. wingc@umich.edu
  57. last updated: January 11, 2000