/src/network.c

https://bitbucket.org/amontero/tinyproxy · C · 238 lines · 146 code · 41 blank · 51 comment · 31 complexity · 0243cfcf6005df5ca2f82a80a75adde0 MD5 · raw file

  1. /* $Id: network.c,v 1.1 2002-05-23 04:41:48 rjkaes Exp $
  2. *
  3. * The functions found here are used for communicating across a
  4. * network. They include both safe reading and writing (which are
  5. * the basic building blocks) along with two functions for
  6. * easily reading a line of text from the network, and a function
  7. * to write an arbitrary amount of data to the network.
  8. *
  9. * Copyright (C) 2002 Robert James Kaes (rjkaes@flarenet.com)
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the
  13. * Free Software Foundation; either version 2, or (at your option) any
  14. * later version.
  15. *
  16. * This program is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * General Public License for more details.
  20. */
  21. #include "tinyproxy.h"
  22. #include "heap.h"
  23. #include "network.h"
  24. /*
  25. * Write the buffer to the socket. If an EINTR occurs, pick up and try
  26. * again. Keep sending until the buffer has been sent.
  27. */
  28. ssize_t
  29. safe_write(int fd, const char *buffer, size_t count)
  30. {
  31. ssize_t len;
  32. size_t bytestosend;
  33. assert(fd >= 0);
  34. assert(buffer != NULL);
  35. assert(count > 0);
  36. bytestosend = count;
  37. while (1) {
  38. len = send(fd, buffer, bytestosend, MSG_NOSIGNAL);
  39. if (len < 0) {
  40. if (errno == EINTR)
  41. continue;
  42. else
  43. return -errno;
  44. }
  45. if (len == bytestosend)
  46. break;
  47. buffer += len;
  48. bytestosend -= len;
  49. }
  50. return count;
  51. }
  52. /*
  53. * Matched pair for safe_write(). If an EINTR occurs, pick up and try
  54. * again.
  55. */
  56. ssize_t
  57. safe_read(int fd, char *buffer, size_t count)
  58. {
  59. ssize_t len;
  60. do {
  61. len = read(fd, buffer, count);
  62. } while (len < 0 && errno == EINTR);
  63. return len;
  64. }
  65. /*
  66. * Send a "message" to the file descriptor provided. This handles the
  67. * differences between the various implementations of vsnprintf. This code
  68. * was basically stolen from the snprintf() man page of Debian Linux
  69. * (although I did fix a memory leak. :)
  70. */
  71. int
  72. write_message(int fd, const char *fmt, ...)
  73. {
  74. ssize_t n;
  75. size_t size = (1024 * 8); /* start with 8 KB and go from there */
  76. char *buf, *tmpbuf;
  77. va_list ap;
  78. if ((buf = safemalloc(size)) == NULL)
  79. return -1;
  80. while (1) {
  81. va_start(ap, fmt);
  82. n = vsnprintf(buf, size, fmt, ap);
  83. va_end(ap);
  84. /* If that worked, break out so we can send the buffer */
  85. if (n > -1 && n < size)
  86. break;
  87. /* Else, try again with more space */
  88. if (n > -1)
  89. /* precisely what is needed (glibc2.1) */
  90. size = n + 1;
  91. else
  92. /* twice the old size (glibc2.0) */
  93. size *= 2;
  94. if ((tmpbuf = saferealloc(buf, size)) == NULL) {
  95. safefree(buf);
  96. return -1;
  97. } else
  98. buf = tmpbuf;
  99. }
  100. if (safe_write(fd, buf, n) < 0) {
  101. safefree(buf);
  102. return -1;
  103. }
  104. safefree(buf);
  105. return 0;
  106. }
  107. /*
  108. * Read in a "line" from the socket. It might take a few loops through
  109. * the read sequence. The full string is allocate off the heap and stored
  110. * at the whole_buffer pointer. The caller needs to free the memory when
  111. * it is no longer in use. The returned line is NULL terminated.
  112. *
  113. * Returns the length of the buffer on success (not including the NULL
  114. * termination), 0 if the socket was closed, and -1 on all other errors.
  115. */
  116. #define SEGMENT_LEN (512)
  117. #define MAXIMUM_BUFFER_LENGTH (128 * 1024)
  118. ssize_t
  119. readline(int fd, char **whole_buffer)
  120. {
  121. ssize_t whole_buffer_len;
  122. char buffer[SEGMENT_LEN];
  123. char *ptr;
  124. ssize_t ret;
  125. ssize_t diff;
  126. struct read_lines_s {
  127. char *data;
  128. size_t len;
  129. struct read_lines_s *next;
  130. };
  131. struct read_lines_s *first_line, *line_ptr;
  132. first_line = safecalloc(sizeof(struct read_lines_s), 1);
  133. if (!first_line)
  134. return -ENOMEM;
  135. line_ptr = first_line;
  136. whole_buffer_len = 0;
  137. for (;;) {
  138. ret = recv(fd, buffer, SEGMENT_LEN, MSG_PEEK);
  139. if (ret <= 0)
  140. goto CLEANUP;
  141. ptr = memchr(buffer, '\n', ret);
  142. if (ptr)
  143. diff = ptr - buffer + 1;
  144. else
  145. diff = ret;
  146. whole_buffer_len += diff;
  147. /*
  148. * Don't allow the buffer to grow without bound. If we
  149. * get to more than MAXIMUM_BUFFER_LENGTH close.
  150. */
  151. if (whole_buffer_len > MAXIMUM_BUFFER_LENGTH) {
  152. ret = -ERANGE;
  153. goto CLEANUP;
  154. }
  155. line_ptr->data = safemalloc(diff);
  156. if (!line_ptr->data) {
  157. ret = -ENOMEM;
  158. goto CLEANUP;
  159. }
  160. recv(fd, line_ptr->data, diff, 0);
  161. line_ptr->len = diff;
  162. if (ptr) {
  163. line_ptr->next = NULL;
  164. break;
  165. }
  166. line_ptr->next = safecalloc(sizeof(struct read_lines_s), 1);
  167. if (!line_ptr->next) {
  168. ret = -ENOMEM;
  169. goto CLEANUP;
  170. }
  171. line_ptr = line_ptr->next;
  172. }
  173. *whole_buffer = safemalloc(whole_buffer_len + 1);
  174. if (!*whole_buffer) {
  175. ret = -ENOMEM;
  176. goto CLEANUP;
  177. }
  178. *(*whole_buffer + whole_buffer_len) = '\0';
  179. whole_buffer_len = 0;
  180. line_ptr = first_line;
  181. while (line_ptr) {
  182. memcpy(*whole_buffer + whole_buffer_len, line_ptr->data,
  183. line_ptr->len);
  184. whole_buffer_len += line_ptr->len;
  185. line_ptr = line_ptr->next;
  186. }
  187. ret = whole_buffer_len;
  188. CLEANUP:
  189. do {
  190. line_ptr = first_line->next;
  191. if (first_line->data)
  192. safefree(first_line->data);
  193. safefree(first_line);
  194. first_line = line_ptr;
  195. } while (first_line);
  196. return ret;
  197. }