getdtablesize.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* getdtablesize() function for platforms that don't have it.
  2. Copyright (C) 2008-2016 Free Software Foundation, Inc.
  3. Written by Bruno Haible <bruno@clisp.org>, 2008.
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  14. #include <config.h>
  15. /* Specification. */
  16. #include <unistd.h>
  17. #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
  18. # include <stdio.h>
  19. # include "msvc-inval.h"
  20. # if HAVE_MSVC_INVALID_PARAMETER_HANDLER
  21. static int
  22. _setmaxstdio_nothrow (int newmax)
  23. {
  24. int result;
  25. TRY_MSVC_INVAL
  26. {
  27. result = _setmaxstdio (newmax);
  28. }
  29. CATCH_MSVC_INVAL
  30. {
  31. result = -1;
  32. }
  33. DONE_MSVC_INVAL;
  34. return result;
  35. }
  36. # define _setmaxstdio _setmaxstdio_nothrow
  37. # endif
  38. /* Cache for the previous getdtablesize () result. Safe to cache because
  39. Windows also lacks setrlimit. */
  40. static int dtablesize;
  41. int
  42. getdtablesize (void)
  43. {
  44. if (dtablesize == 0)
  45. {
  46. /* We are looking for the number N such that the valid file descriptors
  47. are 0..N-1. It can be obtained through a loop as follows:
  48. {
  49. int fd;
  50. for (fd = 3; fd < 65536; fd++)
  51. if (dup2 (0, fd) == -1)
  52. break;
  53. return fd;
  54. }
  55. On Windows XP, the result is 2048.
  56. The drawback of this loop is that it allocates memory for a libc
  57. internal array that is never freed.
  58. The number N can also be obtained as the upper bound for
  59. _getmaxstdio (). _getmaxstdio () returns the maximum number of open
  60. FILE objects. The sanity check in _setmaxstdio reveals the maximum
  61. number of file descriptors. This too allocates memory, but it is
  62. freed when we call _setmaxstdio with the original value. */
  63. int orig_max_stdio = _getmaxstdio ();
  64. unsigned int bound;
  65. for (bound = 0x10000; _setmaxstdio (bound) < 0; bound = bound / 2)
  66. ;
  67. _setmaxstdio (orig_max_stdio);
  68. dtablesize = bound;
  69. }
  70. return dtablesize;
  71. }
  72. #else
  73. # include <limits.h>
  74. # include <sys/resource.h>
  75. # ifndef RLIM_SAVED_CUR
  76. # define RLIM_SAVED_CUR RLIM_INFINITY
  77. # endif
  78. # ifndef RLIM_SAVED_MAX
  79. # define RLIM_SAVED_MAX RLIM_INFINITY
  80. # endif
  81. # ifdef __CYGWIN__
  82. /* Cygwin 1.7.25 auto-increases the RLIMIT_NOFILE soft limit until it
  83. hits the compile-time constant hard limit of 3200. We might as
  84. well just report the hard limit. */
  85. # define rlim_cur rlim_max
  86. # endif
  87. int
  88. getdtablesize (void)
  89. {
  90. struct rlimit lim;
  91. if (getrlimit (RLIMIT_NOFILE, &lim) == 0
  92. && 0 <= lim.rlim_cur && lim.rlim_cur <= INT_MAX
  93. && lim.rlim_cur != RLIM_INFINITY
  94. && lim.rlim_cur != RLIM_SAVED_CUR
  95. && lim.rlim_cur != RLIM_SAVED_MAX)
  96. return lim.rlim_cur;
  97. return INT_MAX;
  98. }
  99. #endif