fcntl2.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /* Checking macros for fcntl functions.
  2. Copyright (C) 2007-2016 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library 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 GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _FCNTL_H
  16. # error "Never include <bits/fcntl2.h> directly; use <fcntl.h> instead."
  17. #endif
  18. /* Check that calls to open and openat with O_CREAT or O_TMPFILE set have an
  19. appropriate third/fourth parameter. */
  20. #ifndef __USE_FILE_OFFSET64
  21. extern int __open_2 (const char *__path, int __oflag) __nonnull ((1));
  22. extern int __REDIRECT (__open_alias, (const char *__path, int __oflag, ...),
  23. open) __nonnull ((1));
  24. #else
  25. extern int __REDIRECT (__open_2, (const char *__path, int __oflag),
  26. __open64_2) __nonnull ((1));
  27. extern int __REDIRECT (__open_alias, (const char *__path, int __oflag, ...),
  28. open64) __nonnull ((1));
  29. #endif
  30. __errordecl (__open_too_many_args,
  31. "open can be called either with 2 or 3 arguments, not more");
  32. __errordecl (__open_missing_mode,
  33. "open with O_CREAT or O_TMPFILE in second argument needs 3 arguments");
  34. __fortify_function int
  35. open (const char *__path, int __oflag, ...)
  36. {
  37. if (__va_arg_pack_len () > 1)
  38. __open_too_many_args ();
  39. if (__builtin_constant_p (__oflag))
  40. {
  41. if (__OPEN_NEEDS_MODE (__oflag) && __va_arg_pack_len () < 1)
  42. {
  43. __open_missing_mode ();
  44. return __open_2 (__path, __oflag);
  45. }
  46. return __open_alias (__path, __oflag, __va_arg_pack ());
  47. }
  48. if (__va_arg_pack_len () < 1)
  49. return __open_2 (__path, __oflag);
  50. return __open_alias (__path, __oflag, __va_arg_pack ());
  51. }
  52. #ifdef __USE_LARGEFILE64
  53. extern int __open64_2 (const char *__path, int __oflag) __nonnull ((1));
  54. extern int __REDIRECT (__open64_alias, (const char *__path, int __oflag,
  55. ...), open64) __nonnull ((1));
  56. __errordecl (__open64_too_many_args,
  57. "open64 can be called either with 2 or 3 arguments, not more");
  58. __errordecl (__open64_missing_mode,
  59. "open64 with O_CREAT or O_TMPFILE in second argument needs 3 arguments");
  60. __fortify_function int
  61. open64 (const char *__path, int __oflag, ...)
  62. {
  63. if (__va_arg_pack_len () > 1)
  64. __open64_too_many_args ();
  65. if (__builtin_constant_p (__oflag))
  66. {
  67. if (__OPEN_NEEDS_MODE (__oflag) && __va_arg_pack_len () < 1)
  68. {
  69. __open64_missing_mode ();
  70. return __open64_2 (__path, __oflag);
  71. }
  72. return __open64_alias (__path, __oflag, __va_arg_pack ());
  73. }
  74. if (__va_arg_pack_len () < 1)
  75. return __open64_2 (__path, __oflag);
  76. return __open64_alias (__path, __oflag, __va_arg_pack ());
  77. }
  78. #endif
  79. #ifdef __USE_ATFILE
  80. # ifndef __USE_FILE_OFFSET64
  81. extern int __openat_2 (int __fd, const char *__path, int __oflag)
  82. __nonnull ((2));
  83. extern int __REDIRECT (__openat_alias, (int __fd, const char *__path,
  84. int __oflag, ...), openat)
  85. __nonnull ((2));
  86. # else
  87. extern int __REDIRECT (__openat_2, (int __fd, const char *__path,
  88. int __oflag), __openat64_2)
  89. __nonnull ((2));
  90. extern int __REDIRECT (__openat_alias, (int __fd, const char *__path,
  91. int __oflag, ...), openat64)
  92. __nonnull ((2));
  93. # endif
  94. __errordecl (__openat_too_many_args,
  95. "openat can be called either with 3 or 4 arguments, not more");
  96. __errordecl (__openat_missing_mode,
  97. "openat with O_CREAT or O_TMPFILE in third argument needs 4 arguments");
  98. __fortify_function int
  99. openat (int __fd, const char *__path, int __oflag, ...)
  100. {
  101. if (__va_arg_pack_len () > 1)
  102. __openat_too_many_args ();
  103. if (__builtin_constant_p (__oflag))
  104. {
  105. if (__OPEN_NEEDS_MODE (__oflag) && __va_arg_pack_len () < 1)
  106. {
  107. __openat_missing_mode ();
  108. return __openat_2 (__fd, __path, __oflag);
  109. }
  110. return __openat_alias (__fd, __path, __oflag, __va_arg_pack ());
  111. }
  112. if (__va_arg_pack_len () < 1)
  113. return __openat_2 (__fd, __path, __oflag);
  114. return __openat_alias (__fd, __path, __oflag, __va_arg_pack ());
  115. }
  116. # ifdef __USE_LARGEFILE64
  117. extern int __openat64_2 (int __fd, const char *__path, int __oflag)
  118. __nonnull ((2));
  119. extern int __REDIRECT (__openat64_alias, (int __fd, const char *__path,
  120. int __oflag, ...), openat64)
  121. __nonnull ((2));
  122. __errordecl (__openat64_too_many_args,
  123. "openat64 can be called either with 3 or 4 arguments, not more");
  124. __errordecl (__openat64_missing_mode,
  125. "openat64 with O_CREAT or O_TMPFILE in third argument needs 4 arguments");
  126. __fortify_function int
  127. openat64 (int __fd, const char *__path, int __oflag, ...)
  128. {
  129. if (__va_arg_pack_len () > 1)
  130. __openat64_too_many_args ();
  131. if (__builtin_constant_p (__oflag))
  132. {
  133. if (__OPEN_NEEDS_MODE (__oflag) && __va_arg_pack_len () < 1)
  134. {
  135. __openat64_missing_mode ();
  136. return __openat64_2 (__fd, __path, __oflag);
  137. }
  138. return __openat64_alias (__fd, __path, __oflag, __va_arg_pack ());
  139. }
  140. if (__va_arg_pack_len () < 1)
  141. return __openat64_2 (__fd, __path, __oflag);
  142. return __openat64_alias (__fd, __path, __oflag, __va_arg_pack ());
  143. }
  144. # endif
  145. #endif