pingpong.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. #ifndef HEADER_CURL_PINGPONG_H
  2. #define HEADER_CURL_PINGPONG_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2021, Daniel Stenberg, <[email protected]>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at https://curl.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. ***************************************************************************/
  24. #include "curl_setup.h"
  25. #if !defined(CURL_DISABLE_IMAP) || !defined(CURL_DISABLE_FTP) || \
  26. !defined(CURL_DISABLE_POP3) || !defined(CURL_DISABLE_SMTP)
  27. #define USE_PINGPONG
  28. #endif
  29. /* forward-declaration, this is defined in urldata.h */
  30. struct connectdata;
  31. typedef enum {
  32. FTPTRANSFER_BODY, /* yes do transfer a body */
  33. FTPTRANSFER_INFO, /* do still go through to get info/headers */
  34. FTPTRANSFER_NONE, /* don't get anything and don't get info */
  35. FTPTRANSFER_LAST /* end of list marker, never used */
  36. } curl_pp_transfer;
  37. /*
  38. * 'pingpong' is the generic struct used for protocols doing server<->client
  39. * conversations in a back-and-forth style such as FTP, IMAP, POP3, SMTP etc.
  40. *
  41. * It holds response cache and non-blocking sending data.
  42. */
  43. struct pingpong {
  44. char *cache; /* data cache between getresponse()-calls */
  45. size_t cache_size; /* size of cache in bytes */
  46. size_t nread_resp; /* number of bytes currently read of a server response */
  47. char *linestart_resp; /* line start pointer for the server response
  48. reader function */
  49. bool pending_resp; /* set TRUE when a server response is pending or in
  50. progress, and is cleared once the last response is
  51. read */
  52. char *sendthis; /* allocated pointer to a buffer that is to be sent to the
  53. server */
  54. size_t sendleft; /* number of bytes left to send from the sendthis buffer */
  55. size_t sendsize; /* total size of the sendthis buffer */
  56. struct curltime response; /* set to Curl_now() when a command has been sent
  57. off, used to time-out response reading */
  58. timediff_t response_time; /* When no timeout is given, this is the amount of
  59. milliseconds we await for a server response. */
  60. struct dynbuf sendbuf;
  61. /* Function pointers the protocols MUST implement and provide for the
  62. pingpong layer to function */
  63. CURLcode (*statemachine)(struct Curl_easy *data, struct connectdata *conn);
  64. bool (*endofresp)(struct Curl_easy *data, struct connectdata *conn,
  65. char *ptr, size_t len, int *code);
  66. };
  67. #define PINGPONG_SETUP(pp,s,e) \
  68. do { \
  69. pp->response_time = RESP_TIMEOUT; \
  70. pp->statemachine = s; \
  71. pp->endofresp = e; \
  72. } while(0)
  73. /*
  74. * Curl_pp_statemach()
  75. *
  76. * called repeatedly until done. Set 'wait' to make it wait a while on the
  77. * socket if there's no traffic.
  78. */
  79. CURLcode Curl_pp_statemach(struct Curl_easy *data, struct pingpong *pp,
  80. bool block, bool disconnecting);
  81. /* initialize stuff to prepare for reading a fresh new response */
  82. void Curl_pp_init(struct Curl_easy *data, struct pingpong *pp);
  83. /* setup for the transfer */
  84. void Curl_pp_setup(struct pingpong *pp);
  85. /* Returns timeout in ms. 0 or negative number means the timeout has already
  86. triggered */
  87. timediff_t Curl_pp_state_timeout(struct Curl_easy *data,
  88. struct pingpong *pp, bool disconnecting);
  89. /***********************************************************************
  90. *
  91. * Curl_pp_sendf()
  92. *
  93. * Send the formatted string as a command to a pingpong server. Note that
  94. * the string should not have any CRLF appended, as this function will
  95. * append the necessary things itself.
  96. *
  97. * made to never block
  98. */
  99. CURLcode Curl_pp_sendf(struct Curl_easy *data,
  100. struct pingpong *pp,
  101. const char *fmt, ...);
  102. /***********************************************************************
  103. *
  104. * Curl_pp_vsendf()
  105. *
  106. * Send the formatted string as a command to a pingpong server. Note that
  107. * the string should not have any CRLF appended, as this function will
  108. * append the necessary things itself.
  109. *
  110. * made to never block
  111. */
  112. CURLcode Curl_pp_vsendf(struct Curl_easy *data,
  113. struct pingpong *pp,
  114. const char *fmt,
  115. va_list args);
  116. /*
  117. * Curl_pp_readresp()
  118. *
  119. * Reads a piece of a server response.
  120. */
  121. CURLcode Curl_pp_readresp(struct Curl_easy *data,
  122. curl_socket_t sockfd,
  123. struct pingpong *pp,
  124. int *code, /* return the server code if done */
  125. size_t *size); /* size of the response */
  126. CURLcode Curl_pp_flushsend(struct Curl_easy *data,
  127. struct pingpong *pp);
  128. /* call this when a pingpong connection is disconnected */
  129. CURLcode Curl_pp_disconnect(struct pingpong *pp);
  130. int Curl_pp_getsock(struct Curl_easy *data, struct pingpong *pp,
  131. curl_socket_t *socks);
  132. /***********************************************************************
  133. *
  134. * Curl_pp_moredata()
  135. *
  136. * Returns whether there are still more data in the cache and so a call
  137. * to Curl_pp_readresp() will not block.
  138. */
  139. bool Curl_pp_moredata(struct pingpong *pp);
  140. #endif /* HEADER_CURL_PINGPONG_H */