LCOV - code coverage report
Current view: top level - src - async.c (source / functions) Hit Total Coverage
Test: burp-coverage-clean.info Lines: 32 124 25.8 %
Date: 2016-07-31 Functions: 5 11 45.5 %

          Line data    Source code
       1             : #include "burp.h"
       2             : #include "alloc.h"
       3             : #include "asfd.h"
       4             : #include "async.h"
       5             : #include "handy.h"
       6             : #include "iobuf.h"
       7             : #include "log.h"
       8             : 
       9         125 : void async_free(struct async **as)
      10             : {
      11         263 :         if(!as || !*as) return;
      12         135 :         free_v((void **)as);
      13             : }
      14             : 
      15           0 : static void async_settimers(struct async *as, int sec, int usec)
      16             : {
      17           0 :         as->setsec=sec;
      18           0 :         as->setusec=usec;
      19           0 : }
      20             : 
      21             : // The normal server and client processes will just exit on error within
      22             : // async_io, but the champ chooser server needs to manage client fds and
      23             : // remove them from its list if one of them had a problem.
      24             : static int asfd_problem(struct asfd *asfd)
      25             : {
      26           0 :         asfd->want_to_remove++;
      27           0 :         asfd->as->last_time=asfd->as->now;
      28             :         return -1;
      29             : }
      30             : 
      31           0 : static int async_io(struct async *as, int doread)
      32             : {
      33           0 :         int mfd=-1;
      34             :         fd_set fsr;
      35             :         fd_set fsw;
      36             :         fd_set fse;
      37           0 :         int dosomething=0;
      38             :         struct timeval tval;
      39           0 :         struct asfd *asfd;
      40             :         static int s=0;
      41             : 
      42           0 :         as->now=time(NULL);
      43           0 :         if(!as->last_time) as->last_time=as->now;
      44             : 
      45           0 :         if(as->doing_estimate) goto end;
      46             : 
      47           0 :         FD_ZERO(&fsr);
      48           0 :         FD_ZERO(&fsw);
      49           0 :         FD_ZERO(&fse);
      50             : 
      51           0 :         tval.tv_sec=as->setsec;
      52           0 :         tval.tv_usec=as->setusec;
      53             : 
      54           0 :         for(asfd=as->asfd; asfd; asfd=asfd->next)
      55             :         {
      56           0 :                 if(asfd->attempt_reads)
      57           0 :                         asfd->doread=doread;
      58             :                 else
      59           0 :                         asfd->doread=0;
      60             : 
      61           0 :                 asfd->dowrite=0;
      62             : 
      63           0 :                 if(doread)
      64             :                 {
      65           0 :                         if(asfd->parse_readbuf(asfd))
      66           0 :                                 return asfd_problem(asfd);
      67           0 :                         if(asfd->rbuf->buf || asfd->read_blocked_on_write)
      68           0 :                                 asfd->doread=0;
      69             :                 }
      70             : 
      71           0 :                 if(asfd->writebuflen && !asfd->write_blocked_on_read)
      72           0 :                         asfd->dowrite++; // The write buffer is not yet empty.
      73             : 
      74           0 :                 if(!asfd->doread && !asfd->dowrite) continue;
      75             : 
      76             :                 add_fd_to_sets(asfd->fd, asfd->doread?&fsr:NULL,
      77           0 :                         asfd->dowrite?&fsw:NULL, &fse, &mfd);
      78             : 
      79           0 :                 dosomething++;
      80             :         }
      81           0 :         if(!dosomething) goto end;
      82             : /*
      83             :         for(asfd=as->asfd; asfd; asfd=asfd->next)
      84             :         {
      85             :                 printf("%s: %d %d %d %d\n", asfd->desc,
      86             :                         asfd->doread, asfd->dowrite,
      87             :                         asfd->readbuflen, asfd->writebuflen);
      88             :         }
      89             : */
      90             : 
      91           0 :         errno=0;
      92           0 :         s=select(mfd+1, &fsr, &fsw, &fse, &tval);
      93           0 :         if(errno==EAGAIN || errno==EINTR) goto end;
      94             : 
      95           0 :         if(s<0)
      96             :         {
      97             :                 logp("select error in %s: %s\n", __func__,
      98           0 :                         strerror(errno));
      99           0 :                 as->last_time=as->now;
     100           0 :                 return -1;
     101             :         }
     102             : 
     103           0 :         for(asfd=as->asfd; asfd; asfd=asfd->next)
     104             :         {
     105           0 :                 if(FD_ISSET(asfd->fd, &fse))
     106             :                 {
     107           0 :                         switch(asfd->fdtype)
     108             :                         {
     109             :                                 case ASFD_FD_SERVER_LISTEN_MAIN:
     110             :                                 case ASFD_FD_SERVER_LISTEN_STATUS:
     111           0 :                                         as->last_time=as->now;
     112           0 :                                         return -1;
     113             :                                 default:
     114             :                                         logp("%s: had an exception\n",
     115           0 :                                                 asfd->desc);
     116           0 :                                         return asfd_problem(asfd);
     117             :                         }
     118             :                 }
     119             : 
     120           0 :                 if(asfd->doread && FD_ISSET(asfd->fd, &fsr)) // Able to read.
     121             :                 {
     122           0 :                         asfd->network_timeout=asfd->max_network_timeout;
     123           0 :                         switch(asfd->fdtype)
     124             :                         {
     125             :                                 case ASFD_FD_SERVER_LISTEN_MAIN:
     126             :                                 case ASFD_FD_SERVER_LISTEN_STATUS:
     127             :                                         // Indicate to the caller that we have
     128             :                                         // a new incoming client.
     129           0 :                                         asfd->new_client++;
     130           0 :                                         break;
     131             :                                 default:
     132           0 :                                         if(asfd->do_read(asfd)
     133           0 :                                           || asfd->parse_readbuf(asfd))
     134           0 :                                                 return asfd_problem(asfd);
     135             :                                         break;
     136             :                         }
     137             :                 }
     138             : 
     139           0 :                 if(asfd->dowrite && FD_ISSET(asfd->fd, &fsw)) // Able to write.
     140             :                 {
     141           0 :                         asfd->network_timeout=asfd->max_network_timeout;
     142           0 :                         if(asfd->do_write(asfd))
     143           0 :                                 return asfd_problem(asfd);
     144             :                 }
     145             : 
     146           0 :                 if((!asfd->doread || !FD_ISSET(asfd->fd, &fsr))
     147           0 :                   && (!asfd->dowrite || !FD_ISSET(asfd->fd, &fsw)))
     148             :                 {
     149             :                         // Be careful to avoid 'read quick' mode.
     150           0 :                         if((as->setsec || as->setusec)
     151           0 :                           && asfd->max_network_timeout>0
     152           0 :                           && as->now-as->last_time>0
     153           0 :                           && asfd->network_timeout--<=0)
     154             :                         {
     155             :                                 logp("%s: no activity for %d seconds.\n",
     156           0 :                                         asfd->desc, asfd->max_network_timeout);
     157           0 :                                 return asfd_problem(asfd);
     158             :                         }
     159             :                 }
     160             :         }
     161             : 
     162             : end:
     163           0 :         as->last_time=as->now;
     164           0 :         return 0;
     165             : }
     166             : 
     167           0 : static int async_read_write(struct async *as)
     168             : {
     169           0 :         return async_io(as, 1 /* Read too. */);
     170             : }
     171             : 
     172           0 : static int async_write(struct async *as)
     173             : {
     174           0 :         return async_io(as, 0 /* No read. */);
     175             : }
     176             : 
     177           0 : static int async_read_quick(struct async *as)
     178             : {
     179             :         int r;
     180           0 :         int savesec=as->setsec;
     181           0 :         int saveusec=as->setusec;
     182           0 :         as->setsec=0;
     183           0 :         as->setusec=0;
     184           0 :         r=as->read_write(as); // Maybe make an as->read(as) function some time.
     185           0 :         as->setsec=savesec;
     186           0 :         as->setusec=saveusec;
     187           0 :         return r;
     188             : }
     189             : 
     190         183 : static void async_asfd_add(struct async *as, struct asfd *asfd)
     191             : {
     192             :         struct asfd *x;
     193         183 :         if(!as->asfd)
     194             :         {
     195         126 :                 as->asfd=asfd;
     196         309 :                 return;
     197             :         }
     198             :         // Add to the end;
     199          88 :         for(x=as->asfd; x->next; x=x->next) { }
     200          57 :         x->next=asfd;
     201             : }
     202             : 
     203           0 : static void async_asfd_remove(struct async *as, struct asfd *asfd)
     204             : {
     205             :         struct asfd *l;
     206           0 :         if(!asfd) return;
     207           0 :         if(as->asfd==asfd)
     208             :         {
     209           0 :                 as->asfd=as->asfd->next;
     210           0 :                 return;
     211             :         }
     212           0 :         for(l=as->asfd; l; l=l->next)
     213             :         {
     214           0 :                 if(l->next!=asfd) continue;
     215           0 :                 l->next=asfd->next;
     216           0 :                 return;
     217             :         }
     218             : }
     219             : 
     220          13 : void async_asfd_free_all(struct async **as)
     221             : {
     222          13 :         struct asfd *a=NULL;
     223          13 :         struct asfd *asfd=NULL;
     224          13 :         if(!as || !*as) return;
     225          26 :         for(asfd=(*as)->asfd; asfd; asfd=a)
     226             :         {
     227          13 :                 a=asfd->next;
     228          13 :                 asfd_free(&asfd);
     229             :         }
     230             :         async_free(as);
     231             : }
     232             : 
     233         135 : static int async_init(struct async *as, int estimate)
     234             : {
     235         135 :         as->setsec=1;
     236         135 :         as->setusec=0;
     237         135 :         as->last_time=0;
     238         135 :         as->doing_estimate=estimate;
     239             : 
     240         135 :         as->read_write=async_read_write;
     241         135 :         as->write=async_write;
     242         135 :         as->read_quick=async_read_quick;
     243             : 
     244         135 :         as->settimers=async_settimers;
     245         135 :         as->asfd_add=async_asfd_add;
     246         135 :         as->asfd_remove=async_asfd_remove;
     247             : 
     248         135 :         return 0;
     249             : }
     250             : 
     251         135 : struct async *async_alloc(void)
     252             : {
     253             :         struct async *as;
     254         135 :         if(!(as=(struct async *)calloc_w(1, sizeof(struct async), __func__)))
     255             :                 return NULL;
     256         135 :         as->init=async_init;
     257         135 :         return as;
     258             : }

Generated by: LCOV version 1.10