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 49 : void async_free(struct async **as)
10 : {
11 102 : if(!as || !*as) return;
12 50 : 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->fdtype==ASFD_FD_SERVER_PIPE_WRITE
57 0 : || asfd->fdtype==ASFD_FD_CHILD_PIPE_WRITE
58 0 : || asfd->fdtype==ASFD_FD_CLIENT_MONITOR_WRITE
59 0 : || asfd->fdtype==ASFD_FD_CLIENT_NCURSES_STDOUT)
60 0 : asfd->doread=0;
61 : else
62 0 : asfd->doread=doread;
63 0 : asfd->dowrite=0;
64 :
65 0 : if(doread)
66 : {
67 0 : if(asfd->parse_readbuf(asfd))
68 0 : return asfd_problem(asfd);
69 0 : if(asfd->rbuf->buf || asfd->read_blocked_on_write)
70 0 : asfd->doread=0;
71 : }
72 :
73 0 : if(asfd->writebuflen && !asfd->write_blocked_on_read)
74 0 : asfd->dowrite++; // The write buffer is not yet empty.
75 :
76 0 : if(!asfd->doread && !asfd->dowrite) continue;
77 :
78 : add_fd_to_sets(asfd->fd, asfd->doread?&fsr:NULL,
79 0 : asfd->dowrite?&fsw:NULL, &fse, &mfd);
80 :
81 0 : dosomething++;
82 : }
83 0 : if(!dosomething) goto end;
84 : /*
85 : for(asfd=as->asfd; asfd; asfd=asfd->next)
86 : {
87 : printf("%s: %d %d %d %d\n", asfd->desc,
88 : asfd->doread, asfd->dowrite,
89 : asfd->readbuflen, asfd->writebuflen);
90 : }
91 : */
92 :
93 0 : errno=0;
94 0 : s=select(mfd+1, &fsr, &fsw, &fse, &tval);
95 0 : if(errno==EAGAIN || errno==EINTR) goto end;
96 :
97 0 : if(s<0)
98 : {
99 : logp("select error in %s: %s\n", __func__,
100 0 : strerror(errno));
101 0 : as->last_time=as->now;
102 0 : return -1;
103 : }
104 :
105 0 : for(asfd=as->asfd; asfd; asfd=asfd->next)
106 : {
107 0 : if(FD_ISSET(asfd->fd, &fse))
108 : {
109 0 : switch(asfd->fdtype)
110 : {
111 : case ASFD_FD_SERVER_LISTEN_MAIN:
112 : case ASFD_FD_SERVER_LISTEN_STATUS:
113 0 : as->last_time=as->now;
114 0 : return -1;
115 : default:
116 : logp("%s: had an exception\n",
117 0 : asfd->desc);
118 0 : return asfd_problem(asfd);
119 : }
120 : }
121 :
122 0 : if(asfd->doread && FD_ISSET(asfd->fd, &fsr)) // Able to read.
123 : {
124 0 : asfd->network_timeout=asfd->max_network_timeout;
125 0 : switch(asfd->fdtype)
126 : {
127 : case ASFD_FD_SERVER_LISTEN_MAIN:
128 : case ASFD_FD_SERVER_LISTEN_STATUS:
129 : // Indicate to the caller that we have
130 : // a new incoming client.
131 0 : asfd->new_client++;
132 0 : break;
133 : default:
134 0 : if(asfd->do_read(asfd)
135 0 : || asfd->parse_readbuf(asfd))
136 0 : return asfd_problem(asfd);
137 : break;
138 : }
139 : }
140 :
141 0 : if(asfd->dowrite && FD_ISSET(asfd->fd, &fsw)) // Able to write.
142 : {
143 0 : asfd->network_timeout=asfd->max_network_timeout;
144 0 : if(asfd->do_write(asfd))
145 0 : return asfd_problem(asfd);
146 : }
147 :
148 0 : if((!asfd->doread || !FD_ISSET(asfd->fd, &fsr))
149 0 : && (!asfd->dowrite || !FD_ISSET(asfd->fd, &fsw)))
150 : {
151 : // Be careful to avoid 'read quick' mode.
152 0 : if((as->setsec || as->setusec)
153 0 : && asfd->fdtype!=ASFD_FD_SERVER_LISTEN_MAIN
154 0 : && asfd->fdtype!=ASFD_FD_SERVER_LISTEN_STATUS
155 0 : && asfd->fdtype!=ASFD_FD_CHILD_PIPE_WRITE
156 0 : && as->now-as->last_time>0
157 0 : && as->now-as->last_time>0
158 0 : && asfd->max_network_timeout>0
159 0 : && asfd->network_timeout--<=0)
160 : {
161 : logp("%s: no activity for %d seconds.\n",
162 0 : asfd->desc, asfd->max_network_timeout);
163 0 : return asfd_problem(asfd);
164 : }
165 : }
166 : }
167 :
168 : end:
169 0 : as->last_time=as->now;
170 0 : return 0;
171 : }
172 :
173 0 : static int async_read_write(struct async *as)
174 : {
175 0 : return async_io(as, 1 /* Read too. */);
176 : }
177 :
178 0 : static int async_write(struct async *as)
179 : {
180 0 : return async_io(as, 0 /* No read. */);
181 : }
182 :
183 0 : static int async_read_quick(struct async *as)
184 : {
185 : int r;
186 0 : int savesec=as->setsec;
187 0 : int saveusec=as->setusec;
188 0 : as->setsec=0;
189 0 : as->setusec=0;
190 0 : r=as->read_write(as); // Maybe make an as->read(as) function some time.
191 0 : as->setsec=savesec;
192 0 : as->setusec=saveusec;
193 0 : return r;
194 : }
195 :
196 64 : static void async_asfd_add(struct async *as, struct asfd *asfd)
197 : {
198 : struct asfd *x;
199 64 : if(!as->asfd)
200 : {
201 42 : as->asfd=asfd;
202 106 : return;
203 : }
204 : // Add to the end;
205 22 : for(x=as->asfd; x->next; x=x->next) { }
206 22 : x->next=asfd;
207 : }
208 :
209 0 : static void async_asfd_remove(struct async *as, struct asfd *asfd)
210 : {
211 : struct asfd *l;
212 0 : if(!asfd) return;
213 0 : if(as->asfd==asfd)
214 : {
215 0 : as->asfd=as->asfd->next;
216 0 : return;
217 : }
218 0 : for(l=as->asfd; l; l=l->next)
219 : {
220 0 : if(l->next!=asfd) continue;
221 0 : l->next=asfd->next;
222 0 : return;
223 : }
224 : }
225 :
226 4 : void async_asfd_free_all(struct async **as)
227 : {
228 4 : struct asfd *a=NULL;
229 4 : struct asfd *asfd=NULL;
230 4 : if(!as || !*as) return;
231 8 : for(asfd=(*as)->asfd; asfd; asfd=a)
232 : {
233 4 : a=asfd->next;
234 4 : asfd_free(&asfd);
235 : }
236 : async_free(as);
237 : }
238 :
239 50 : static int async_init(struct async *as, int estimate)
240 : {
241 50 : as->setsec=1;
242 50 : as->setusec=0;
243 50 : as->last_time=0;
244 50 : as->doing_estimate=estimate;
245 :
246 50 : as->read_write=async_read_write;
247 50 : as->write=async_write;
248 50 : as->read_quick=async_read_quick;
249 :
250 50 : as->settimers=async_settimers;
251 50 : as->asfd_add=async_asfd_add;
252 50 : as->asfd_remove=async_asfd_remove;
253 :
254 50 : return 0;
255 : }
256 :
257 50 : struct async *async_alloc(void)
258 : {
259 : struct async *as;
260 50 : if(!(as=(struct async *)calloc_w(1, sizeof(struct async), __func__)))
261 : return NULL;
262 50 : as->init=async_init;
263 50 : return as;
264 : }
|