highuid.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_HIGHUID_H
  2. #define _LINUX_HIGHUID_H
  3. #include <linux/config.h>
  4. #include <linux/types.h>
  5. /*
  6.  * general notes:
  7.  *
  8.  * CONFIG_UID16 is defined if the given architecture needs to
  9.  * support backwards compatibility for old system calls.
  10.  *
  11.  * kernel code should use uid_t and gid_t at all times when dealing with
  12.  * kernel-private data.
  13.  *
  14.  * old_uid_t and old_gid_t should only be different if CONFIG_UID16 is
  15.  * defined, else the platform should provide dummy typedefs for them
  16.  * such that they are equivalent to __kernel_{u,g}id_t.
  17.  *
  18.  * uid16_t and gid16_t are used on all architectures. (when dealing
  19.  * with structures hard coded to 16 bits, such as in filesystems)
  20.  */
  21. /*
  22.  * This is the "overflow" UID and GID. They are used to signify uid/gid
  23.  * overflow to old programs when they request uid/gid information but are
  24.  * using the old 16 bit interfaces.
  25.  * When you run a libc5 program, it will think that all highuid files or
  26.  * processes are owned by this uid/gid.
  27.  * The idea is that it's better to do so than possibly return 0 in lieu of
  28.  * 65536, etc.
  29.  */
  30. extern int overflowuid;
  31. extern int overflowgid;
  32. #define DEFAULT_OVERFLOWUID 65534
  33. #define DEFAULT_OVERFLOWGID 65534
  34. #ifdef CONFIG_UID16
  35. /* prevent uid mod 65536 effect by returning a default value for high UIDs */
  36. #define high2lowuid(uid) ((uid) > 65535 ? (old_uid_t)overflowuid : (old_uid_t)(uid))
  37. #define high2lowgid(gid) ((gid) > 65535 ? (old_gid_t)overflowgid : (old_gid_t)(gid))
  38. /*
  39.  * -1 is different in 16 bits than it is in 32 bits
  40.  * these macros are used by chown(), setreuid(), ...,
  41.  */
  42. #define low2highuid(uid) ((uid) == (old_uid_t)-1 ? (uid_t)-1 : (uid_t)(uid))
  43. #define low2highgid(gid) ((gid) == (old_gid_t)-1 ? (gid_t)-1 : (gid_t)(gid))
  44. /* Avoid extra ifdefs with these macros */
  45. #define SET_UID16(var, uid) var = high2lowuid(uid)
  46. #define SET_GID16(var, gid) var = high2lowgid(gid)
  47. #define NEW_TO_OLD_UID(uid) high2lowuid(uid)
  48. #define NEW_TO_OLD_GID(gid) high2lowgid(gid)
  49. /* specific to fs/stat.c */
  50. #define SET_OLDSTAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
  51. #define SET_OLDSTAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
  52. #define SET_STAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
  53. #define SET_STAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
  54. #else
  55. #define SET_UID16(var, uid) do { ; } while (0)
  56. #define SET_GID16(var, gid) do { ; } while (0)
  57. #define NEW_TO_OLD_UID(uid) (uid)
  58. #define NEW_TO_OLD_GID(gid) (gid)
  59. #define SET_OLDSTAT_UID(stat, uid) (stat).st_uid = (uid)
  60. #define SET_OLDSTAT_GID(stat, gid) (stat).st_gid = (gid)
  61. #define SET_STAT_UID(stat, uid) (stat).st_uid = (uid)
  62. #define SET_STAT_GID(stat, gid) (stat).st_gid = (gid)
  63. #endif /* CONFIG_UID16 */
  64. /*
  65.  * Everything below this line is needed on all architectures, to deal with
  66.  * filesystems that only store 16 bits of the UID/GID, etc.
  67.  */
  68. /*
  69.  * This is the UID and GID that will get written to disk if a filesystem
  70.  * only supports 16-bit UIDs and the kernel has a high UID/GID to write
  71.  */
  72. extern int fs_overflowuid;
  73. extern int fs_overflowgid;
  74. #define DEFAULT_FS_OVERFLOWUID 65534
  75. #define DEFAULT_FS_OVERFLOWGID 65534
  76. /*
  77.  * Since these macros are used in architectures that only need limited
  78.  * 16-bit UID back compatibility, we won't use old_uid_t and old_gid_t
  79.  */
  80. #define fs_high2lowuid(uid) ((uid) > 65535 ? (uid16_t)fs_overflowuid : (uid16_t)(uid))
  81. #define fs_high2lowgid(gid) ((gid) > 65535 ? (gid16_t)fs_overflowgid : (gid16_t)(gid))
  82. #define low_16_bits(x) ((x) & 0xFFFF)
  83. #define high_16_bits(x) (((x) & 0xFFFF0000) >> 16)
  84. #endif /* _LINUX_HIGHUID_H */