Line data Source code
1 : #include "burp.h"
2 : #include "alloc.h"
3 : #include "asfd.h"
4 : #include "async.h"
5 : #include "cmd.h"
6 : #include "fsops.h"
7 : #include "handy.h"
8 : #include "iobuf.h"
9 : #include "log.h"
10 : #include "server/protocol2/champ_chooser/incoming.h"
11 :
12 : // For IPTOS / IPTOS_THROUGHPUT.
13 : #ifdef HAVE_WIN32
14 : #include <ws2tcpip.h>
15 : #else
16 : #include <netinet/ip.h>
17 : #endif
18 :
19 : #ifdef HAVE_NCURSES_H
20 : #include <ncurses.h>
21 : #elif HAVE_NCURSES_NCURSES_H
22 : #include <ncurses/ncurses.h>
23 : #endif
24 :
25 : #include "protocol2/blist.h"
26 :
27 : static size_t bufmaxsize=(ASYNC_BUF_LEN*2)+32;
28 :
29 : static void truncate_readbuf(struct asfd *asfd)
30 : {
31 0 : asfd->readbuf[0]='\0';
32 0 : asfd->readbuflen=0;
33 : }
34 :
35 18 : static int asfd_alloc_buf(char **buf)
36 : {
37 18 : if(!*buf && !(*buf=(char *)calloc_w(1, bufmaxsize, __func__)))
38 : return -1;
39 18 : return 0;
40 : }
41 :
42 0 : static int extract_buf(struct asfd *asfd,
43 : unsigned int len, unsigned int offset)
44 : {
45 0 : if(!(asfd->rbuf->buf=(char *)malloc_w(len+1, __func__)))
46 : return -1;
47 0 : if(!(memcpy(asfd->rbuf->buf, asfd->readbuf+offset, len)))
48 : {
49 0 : logp("%s: memcpy failed in %s\n", asfd->desc, __func__);
50 0 : return -1;
51 : }
52 0 : asfd->rbuf->buf[len]='\0';
53 0 : if(!(memmove(asfd->readbuf,
54 0 : asfd->readbuf+len+offset, asfd->readbuflen-len-offset)))
55 : {
56 0 : logp("%s: memmove failed in %s\n", asfd->desc, __func__);
57 0 : return -1;
58 : }
59 0 : asfd->readbuflen-=len+offset;
60 0 : asfd->rbuf->len=len;
61 0 : return 0;
62 : }
63 :
64 : #ifdef HAVE_NCURSES
65 0 : static int parse_readbuf_ncurses(struct asfd *asfd)
66 : {
67 0 : if(!asfd->readbuflen) return 0;
68 : // This is reading ints, and will be cast back to an int when it comes
69 : // to be processed later.
70 0 : if(extract_buf(asfd, asfd->readbuflen, 0)) return -1;
71 0 : return 0;
72 : }
73 : #endif
74 :
75 0 : static int parse_readbuf_line_buf(struct asfd *asfd)
76 : {
77 : static char *cp=NULL;
78 : static char *dp=NULL;
79 : static size_t len=0;
80 0 : if(!cp)
81 : {
82 : // Only start from the beginning if we previously got something
83 : // to extract.
84 0 : cp=asfd->readbuf;
85 0 : len=0;
86 : }
87 0 : for(; len<asfd->readbuflen; cp++, len++)
88 : {
89 0 : if(*cp!='\n') continue;
90 0 : len++;
91 0 : if(extract_buf(asfd, len, 0)) return -1;
92 : // Strip trailing white space, like '\r\n'.
93 0 : dp=asfd->rbuf->buf;
94 0 : for(cp=&(dp[len-1]); cp>=dp && isspace(*cp); cp--, len--)
95 0 : *cp='\0';
96 0 : asfd->rbuf->len=len;
97 0 : break;
98 : }
99 0 : cp=NULL;
100 0 : return 0;
101 : }
102 :
103 0 : static int parse_readbuf_standard(struct asfd *asfd)
104 : {
105 0 : enum cmd cmdtmp=CMD_ERROR;
106 0 : unsigned int s=0;
107 0 : if(asfd->readbuflen<5) return 0;
108 0 : if((sscanf(asfd->readbuf, "%c%04X", (char *)&cmdtmp, &s))!=2)
109 : {
110 : logp("%s: sscanf of '%s' failed in %s\n",
111 0 : asfd->desc, asfd->readbuf, __func__);
112 0 : return -1;
113 : }
114 0 : if(asfd->readbuflen>=s+5)
115 : {
116 0 : asfd->rbuf->cmd=cmdtmp;
117 0 : if(extract_buf(asfd, s, 5))
118 : return -1;
119 : }
120 : return 0;
121 : }
122 :
123 0 : static int asfd_parse_readbuf(struct asfd *asfd)
124 : {
125 0 : if(asfd->rbuf->buf) return 0;
126 :
127 0 : if(asfd->parse_readbuf_specific(asfd))
128 : {
129 0 : truncate_readbuf(asfd);
130 0 : return -1;
131 : }
132 :
133 : return 0;
134 : }
135 :
136 : #ifdef HAVE_NCURSES
137 0 : static int asfd_do_read_ncurses(struct asfd *asfd)
138 : {
139 : static int i;
140 0 : i=getch();
141 0 : asfd->readbuflen=sizeof(int);
142 0 : memcpy(asfd->readbuf, &i, asfd->readbuflen);
143 0 : return 0;
144 : }
145 :
146 0 : static int asfd_do_write_ncurses(struct asfd *asfd)
147 : {
148 0 : logp("This function should not have been called: %s\n", __func__);
149 0 : return -1;
150 : }
151 : #endif
152 :
153 0 : static int asfd_do_read(struct asfd *asfd)
154 : {
155 : ssize_t r;
156 : r=read(asfd->fd,
157 0 : asfd->readbuf+asfd->readbuflen, bufmaxsize-asfd->readbuflen);
158 0 : if(r<0)
159 : {
160 0 : if(errno==EAGAIN || errno==EINTR)
161 : return 0;
162 : logp("%s: read problem on fd %d: %s\n",
163 0 : asfd->desc, asfd->fd, strerror(errno));
164 0 : goto error;
165 : }
166 0 : else if(!r)
167 : {
168 : // End of data.
169 0 : logp("%s: end of data\n", asfd->desc);
170 0 : goto error;
171 : }
172 0 : asfd->readbuflen+=r;
173 0 : return 0;
174 : error:
175 0 : truncate_readbuf(asfd);
176 0 : return -1;
177 : }
178 :
179 0 : static int asfd_do_read_ssl(struct asfd *asfd)
180 : {
181 : int e;
182 : ssize_t r;
183 :
184 0 : asfd->read_blocked_on_write=0;
185 :
186 0 : ERR_clear_error();
187 : r=SSL_read(asfd->ssl,
188 0 : asfd->readbuf+asfd->readbuflen, bufmaxsize-asfd->readbuflen);
189 :
190 0 : switch((e=SSL_get_error(asfd->ssl, r)))
191 : {
192 : case SSL_ERROR_NONE:
193 0 : asfd->readbuflen+=r;
194 0 : asfd->readbuf[asfd->readbuflen]='\0';
195 0 : break;
196 : case SSL_ERROR_ZERO_RETURN:
197 : // End of data.
198 0 : logp("%s: Peer closed SSL session\n", asfd->desc);
199 0 : SSL_shutdown(asfd->ssl);
200 0 : goto error;
201 : case SSL_ERROR_WANT_READ:
202 : break;
203 : case SSL_ERROR_WANT_WRITE:
204 0 : asfd->read_blocked_on_write=1;
205 0 : break;
206 : case SSL_ERROR_SYSCALL:
207 0 : if(errno==EAGAIN || errno==EINTR)
208 : break;
209 : logp("%s: Got SSL_ERROR_SYSCALL\n",
210 0 : asfd->desc);
211 : // Fall through to read problem
212 : default:
213 : logp_ssl_err(
214 : "%s: SSL read problem in %s: %d - %d=%s\n",
215 : asfd->desc, __func__,
216 0 : e, errno, strerror(errno));
217 0 : goto error;
218 : }
219 : return 0;
220 : error:
221 0 : truncate_readbuf(asfd);
222 0 : return -1;
223 : }
224 :
225 : // Return 0 for OK to write, non-zero for not OK to write.
226 0 : static int check_ratelimit(struct asfd *asfd)
227 : {
228 : float f;
229 : time_t diff;
230 0 : if(!asfd->rlstart) asfd->rlstart=time(NULL);
231 0 : if((diff=asfd->as->now-asfd->rlstart)<0)
232 : {
233 : // It is possible that the clock changed. Reset ourselves.
234 0 : asfd->as->now=asfd->rlstart;
235 0 : asfd->rlbytes=0;
236 : logp("Looks like the clock went back in time since starting. "
237 0 : "Resetting ratelimit\n");
238 0 : return 0;
239 : }
240 0 : if(!diff) return 0; // Need to get started somehow.
241 0 : f=(asfd->rlbytes)/diff; // Bytes per second.
242 :
243 0 : if(f>=asfd->ratelimit)
244 : {
245 : #ifdef HAVE_WIN32
246 : // Windows Sleep is milliseconds, usleep is microseconds.
247 : // Do some conversion.
248 : Sleep(asfd->rlsleeptime/1000);
249 : #else
250 0 : usleep(asfd->rlsleeptime);
251 : #endif
252 : // If sleeping, increase the sleep time.
253 0 : if((asfd->rlsleeptime*=2)>=500000) asfd->rlsleeptime=500000;
254 : return 1;
255 : }
256 : // If not sleeping, decrease the sleep time.
257 0 : if((asfd->rlsleeptime/=2)<=9999) asfd->rlsleeptime=10000;
258 : return 0;
259 : }
260 :
261 0 : static int asfd_do_write(struct asfd *asfd)
262 : {
263 : ssize_t w;
264 0 : if(asfd->ratelimit && check_ratelimit(asfd)) return 0;
265 :
266 0 : w=write(asfd->fd, asfd->writebuf, asfd->writebuflen);
267 0 : if(w<0)
268 : {
269 0 : if(errno==EAGAIN || errno==EINTR)
270 : return 0;
271 : logp("%s: Got error in %s, (%d=%s)\n", __func__,
272 0 : asfd->desc, errno, strerror(errno));
273 0 : return -1;
274 : }
275 0 : else if(!w)
276 : {
277 0 : logp("%s: Wrote nothing in %s\n", asfd->desc, __func__);
278 0 : return -1;
279 : }
280 0 : if(asfd->ratelimit) asfd->rlbytes+=w;
281 : /*
282 : {
283 : char buf[100000]="";
284 : snprintf(buf, w+1, "%s", asfd->writebuf);
285 : printf("wrote %d: %s\n", w, buf);
286 : }
287 : */
288 :
289 0 : memmove(asfd->writebuf, asfd->writebuf+w, asfd->writebuflen-w);
290 0 : asfd->writebuflen-=w;
291 0 : return 0;
292 : }
293 :
294 0 : static int asfd_do_write_ssl(struct asfd *asfd)
295 : {
296 : int e;
297 : ssize_t w;
298 :
299 0 : asfd->write_blocked_on_read=0;
300 :
301 0 : if(asfd->ratelimit && check_ratelimit(asfd)) return 0;
302 0 : ERR_clear_error();
303 0 : w=SSL_write(asfd->ssl, asfd->writebuf, asfd->writebuflen);
304 :
305 0 : switch((e=SSL_get_error(asfd->ssl, w)))
306 : {
307 : case SSL_ERROR_NONE:
308 : /*
309 : {
310 : char buf[100000]="";
311 : snprintf(buf, w+1, "%s", asfd->writebuf);
312 : printf("wrote %d: %s\n", w, buf);
313 : }
314 : */
315 0 : if(asfd->ratelimit) asfd->rlbytes+=w;
316 : memmove(asfd->writebuf,
317 0 : asfd->writebuf+w, asfd->writebuflen-w);
318 0 : asfd->writebuflen-=w;
319 0 : break;
320 : case SSL_ERROR_WANT_WRITE:
321 : break;
322 : case SSL_ERROR_WANT_READ:
323 0 : asfd->write_blocked_on_read=1;
324 0 : break;
325 : case SSL_ERROR_SYSCALL:
326 0 : if(errno==EAGAIN || errno==EINTR)
327 : break;
328 : logp("%s: Got SSL_ERROR_SYSCALL\n",
329 0 : asfd->desc);
330 : // Fall through to read problem
331 : default:
332 : logp_ssl_err(
333 : "%s: SSL write problem in %s: %d - %d=%s\n",
334 : asfd->desc, __func__,
335 0 : e, errno, strerror(errno));
336 0 : return -1;
337 : }
338 : return 0;
339 : }
340 :
341 0 : static int append_to_write_buffer(struct asfd *asfd,
342 : const char *buf, size_t len)
343 : {
344 0 : memcpy(asfd->writebuf+asfd->writebuflen, buf, len);
345 0 : asfd->writebuflen+=len;
346 0 : asfd->writebuf[asfd->writebuflen]='\0';
347 0 : return 0;
348 : }
349 :
350 0 : static enum append_ret asfd_append_all_to_write_buffer(struct asfd *asfd,
351 : struct iobuf *wbuf)
352 : {
353 0 : switch(asfd->streamtype)
354 : {
355 : case ASFD_STREAM_STANDARD:
356 : {
357 0 : size_t sblen=0;
358 0 : char sbuf[10]="";
359 0 : if(asfd->writebuflen+6+(wbuf->len) >= bufmaxsize-1)
360 0 : return APPEND_BLOCKED;
361 :
362 : snprintf(sbuf, sizeof(sbuf), "%c%04X",
363 0 : wbuf->cmd, (unsigned int)wbuf->len);
364 0 : sblen=strlen(sbuf);
365 0 : append_to_write_buffer(asfd, sbuf, sblen);
366 0 : break;
367 : }
368 : case ASFD_STREAM_LINEBUF:
369 0 : if(asfd->writebuflen+wbuf->len >= bufmaxsize-1)
370 : return APPEND_BLOCKED;
371 : break;
372 : case ASFD_STREAM_NCURSES_STDIN:
373 : default:
374 : logp("%s: unknown asfd stream type in %s: %d\n",
375 0 : asfd->desc, __func__, asfd->streamtype);
376 0 : return APPEND_ERROR;
377 : }
378 0 : append_to_write_buffer(asfd, wbuf->buf, wbuf->len);
379 : //printf("append %d: %c:%s\n", wbuf->len, wbuf->cmd, wbuf->buf);
380 0 : wbuf->len=0;
381 0 : return APPEND_OK;
382 : }
383 :
384 0 : static int asfd_set_bulk_packets(struct asfd *asfd)
385 : {
386 : #if defined(IP_TOS) && defined(IPTOS_THROUGHPUT)
387 0 : int opt=IPTOS_THROUGHPUT;
388 0 : if(asfd->fd<0) return -1;
389 0 : if(setsockopt(asfd->fd,
390 0 : IPPROTO_IP, IP_TOS, (char *)&opt, sizeof(opt))<0)
391 : {
392 : logp("%s: error: setsockopt IPTOS_THROUGHPUT: %s\n",
393 0 : asfd->desc, strerror(errno));
394 0 : return -1;
395 : }
396 : #endif
397 : return 0;
398 : }
399 :
400 0 : static int asfd_read(struct asfd *asfd)
401 : {
402 0 : if(asfd->as->doing_estimate) return 0;
403 0 : while(!asfd->rbuf->buf)
404 0 : if(asfd->as->read_write(asfd->as)) return -1;
405 : return 0;
406 : }
407 :
408 31 : int asfd_read_expect(struct asfd *asfd, enum cmd cmd, const char *expect)
409 : {
410 31 : int ret=0;
411 31 : if(asfd->read(asfd)) return -1;
412 30 : if(asfd->rbuf->cmd!=cmd || strcmp(asfd->rbuf->buf, expect))
413 : {
414 : logp("%s: expected '%c:%s', got '%c:%s'\n",
415 : asfd->desc, cmd, expect,
416 1 : asfd->rbuf->cmd, asfd->rbuf->buf);
417 1 : ret=-1;
418 : }
419 30 : iobuf_free_content(asfd->rbuf);
420 30 : return ret;
421 : }
422 :
423 0 : static int asfd_write(struct asfd *asfd, struct iobuf *wbuf)
424 : {
425 0 : if(asfd->as->doing_estimate) return 0;
426 0 : while(wbuf->len)
427 : {
428 0 : if(asfd->append_all_to_write_buffer(asfd, wbuf)==APPEND_ERROR)
429 : return -1;
430 0 : if(asfd->as->write(asfd->as)) return -1;
431 : }
432 : return 0;
433 : }
434 :
435 0 : static int asfd_write_str(struct asfd *asfd, enum cmd wcmd, const char *wsrc)
436 : {
437 : struct iobuf wbuf;
438 0 : wbuf.cmd=wcmd;
439 0 : wbuf.buf=(char *)wsrc;
440 0 : wbuf.len=strlen(wsrc);
441 0 : return asfd->write(asfd, &wbuf);
442 : }
443 :
444 : #ifndef UTEST
445 : static
446 : #endif
447 11 : int asfd_simple_loop(struct asfd *asfd,
448 : struct conf **confs, void *param, const char *caller,
449 : enum asl_ret callback(struct asfd *asfd, struct conf **confs, void *param))
450 : {
451 11 : struct iobuf *rbuf=asfd->rbuf;
452 : while(1)
453 : {
454 700 : iobuf_free_content(rbuf);
455 700 : if(asfd->read(asfd)) goto error;
456 699 : if(!rbuf->buf) continue;
457 10 : if(rbuf->cmd!=CMD_GEN)
458 : {
459 0 : if(rbuf->cmd==CMD_WARNING
460 0 : || rbuf->cmd==CMD_MESSAGE)
461 : {
462 0 : struct cntr *cntr=NULL;
463 0 : if(confs) cntr=get_cntr(confs);
464 0 : log_recvd(rbuf, cntr, 0);
465 : }
466 0 : else if(rbuf->cmd==CMD_INTERRUPT)
467 : {
468 : // Ignore - client wanted to interrupt a file.
469 : }
470 : else
471 : {
472 0 : logp("%s: unexpected command in %s(), called from %s(): %c:%s\n", asfd->desc, __func__, caller, rbuf->cmd, rbuf->buf);
473 0 : goto error;
474 : }
475 : continue;
476 : }
477 10 : switch(callback(asfd, confs, param))
478 : {
479 : case ASL_CONTINUE: break;
480 : case ASL_END_OK:
481 8 : iobuf_free_content(rbuf);
482 8 : return 0;
483 : case ASL_END_OK_RETURN_1:
484 0 : iobuf_free_content(rbuf);
485 0 : return 1;
486 : case ASL_END_ERROR:
487 : default:
488 : goto error;
489 : }
490 : }
491 : error:
492 3 : iobuf_free_content(rbuf);
493 3 : return -1;
494 : }
495 :
496 0 : static void asfd_set_timeout(struct asfd *asfd, int max_network_timeout)
497 : {
498 0 : asfd->max_network_timeout=max_network_timeout;
499 0 : asfd->network_timeout=asfd->max_network_timeout;
500 0 : }
501 :
502 9 : static int asfd_init(struct asfd *asfd, const char *desc,
503 : struct async *as, int afd, SSL *assl, enum asfd_streamtype streamtype)
504 : {
505 9 : asfd->as=as;
506 9 : asfd->fd=afd;
507 9 : asfd->ssl=assl;
508 9 : asfd->streamtype=streamtype;
509 9 : asfd->rlsleeptime=10000;
510 9 : asfd->pid=-1;
511 9 : asfd->attempt_reads=1;
512 :
513 9 : asfd->parse_readbuf=asfd_parse_readbuf;
514 9 : asfd->append_all_to_write_buffer=asfd_append_all_to_write_buffer;
515 9 : asfd->set_bulk_packets=asfd_set_bulk_packets;
516 9 : asfd->set_timeout=asfd_set_timeout;
517 9 : if(asfd->ssl)
518 : {
519 1 : asfd->do_read=asfd_do_read_ssl;
520 1 : asfd->do_write=asfd_do_write_ssl;
521 : }
522 : else
523 : {
524 8 : asfd->do_read=asfd_do_read;
525 8 : asfd->do_write=asfd_do_write;
526 : #ifdef HAVE_NCURSES
527 8 : if(asfd->streamtype==ASFD_STREAM_NCURSES_STDIN)
528 : {
529 1 : asfd->do_read=asfd_do_read_ncurses;
530 1 : asfd->do_write=asfd_do_write_ncurses;
531 : }
532 : #endif
533 : }
534 9 : asfd->read=asfd_read;
535 9 : asfd->simple_loop=asfd_simple_loop;
536 9 : asfd->write=asfd_write;
537 9 : asfd->write_str=asfd_write_str;
538 :
539 9 : switch(asfd->streamtype)
540 : {
541 : case ASFD_STREAM_STANDARD:
542 2 : asfd->parse_readbuf_specific=parse_readbuf_standard;
543 2 : break;
544 : case ASFD_STREAM_LINEBUF:
545 6 : asfd->parse_readbuf_specific=parse_readbuf_line_buf;
546 6 : break;
547 : #ifdef HAVE_NCURSES
548 : case ASFD_STREAM_NCURSES_STDIN:
549 1 : asfd->parse_readbuf_specific=parse_readbuf_ncurses;
550 1 : break;
551 : #endif
552 : default:
553 : logp("%s: unknown asfd stream type in %s: %d\n",
554 0 : desc, __func__, asfd->streamtype);
555 0 : return -1;
556 : }
557 :
558 18 : if(!(asfd->rbuf=iobuf_alloc())
559 9 : || asfd_alloc_buf(&asfd->readbuf)
560 9 : || asfd_alloc_buf(&asfd->writebuf)
561 18 : || !(asfd->desc=strdup_w(desc, __func__)))
562 : return -1;
563 9 : return 0;
564 : }
565 :
566 260 : struct asfd *asfd_alloc(void)
567 : {
568 269 : return (struct asfd *)calloc_w(1, sizeof(struct asfd), __func__);
569 : }
570 :
571 269 : void asfd_close(struct asfd *asfd)
572 : {
573 538 : if(!asfd) return;
574 269 : if(asfd->ssl && asfd->fd>=0)
575 : {
576 1 : set_blocking(asfd->fd);
577 : // I do not think this SSL_shutdown stuff works right.
578 : // Ignore it for now.
579 : #ifndef HAVE_WIN32
580 1 : signal(SIGPIPE, SIG_IGN);
581 : #endif
582 1 : if(!SSL_shutdown(asfd->ssl))
583 : {
584 0 : shutdown(asfd->fd, 1);
585 0 : SSL_shutdown(asfd->ssl);
586 : }
587 : }
588 269 : if(asfd->ssl)
589 : {
590 1 : SSL_free(asfd->ssl);
591 1 : asfd->ssl=NULL;
592 : }
593 269 : close_fd(&asfd->fd);
594 : }
595 :
596 269 : static void asfd_free_content(struct asfd *asfd)
597 : {
598 269 : asfd_close(asfd);
599 269 : iobuf_free(&asfd->rbuf);
600 269 : free_w(&asfd->readbuf);
601 269 : free_w(&asfd->writebuf);
602 269 : free_w(&asfd->desc);
603 269 : incoming_free(&asfd->in);
604 269 : blist_free(&asfd->blist);
605 269 : }
606 :
607 271 : void asfd_free(struct asfd **asfd)
608 : {
609 542 : if(!asfd || !*asfd) return;
610 269 : asfd_free_content(*asfd);
611 269 : free_v((void **)asfd);
612 : }
613 :
614 10 : static struct asfd *do_setup_asfd(struct async *as,
615 : const char *desc, int *fd, SSL *ssl, enum asfd_streamtype streamtype)
616 : {
617 10 : struct asfd *asfd=NULL;
618 :
619 10 : if(!fd || *fd<0)
620 : {
621 1 : logp("Given invalid descriptor in %s\n", __func__);
622 1 : goto error;
623 : }
624 :
625 9 : set_non_blocking(*fd);
626 9 : if(!(asfd=asfd_alloc())
627 9 : || asfd_init(asfd, desc, as, *fd, ssl, streamtype))
628 : goto error;
629 9 : *fd=-1;
630 9 : as->asfd_add(as, asfd);
631 9 : return asfd;
632 : error:
633 1 : asfd_free(&asfd);
634 1 : return NULL;
635 : }
636 :
637 1 : struct asfd *setup_asfd_ssl(struct async *as,
638 : const char *desc, int *fd, SSL *ssl)
639 : {
640 : return do_setup_asfd(as, desc, fd,
641 1 : ssl, ASFD_STREAM_STANDARD);
642 : }
643 :
644 2 : struct asfd *setup_asfd(struct async *as,
645 : const char *desc, int *fd)
646 : {
647 : return do_setup_asfd(as, desc, fd,
648 2 : /*ssl=*/NULL, ASFD_STREAM_STANDARD);
649 : }
650 :
651 : static struct asfd *setup_asfd_linebuf(struct async *as,
652 : const char *desc, int *fd)
653 : {
654 : return do_setup_asfd(as, desc, fd,
655 6 : /*ssl=*/NULL, ASFD_STREAM_LINEBUF);
656 : }
657 :
658 1 : struct asfd *setup_asfd_linebuf_read(struct async *as,
659 : const char *desc, int *fd)
660 : {
661 1 : return setup_asfd_linebuf(as, desc, fd);
662 : }
663 :
664 1 : struct asfd *setup_asfd_linebuf_write(struct async *as,
665 : const char *desc, int *fd)
666 : {
667 : struct asfd *asfd;
668 3 : if((asfd=setup_asfd_linebuf(as, desc, fd)))
669 3 : asfd->attempt_reads=0;
670 1 : return asfd;
671 : }
672 :
673 2 : struct asfd *setup_asfd_stdin(struct async *as)
674 : {
675 2 : int fd=fileno(stdin);
676 2 : return setup_asfd_linebuf_read(as, "stdin", &fd);
677 : }
678 :
679 2 : struct asfd *setup_asfd_stdout(struct async *as)
680 : {
681 2 : int fd=fileno(stdout);
682 2 : return setup_asfd_linebuf_write(as, "stdout", &fd);
683 : }
684 :
685 1 : struct asfd *setup_asfd_ncurses_stdin(struct async *as)
686 : {
687 1 : int fd=fileno(stdin);
688 : return do_setup_asfd(as, "stdin", &fd,
689 1 : /*ssl=*/NULL, ASFD_STREAM_NCURSES_STDIN);
690 : }
691 :
692 : // Want to make sure that we are listening for reads too - this will let us
693 : // exit promptly if the client was killed.
694 0 : static int read_and_write(struct asfd *asfd)
695 : {
696 0 : if(asfd->as->read_write(asfd->as)) return -1;
697 0 : if(!asfd->rbuf->buf) return 0;
698 0 : iobuf_log_unexpected(asfd->rbuf, __func__);
699 : return -1;
700 : }
701 :
702 0 : int asfd_flush_asio(struct asfd *asfd)
703 : {
704 0 : while(asfd && asfd->writebuflen>0)
705 0 : if(read_and_write(asfd)) return -1;
706 : return 0;
707 : }
708 :
709 83 : int asfd_write_wrapper(struct asfd *asfd, struct iobuf *wbuf)
710 : {
711 : while(1)
712 : {
713 83 : switch(asfd->append_all_to_write_buffer(asfd, wbuf))
714 : {
715 : case APPEND_OK: return 0;
716 : case APPEND_BLOCKED: break;
717 3 : default: return -1;
718 : }
719 0 : if(read_and_write(asfd)) return -1;
720 : }
721 : return 0;
722 : }
723 :
724 83 : int asfd_write_wrapper_str(struct asfd *asfd, enum cmd wcmd, const char *wsrc)
725 : {
726 : static struct iobuf wbuf;
727 83 : iobuf_from_str(&wbuf, wcmd, (char *)wsrc);
728 83 : return asfd_write_wrapper(asfd, &wbuf);
729 : }
730 :
|