1 /***************************************************************************
3 * Project ___| | | | _ \| |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
8 * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at https://curl.haxx.se/docs/copyright.html.
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 * 'pingpong' is for generic back-and-forth support functions used by FTP,
22 * IMAP, POP3, SMTP and whatever more that likes them.
24 ***************************************************************************/
26 #include "curl_setup.h"
32 #include "speedcheck.h"
35 #include "non-ascii.h"
36 #include "vtls/vtls.h"
37 #include "curl_printf.h"
39 #include "curl_memory.h"
40 /* The last #include file should be: */
45 /* Returns timeout in ms. 0 or negative number means the timeout has already
47 long Curl_pp_state_timeout(struct pingpong *pp)
49 struct connectdata *conn = pp->conn;
50 struct SessionHandle *data=conn->data;
51 long timeout_ms; /* in milliseconds */
52 long timeout2_ms; /* in milliseconds */
53 long response_time= (data->set.server_response_timeout)?
54 data->set.server_response_timeout: pp->response_time;
56 /* if CURLOPT_SERVER_RESPONSE_TIMEOUT is set, use that to determine
57 remaining time, or use pp->response because SERVER_RESPONSE_TIMEOUT is
58 supposed to govern the response for any given server response, not for
59 the time from connect to the given server response. */
61 /* Without a requested timeout, we only wait 'response_time' seconds for the
62 full response to arrive before we bail out */
63 timeout_ms = response_time -
64 Curl_tvdiff(Curl_tvnow(), pp->response); /* spent time */
66 if(data->set.timeout) {
67 /* if timeout is requested, find out how much remaining time we have */
68 timeout2_ms = data->set.timeout - /* timeout time */
69 Curl_tvdiff(Curl_tvnow(), conn->now); /* spent time */
71 /* pick the lowest number */
72 timeout_ms = CURLMIN(timeout_ms, timeout2_ms);
81 CURLcode Curl_pp_statemach(struct pingpong *pp, bool block)
83 struct connectdata *conn = pp->conn;
84 curl_socket_t sock = conn->sock[FIRSTSOCKET];
87 long timeout_ms = Curl_pp_state_timeout(pp);
88 struct SessionHandle *data=conn->data;
89 CURLcode result = CURLE_OK;
92 failf(data, "server response timeout");
93 return CURLE_OPERATION_TIMEDOUT; /* already too little time */
97 interval_ms = 1000; /* use 1 second timeout intervals */
98 if(timeout_ms < interval_ms)
99 interval_ms = timeout_ms;
102 interval_ms = 0; /* immediate */
104 if(Curl_pp_moredata(pp))
105 /* We are receiving and there is data in the cache so just read it */
107 else if(!pp->sendleft && Curl_ssl_data_pending(conn, FIRSTSOCKET))
108 /* We are receiving and there is data ready in the SSL library */
111 rc = Curl_socket_ready(pp->sendleft?CURL_SOCKET_BAD:sock, /* reading */
112 pp->sendleft?sock:CURL_SOCKET_BAD, /* writing */
116 /* if we didn't wait, we don't have to spend time on this now */
117 if(Curl_pgrsUpdate(conn))
118 result = CURLE_ABORTED_BY_CALLBACK;
120 result = Curl_speedcheck(data, Curl_tvnow());
127 failf(data, "select/poll error");
128 result = CURLE_OUT_OF_MEMORY;
131 result = pp->statemach_act(conn);
136 /* initialize stuff to prepare for reading a fresh new response */
137 void Curl_pp_init(struct pingpong *pp)
139 struct connectdata *conn = pp->conn;
141 pp->linestart_resp = conn->data->state.buffer;
142 pp->pending_resp = TRUE;
143 pp->response = Curl_tvnow(); /* start response time-out now! */
148 /***********************************************************************
152 * Send the formated string as a command to a pingpong server. Note that
153 * the string should not have any CRLF appended, as this function will
154 * append the necessary things itself.
156 * made to never block
158 CURLcode Curl_pp_vsendf(struct pingpong *pp,
162 ssize_t bytes_written;
167 struct connectdata *conn = pp->conn;
168 struct SessionHandle *data = conn->data;
171 enum protection_level data_sec = conn->data_prot;
174 DEBUGASSERT(pp->sendleft == 0);
175 DEBUGASSERT(pp->sendsize == 0);
176 DEBUGASSERT(pp->sendthis == NULL);
178 fmt_crlf = aprintf("%s\r\n", fmt); /* append a trailing CRLF */
180 return CURLE_OUT_OF_MEMORY;
182 s = vaprintf(fmt_crlf, args); /* trailing CRLF appended */
185 return CURLE_OUT_OF_MEMORY;
188 write_len = strlen(s);
192 result = Curl_convert_to_network(data, s, write_len);
193 /* Curl_convert_to_network calls failf if unsuccessful */
200 conn->data_prot = PROT_CMD;
202 result = Curl_write(conn, conn->sock[FIRSTSOCKET], s, write_len,
205 DEBUGASSERT(data_sec > PROT_NONE && data_sec < PROT_LAST);
206 conn->data_prot = data_sec;
214 if(conn->data->set.verbose)
215 Curl_debug(conn->data, CURLINFO_HEADER_OUT,
216 s, (size_t)bytes_written, conn);
218 if(bytes_written != (ssize_t)write_len) {
219 /* the whole chunk was not sent, keep it around and adjust sizes */
221 pp->sendsize = write_len;
222 pp->sendleft = write_len - bytes_written;
227 pp->sendleft = pp->sendsize = 0;
228 pp->response = Curl_tvnow();
235 /***********************************************************************
239 * Send the formated string as a command to a pingpong server. Note that
240 * the string should not have any CRLF appended, as this function will
241 * append the necessary things itself.
243 * made to never block
245 CURLcode Curl_pp_sendf(struct pingpong *pp,
246 const char *fmt, ...)
252 result = Curl_pp_vsendf(pp, fmt, ap);
262 * Reads a piece of a server response.
264 CURLcode Curl_pp_readresp(curl_socket_t sockfd,
266 int *code, /* return the server code if done */
267 size_t *size) /* size of the response */
269 ssize_t perline; /* count bytes per line */
273 struct connectdata *conn = pp->conn;
274 struct SessionHandle *data = conn->data;
275 char * const buf = data->state.buffer;
276 CURLcode result = CURLE_OK;
278 *code = 0; /* 0 for errors or not done */
281 ptr=buf + pp->nread_resp;
283 /* number of bytes in the current line, so far */
284 perline = (ssize_t)(ptr-pp->linestart_resp);
286 while((pp->nread_resp<BUFSIZE) && (keepon && !result)) {
289 /* we had data in the "cache", copy that instead of doing an actual
292 * pp->cache_size is cast to ssize_t here. This should be safe, because
293 * it would have been populated with something of size int to begin
294 * with, even though its datatype may be larger than an int.
296 DEBUGASSERT((ptr+pp->cache_size) <= (buf+BUFSIZE+1));
297 memcpy(ptr, pp->cache, pp->cache_size);
298 gotbytes = (ssize_t)pp->cache_size;
299 free(pp->cache); /* free the cache */
300 pp->cache = NULL; /* clear the pointer */
301 pp->cache_size = 0; /* zero the size just in case */
305 enum protection_level prot = conn->data_prot;
306 conn->data_prot = PROT_CLEAR;
308 DEBUGASSERT((ptr+BUFSIZE-pp->nread_resp) <= (buf+BUFSIZE+1));
309 result = Curl_read(conn, sockfd, ptr, BUFSIZE-pp->nread_resp,
312 DEBUGASSERT(prot > PROT_NONE && prot < PROT_LAST);
313 conn->data_prot = prot;
315 if(result == CURLE_AGAIN)
316 return CURLE_OK; /* return */
318 if(!result && (gotbytes > 0))
319 /* convert from the network encoding */
320 result = Curl_convert_from_network(data, ptr, gotbytes);
321 /* Curl_convert_from_network calls failf if unsuccessful */
324 /* Set outer result variable to this error. */
330 else if(gotbytes <= 0) {
332 result = CURLE_RECV_ERROR;
333 failf(data, "response reading failed");
336 /* we got a whole chunk of data, which can be anything from one
337 * byte to a set of lines and possible just a piece of the last
340 ssize_t clipamount = 0;
341 bool restart = FALSE;
343 data->req.headerbytecount += (long)gotbytes;
345 pp->nread_resp += gotbytes;
346 for(i = 0; i < gotbytes; ptr++, i++) {
349 /* a newline is CRLF in pp-talk, so the CR is ignored as
350 the line isn't really terminated until the LF comes */
352 /* output debug output if that is requested */
354 if(!conn->sec_complete)
356 if(data->set.verbose)
357 Curl_debug(data, CURLINFO_HEADER_IN,
358 pp->linestart_resp, (size_t)perline, conn);
361 * We pass all response-lines to the callback function registered
362 * for "headers". The response lines can be seen as a kind of
365 result = Curl_client_write(conn, CLIENTWRITE_HEADER,
366 pp->linestart_resp, perline);
370 if(pp->endofresp(conn, pp->linestart_resp, perline, code)) {
371 /* This is the end of the last line, copy the last line to the
372 start of the buffer and zero terminate, for old times sake */
373 size_t n = ptr - pp->linestart_resp;
374 memmove(buf, pp->linestart_resp, n);
375 buf[n]=0; /* zero terminate */
377 pp->linestart_resp = ptr+1; /* advance pointer */
378 i++; /* skip this before getting out */
380 *size = pp->nread_resp; /* size of the response */
381 pp->nread_resp = 0; /* restart */
384 perline=0; /* line starts over here */
385 pp->linestart_resp = ptr+1;
389 if(!keepon && (i != gotbytes)) {
390 /* We found the end of the response lines, but we didn't parse the
391 full chunk of data we have read from the server. We therefore need
392 to store the rest of the data to be checked on the next invoke as
393 it may actually contain another end of response already! */
394 clipamount = gotbytes - i;
396 DEBUGF(infof(data, "Curl_pp_readresp_ %d bytes of trailing "
397 "server response left\n",
402 if((perline == gotbytes) && (gotbytes > BUFSIZE/2)) {
403 /* We got an excessive line without newlines and we need to deal
404 with it. We keep the first bytes of the line then we throw
406 infof(data, "Excessive server response line length received, "
407 "%zd bytes. Stripping\n", gotbytes);
410 /* we keep 40 bytes since all our pingpong protocols are only
411 interested in the first piece */
414 else if(pp->nread_resp > BUFSIZE/2) {
415 /* We got a large chunk of data and there's potentially still
416 trailing data to take care of, so we put any such part in the
417 "cache", clear the buffer to make space and restart. */
418 clipamount = perline;
422 else if(i == gotbytes)
426 pp->cache_size = clipamount;
427 pp->cache = malloc(pp->cache_size);
429 memcpy(pp->cache, pp->linestart_resp, pp->cache_size);
431 return CURLE_OUT_OF_MEMORY;
434 /* now reset a few variables to start over nicely from the start of
436 pp->nread_resp = 0; /* start over from scratch in the buffer */
437 ptr = pp->linestart_resp = buf;
441 } /* there was data */
443 } /* while there's buffer left and loop is requested */
445 pp->pending_resp = FALSE;
450 int Curl_pp_getsock(struct pingpong *pp,
451 curl_socket_t *socks,
454 struct connectdata *conn = pp->conn;
457 return GETSOCK_BLANK;
459 socks[0] = conn->sock[FIRSTSOCKET];
463 return GETSOCK_WRITESOCK(0);
467 return GETSOCK_READSOCK(0);
470 CURLcode Curl_pp_flushsend(struct pingpong *pp)
472 /* we have a piece of a command still left to send */
473 struct connectdata *conn = pp->conn;
475 curl_socket_t sock = conn->sock[FIRSTSOCKET];
476 CURLcode result = Curl_write(conn, sock, pp->sendthis + pp->sendsize -
477 pp->sendleft, pp->sendleft, &written);
481 if(written != (ssize_t)pp->sendleft) {
482 /* only a fraction was sent */
483 pp->sendleft -= written;
488 pp->sendleft = pp->sendsize = 0;
489 pp->response = Curl_tvnow();
494 CURLcode Curl_pp_disconnect(struct pingpong *pp)
501 bool Curl_pp_moredata(struct pingpong *pp)
503 return (!pp->sendleft && pp->cache && pp->nread_resp < pp->cache_size) ?