shm.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _LINUX_SHM_H_
  3. #define _LINUX_SHM_H_
  4. #include <linux/ipc.h>
  5. #include <linux/errno.h>
  6. #include <asm-generic/hugetlb_encode.h>
  7. #include <unistd.h>
  8. /*
  9. * SHMMNI, SHMMAX and SHMALL are default upper limits which can be
  10. * modified by sysctl. The SHMMAX and SHMALL values have been chosen to
  11. * be as large possible without facilitating scenarios where userspace
  12. * causes overflows when adjusting the limits via operations of the form
  13. * "retrieve current limit; add X; update limit". It is therefore not
  14. * advised to make SHMMAX and SHMALL any larger. These limits are
  15. * suitable for both 32 and 64-bit systems.
  16. */
  17. #define SHMMIN 1 /* min shared seg size (bytes) */
  18. #define SHMMNI 4096 /* max num of segs system wide */
  19. #define SHMMAX (ULONG_MAX - (1UL << 24)) /* max shared seg size (bytes) */
  20. #define SHMALL (ULONG_MAX - (1UL << 24)) /* max shm system wide (pages) */
  21. #define SHMSEG SHMMNI /* max shared segs per process */
  22. /* Obsolete, used only for backwards compatibility and libc5 compiles */
  23. struct shmid_ds {
  24. struct ipc_perm shm_perm; /* operation perms */
  25. int shm_segsz; /* size of segment (bytes) */
  26. __kernel_old_time_t shm_atime; /* last attach time */
  27. __kernel_old_time_t shm_dtime; /* last detach time */
  28. __kernel_old_time_t shm_ctime; /* last change time */
  29. __kernel_ipc_pid_t shm_cpid; /* pid of creator */
  30. __kernel_ipc_pid_t shm_lpid; /* pid of last operator */
  31. unsigned short shm_nattch; /* no. of current attaches */
  32. unsigned short shm_unused; /* compatibility */
  33. void *shm_unused2; /* ditto - used by DIPC */
  34. void *shm_unused3; /* unused */
  35. };
  36. /* Include the definition of shmid64_ds and shminfo64 */
  37. #include <asm/shmbuf.h>
  38. /*
  39. * shmget() shmflg values.
  40. */
  41. /* The bottom nine bits are the same as open(2) mode flags */
  42. #define SHM_R 0400 /* or S_IRUGO from <linux/stat.h> */
  43. #define SHM_W 0200 /* or S_IWUGO from <linux/stat.h> */
  44. /* Bits 9 & 10 are IPC_CREAT and IPC_EXCL */
  45. #define SHM_HUGETLB 04000 /* segment will use huge TLB pages */
  46. #define SHM_NORESERVE 010000 /* don't check for reservations */
  47. /*
  48. * Huge page size encoding when SHM_HUGETLB is specified, and a huge page
  49. * size other than the default is desired. See hugetlb_encode.h
  50. */
  51. #define SHM_HUGE_SHIFT HUGETLB_FLAG_ENCODE_SHIFT
  52. #define SHM_HUGE_MASK HUGETLB_FLAG_ENCODE_MASK
  53. #define SHM_HUGE_64KB HUGETLB_FLAG_ENCODE_64KB
  54. #define SHM_HUGE_512KB HUGETLB_FLAG_ENCODE_512KB
  55. #define SHM_HUGE_1MB HUGETLB_FLAG_ENCODE_1MB
  56. #define SHM_HUGE_2MB HUGETLB_FLAG_ENCODE_2MB
  57. #define SHM_HUGE_8MB HUGETLB_FLAG_ENCODE_8MB
  58. #define SHM_HUGE_16MB HUGETLB_FLAG_ENCODE_16MB
  59. #define SHM_HUGE_32MB HUGETLB_FLAG_ENCODE_32MB
  60. #define SHM_HUGE_256MB HUGETLB_FLAG_ENCODE_256MB
  61. #define SHM_HUGE_512MB HUGETLB_FLAG_ENCODE_512MB
  62. #define SHM_HUGE_1GB HUGETLB_FLAG_ENCODE_1GB
  63. #define SHM_HUGE_2GB HUGETLB_FLAG_ENCODE_2GB
  64. #define SHM_HUGE_16GB HUGETLB_FLAG_ENCODE_16GB
  65. /*
  66. * shmat() shmflg values
  67. */
  68. #define SHM_RDONLY 010000 /* read-only access */
  69. #define SHM_RND 020000 /* round attach address to SHMLBA boundary */
  70. #define SHM_REMAP 040000 /* take-over region on attach */
  71. #define SHM_EXEC 0100000 /* execution access */
  72. /* super user shmctl commands */
  73. #define SHM_LOCK 11
  74. #define SHM_UNLOCK 12
  75. /* ipcs ctl commands */
  76. #define SHM_STAT 13
  77. #define SHM_INFO 14
  78. #define SHM_STAT_ANY 15
  79. /* Obsolete, used only for backwards compatibility */
  80. struct shminfo {
  81. int shmmax;
  82. int shmmin;
  83. int shmmni;
  84. int shmseg;
  85. int shmall;
  86. };
  87. struct shm_info {
  88. int used_ids;
  89. __kernel_ulong_t shm_tot; /* total allocated shm */
  90. __kernel_ulong_t shm_rss; /* total resident shm */
  91. __kernel_ulong_t shm_swp; /* total swapped shm */
  92. __kernel_ulong_t swap_attempts;
  93. __kernel_ulong_t swap_successes;
  94. };
  95. #endif /* _LINUX_SHM_H_ */