socket2.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* Checking macros for socket functions.
  2. Copyright (C) 2005-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 _SYS_SOCKET_H
  16. # error "Never include <bits/socket2.h> directly; use <sys/socket.h> instead."
  17. #endif
  18. extern ssize_t __recv_chk (int __fd, void *__buf, size_t __n, size_t __buflen,
  19. int __flags);
  20. extern ssize_t __REDIRECT (__recv_alias, (int __fd, void *__buf, size_t __n,
  21. int __flags), recv);
  22. extern ssize_t __REDIRECT (__recv_chk_warn,
  23. (int __fd, void *__buf, size_t __n, size_t __buflen,
  24. int __flags), __recv_chk)
  25. __warnattr ("recv called with bigger length than size of destination "
  26. "buffer");
  27. __fortify_function ssize_t
  28. recv (int __fd, void *__buf, size_t __n, int __flags)
  29. {
  30. if (__bos0 (__buf) != (size_t) -1)
  31. {
  32. if (!__builtin_constant_p (__n))
  33. return __recv_chk (__fd, __buf, __n, __bos0 (__buf), __flags);
  34. if (__n > __bos0 (__buf))
  35. return __recv_chk_warn (__fd, __buf, __n, __bos0 (__buf), __flags);
  36. }
  37. return __recv_alias (__fd, __buf, __n, __flags);
  38. }
  39. extern ssize_t __recvfrom_chk (int __fd, void *__restrict __buf, size_t __n,
  40. size_t __buflen, int __flags,
  41. __SOCKADDR_ARG __addr,
  42. socklen_t *__restrict __addr_len);
  43. extern ssize_t __REDIRECT (__recvfrom_alias,
  44. (int __fd, void *__restrict __buf, size_t __n,
  45. int __flags, __SOCKADDR_ARG __addr,
  46. socklen_t *__restrict __addr_len), recvfrom);
  47. extern ssize_t __REDIRECT (__recvfrom_chk_warn,
  48. (int __fd, void *__restrict __buf, size_t __n,
  49. size_t __buflen, int __flags,
  50. __SOCKADDR_ARG __addr,
  51. socklen_t *__restrict __addr_len), __recvfrom_chk)
  52. __warnattr ("recvfrom called with bigger length than size of "
  53. "destination buffer");
  54. __fortify_function ssize_t
  55. recvfrom (int __fd, void *__restrict __buf, size_t __n, int __flags,
  56. __SOCKADDR_ARG __addr, socklen_t *__restrict __addr_len)
  57. {
  58. if (__bos0 (__buf) != (size_t) -1)
  59. {
  60. if (!__builtin_constant_p (__n))
  61. return __recvfrom_chk (__fd, __buf, __n, __bos0 (__buf), __flags,
  62. __addr, __addr_len);
  63. if (__n > __bos0 (__buf))
  64. return __recvfrom_chk_warn (__fd, __buf, __n, __bos0 (__buf), __flags,
  65. __addr, __addr_len);
  66. }
  67. return __recvfrom_alias (__fd, __buf, __n, __flags, __addr, __addr_len);
  68. }