memlimit.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /*-
  2. * Copyright 2009 Colin Percival
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  18. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. * SUCH DAMAGE.
  25. *
  26. * This file was originally written by Colin Percival as part of the Tarsnap
  27. * online backup system.
  28. */
  29. #include "scrypt_platform.h"
  30. #include <sys/types.h>
  31. #include <sys/resource.h>
  32. #ifdef HAVE_SYS_PARAM_H
  33. #include <sys/param.h>
  34. #endif
  35. #ifdef HAVE_SYSCTL_HW_USERMEM
  36. #include <sys/sysctl.h>
  37. #endif
  38. #ifdef HAVE_SYS_SYSINFO_H
  39. #include <sys/sysinfo.h>
  40. #endif
  41. #include <errno.h>
  42. #include <stddef.h>
  43. #include <stdint.h>
  44. #include <unistd.h>
  45. #ifdef DEBUG
  46. #include <stdio.h>
  47. #endif
  48. #include "memlimit.h"
  49. #ifdef HAVE_SYSCTL_HW_USERMEM
  50. static int
  51. memlimit_sysctl_hw_usermem(size_t * memlimit)
  52. {
  53. int mib[2];
  54. uint8_t usermembuf[8];
  55. size_t usermemlen = 8;
  56. uint64_t usermem;
  57. /* Ask the kernel how much RAM we have. */
  58. mib[0] = CTL_HW;
  59. mib[1] = HW_USERMEM;
  60. if (sysctl(mib, 2, usermembuf, &usermemlen, NULL, 0))
  61. return (1);
  62. /*
  63. * Parse as either a uint64_t or a uint32_t based on the length of
  64. * output the kernel reports having copied out. It appears that all
  65. * systems providing a sysctl interface for reading integers copy
  66. * them out as system-endian values, so we don't need to worry about
  67. * parsing them.
  68. */
  69. if (usermemlen == sizeof(uint64_t))
  70. usermem = *(uint64_t *)usermembuf;
  71. else if (usermemlen == sizeof(uint32_t))
  72. usermem = *(uint32_t *)usermembuf;
  73. else
  74. return (1);
  75. /* Return the sysctl value, but clamp to SIZE_MAX if necessary. */
  76. #if UINT64_MAX > SIZE_MAX
  77. if (usermem > SIZE_MAX)
  78. *memlimit = SIZE_MAX;
  79. else
  80. *memlimit = usermem;
  81. #else
  82. *memlimit = usermem;
  83. #endif
  84. /* Success! */
  85. return (0);
  86. }
  87. #endif
  88. /* If we don't HAVE_STRUCT_SYSINFO, we can't use sysinfo. */
  89. #ifndef HAVE_STRUCT_SYSINFO
  90. #undef HAVE_SYSINFO
  91. #endif
  92. /* If we don't HAVE_STRUCT_SYSINFO_TOTALRAM, we can't use sysinfo. */
  93. #ifndef HAVE_STRUCT_SYSINFO_TOTALRAM
  94. #undef HAVE_SYSINFO
  95. #endif
  96. #ifdef HAVE_SYSINFO
  97. static int
  98. memlimit_sysinfo(size_t * memlimit)
  99. {
  100. struct sysinfo info;
  101. uint64_t totalmem;
  102. /* Get information from the kernel. */
  103. if (sysinfo(&info))
  104. return (1);
  105. totalmem = info.totalram;
  106. /* If we're on a modern kernel, adjust based on mem_unit. */
  107. #ifdef HAVE_STRUCT_SYSINFO_MEM_UNIT
  108. totalmem = totalmem * info.mem_unit;
  109. #endif
  110. /* Return the value, but clamp to SIZE_MAX if necessary. */
  111. #if UINT64_MAX > SIZE_MAX
  112. if (totalmem > SIZE_MAX)
  113. *memlimit = SIZE_MAX;
  114. else
  115. *memlimit = totalmem;
  116. #else
  117. *memlimit = totalmem;
  118. #endif
  119. /* Success! */
  120. return (0);
  121. }
  122. #endif /* HAVE_SYSINFO */
  123. static int
  124. memlimit_rlimit(size_t * memlimit)
  125. {
  126. struct rlimit rl;
  127. uint64_t memrlimit;
  128. /* Find the least of... */
  129. memrlimit = (uint64_t)(-1);
  130. /* ... RLIMIT_AS... */
  131. #ifdef RLIMIT_AS
  132. if (getrlimit(RLIMIT_AS, &rl))
  133. return (1);
  134. if ((rl.rlim_cur != RLIM_INFINITY) &&
  135. ((uint64_t)rl.rlim_cur < memrlimit))
  136. memrlimit = rl.rlim_cur;
  137. #endif
  138. /* ... RLIMIT_DATA... */
  139. if (getrlimit(RLIMIT_DATA, &rl))
  140. return (1);
  141. if ((rl.rlim_cur != RLIM_INFINITY) &&
  142. ((uint64_t)rl.rlim_cur < memrlimit))
  143. memrlimit = rl.rlim_cur;
  144. /* ... and RLIMIT_RSS. */
  145. #ifdef RLIMIT_RSS
  146. if (getrlimit(RLIMIT_RSS, &rl))
  147. return (1);
  148. if ((rl.rlim_cur != RLIM_INFINITY) &&
  149. ((uint64_t)rl.rlim_cur < memrlimit))
  150. memrlimit = rl.rlim_cur;
  151. #endif
  152. /* Return the value, but clamp to SIZE_MAX if necessary. */
  153. #if UINT64_MAX > SIZE_MAX
  154. if (memrlimit > SIZE_MAX)
  155. *memlimit = SIZE_MAX;
  156. else
  157. *memlimit = memrlimit;
  158. #else
  159. *memlimit = memrlimit;
  160. #endif
  161. /* Success! */
  162. return (0);
  163. }
  164. #ifdef _SC_PHYS_PAGES
  165. /* Some systems define _SC_PAGESIZE instead of _SC_PAGE_SIZE. */
  166. #ifndef _SC_PAGE_SIZE
  167. #define _SC_PAGE_SIZE _SC_PAGESIZE
  168. #endif
  169. int
  170. memlimit_sysconf(size_t * memlimit)
  171. {
  172. long pagesize;
  173. long physpages;
  174. uint64_t totalmem;
  175. /* Set errno to 0 in order to distinguish "no limit" from "error". */
  176. errno = 0;
  177. /* Read the two limits. */
  178. if (((pagesize = sysconf(_SC_PAGE_SIZE)) == -1) ||
  179. ((physpages = sysconf(_SC_PHYS_PAGES)) == -1)) {
  180. /* Did an error occur? */
  181. if (errno != 0)
  182. return (1);
  183. /* If not, there is no limit. */
  184. totalmem = (uint64_t)(-1);
  185. } else {
  186. /* Compute the limit. */
  187. totalmem = (uint64_t)(pagesize) * (uint64_t)(physpages);
  188. }
  189. /* Return the value, but clamp to SIZE_MAX if necessary. */
  190. #if UINT64_MAX > SIZE_MAX
  191. if (totalmem > SIZE_MAX)
  192. *memlimit = SIZE_MAX;
  193. else
  194. *memlimit = totalmem;
  195. #else
  196. *memlimit = totalmem;
  197. #endif
  198. /* Success! */
  199. return (0);
  200. }
  201. #endif
  202. int
  203. memtouse(size_t maxmem, double maxmemfrac, size_t * memlimit)
  204. {
  205. size_t sysctl_memlimit, sysinfo_memlimit, rlimit_memlimit;
  206. size_t sysconf_memlimit;
  207. size_t memlimit_min;
  208. size_t memavail;
  209. /* Get memory limits. */
  210. #ifdef HAVE_SYSCTL_HW_USERMEM
  211. if (memlimit_sysctl_hw_usermem(&sysctl_memlimit))
  212. return (1);
  213. #else
  214. sysctl_memlimit = (size_t)(-1);
  215. #endif
  216. #ifdef HAVE_SYSINFO
  217. if (memlimit_sysinfo(&sysinfo_memlimit))
  218. return (1);
  219. #else
  220. sysinfo_memlimit = (size_t)(-1);
  221. #endif
  222. if (memlimit_rlimit(&rlimit_memlimit))
  223. return (1);
  224. #ifdef _SC_PHYS_PAGES
  225. if (memlimit_sysconf(&sysconf_memlimit))
  226. return (1);
  227. #else
  228. sysconf_memlimit = (size_t)(-1);
  229. #endif
  230. #ifdef DEBUG
  231. fprintf(stderr, "Memory limits are %zu %zu %zu %zu\n",
  232. sysctl_memlimit, sysinfo_memlimit, rlimit_memlimit,
  233. sysconf_memlimit);
  234. #endif
  235. /* Find the smallest of them. */
  236. memlimit_min = (size_t)(-1);
  237. if (memlimit_min > sysctl_memlimit)
  238. memlimit_min = sysctl_memlimit;
  239. if (memlimit_min > sysinfo_memlimit)
  240. memlimit_min = sysinfo_memlimit;
  241. if (memlimit_min > rlimit_memlimit)
  242. memlimit_min = rlimit_memlimit;
  243. if (memlimit_min > sysconf_memlimit)
  244. memlimit_min = sysconf_memlimit;
  245. /* Only use the specified fraction of the available memory. */
  246. if ((maxmemfrac > 0.5) || (maxmemfrac == 0.0))
  247. maxmemfrac = 0.5;
  248. memavail = maxmemfrac * memlimit_min;
  249. /* Don't use more than the specified maximum. */
  250. if ((maxmem > 0) && (memavail > maxmem))
  251. memavail = maxmem;
  252. /* But always allow at least 1 MiB. */
  253. if (memavail < 1048576)
  254. memavail = 1048576;
  255. #ifdef DEBUG
  256. fprintf(stderr, "Allowing up to %zu memory to be used\n", memavail);
  257. #endif
  258. /* Return limit via the provided pointer. */
  259. *memlimit = memavail;
  260. return (0);
  261. }