/contrib/apr/network_io/unix/socket_util.c

https://bitbucket.org/freebsd/freebsd-base · C · 75 lines · 39 code · 9 blank · 27 comment · 14 complexity · e33587444807186fef4e2c318936ced1 MD5 · raw file

  1. /* Licensed to the Apache Software Foundation (ASF) under one or more
  2. * contributor license agreements. See the NOTICE file distributed with
  3. * this work for additional information regarding copyright ownership.
  4. * The ASF licenses this file to You under the Apache License, Version 2.0
  5. * (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "apr_network_io.h"
  17. #include "apr_poll.h"
  18. APR_DECLARE(apr_status_t) apr_socket_atreadeof(apr_socket_t *sock, int *atreadeof)
  19. {
  20. apr_pollfd_t pfds[1];
  21. apr_status_t rv;
  22. apr_int32_t nfds;
  23. /* The purpose here is to return APR_SUCCESS only in cases in
  24. * which it can be unambiguously determined whether or not the
  25. * socket will return EOF on next read. In case of an unexpected
  26. * error, return that. */
  27. pfds[0].reqevents = APR_POLLIN;
  28. pfds[0].desc_type = APR_POLL_SOCKET;
  29. pfds[0].desc.s = sock;
  30. do {
  31. rv = apr_poll(&pfds[0], 1, &nfds, 0);
  32. } while (APR_STATUS_IS_EINTR(rv));
  33. if (APR_STATUS_IS_TIMEUP(rv)) {
  34. /* Read buffer empty -> subsequent reads would block, so,
  35. * definitely not at EOF. */
  36. *atreadeof = 0;
  37. return APR_SUCCESS;
  38. }
  39. else if (rv) {
  40. /* Some other error -> unexpected error. */
  41. return rv;
  42. }
  43. /* Many platforms return only APR_POLLIN; OS X returns APR_POLLHUP|APR_POLLIN */
  44. else if (nfds == 1 && (pfds[0].rtnevents & APR_POLLIN) == APR_POLLIN) {
  45. apr_sockaddr_t unused;
  46. apr_size_t len = 1;
  47. char buf;
  48. /* The socket is readable - peek to see whether it returns EOF
  49. * without consuming bytes from the socket buffer. */
  50. rv = apr_socket_recvfrom(&unused, sock, MSG_PEEK, &buf, &len);
  51. if (rv == APR_EOF) {
  52. *atreadeof = 1;
  53. return APR_SUCCESS;
  54. }
  55. else if (rv) {
  56. /* Read error -> unexpected error. */
  57. return rv;
  58. }
  59. else {
  60. *atreadeof = 0;
  61. return APR_SUCCESS;
  62. }
  63. }
  64. /* Should not fall through here. */
  65. return APR_EGENERAL;
  66. }