Portability enhancements to make better use of autoconf. All system
[sgt/agedu] / httpd.c
CommitLineData
70322ae3 1/*
2 * httpd.c: implementation of httpd.h.
3 */
4
bf53e756 5#include "agedu.h"
995db599 6#include "alloc.h"
70322ae3 7#include "html.h"
812e4bf2 8#include "httpd.h"
70322ae3 9
10/* --- Logic driving what the web server's responses are. --- */
11
812e4bf2 12enum { /* connctx states */
13 READING_REQ_LINE,
14 READING_HEADERS,
15 DONE
16};
17
70322ae3 18struct connctx {
19 const void *t;
20 char *data;
21 int datalen, datasize;
812e4bf2 22 char *method, *url, *headers, *auth;
23 int state;
70322ae3 24};
25
26/*
27 * Called when a new connection arrives on a listening socket.
28 * Returns a connctx for the new connection.
29 */
30struct connctx *new_connection(const void *t)
31{
32 struct connctx *cctx = snew(struct connctx);
33 cctx->t = t;
34 cctx->data = NULL;
35 cctx->datalen = cctx->datasize = 0;
812e4bf2 36 cctx->state = READING_REQ_LINE;
37 cctx->method = cctx->url = cctx->headers = cctx->auth = NULL;
70322ae3 38 return cctx;
39}
40
41void free_connection(struct connctx *cctx)
42{
43 sfree(cctx->data);
44 sfree(cctx);
45}
46
812e4bf2 47static char *http_error(char *code, char *errmsg, char *extraheader,
48 char *errtext, ...)
70322ae3 49{
50 return dupfmt("HTTP/1.1 %s %s\r\n"
51 "Date: %D\r\n"
bf53e756 52 "Server: " PNAME "\r\n"
70322ae3 53 "Connection: close\r\n"
812e4bf2 54 "%s"
70322ae3 55 "Content-Type: text/html; charset=US-ASCII\r\n"
56 "\r\n"
57 "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\r\n"
58 "<HTML><HEAD>\r\n"
59 "<TITLE>%s %s</TITLE>\r\n"
60 "</HEAD><BODY>\r\n"
61 "<H1>%s %s</H1>\r\n"
62 "<P>%s</P>\r\n"
63 "</BODY></HTML>\r\n", code, errmsg,
812e4bf2 64 extraheader ? extraheader : "",
70322ae3 65 code, errmsg, code, errmsg, errtext);
66}
67
68static char *http_success(char *mimetype, int stuff_cr, char *document)
69{
70 return dupfmt("HTTP/1.1 200 OK\r\n"
71 "Date: %D\r\n"
72 "Expires: %D\r\n"
bf53e756 73 "Server: " PNAME "\r\n"
70322ae3 74 "Connection: close\r\n"
75 "Content-Type: %s\r\n"
76 "\r\n"
77 "%S", mimetype, stuff_cr, document);
78}
79
80/*
81 * Called when data comes in on a connection.
82 *
83 * If this function returns NULL, the platform code continues
84 * reading from the socket. Otherwise, it returns some dynamically
85 * allocated data which the platform code will then write to the
86 * socket before closing it.
87 */
812e4bf2 88char *got_data(struct connctx *ctx, char *data, int length,
f2e52893 89 int magic_access, const char *auth_string,
90 const struct html_config *cfg)
70322ae3 91{
812e4bf2 92 char *line, *p, *q, *r, *z1, *z2, c1, c2;
93 int auth_provided = 0, auth_correct = 0;
70322ae3 94 unsigned long index;
95 char *document, *ret;
96
812e4bf2 97 /*
98 * Add the data we've just received to our buffer.
99 */
70322ae3 100 if (ctx->datasize < ctx->datalen + length) {
101 ctx->datasize = (ctx->datalen + length) * 3 / 2 + 4096;
102 ctx->data = sresize(ctx->data, ctx->datasize, char);
103 }
104 memcpy(ctx->data + ctx->datalen, data, length);
105 ctx->datalen += length;
106
107 /*
812e4bf2 108 * Gradually process the HTTP request as we receive it.
70322ae3 109 */
812e4bf2 110 if (ctx->state == READING_REQ_LINE) {
111 /*
112 * We're waiting for the first line of the input, which
113 * contains the main HTTP request. See if we've got it
114 * yet.
115 */
70322ae3 116
812e4bf2 117 line = ctx->data;
118 /*
119 * RFC 2616 section 4.1: `In the interest of robustness,
120 * [...] if the server is reading the protocol stream at
121 * the beginning of a message and receives a CRLF first,
122 * it should ignore the CRLF.'
123 */
124 while (line - ctx->data < ctx->datalen &&
125 (*line == '\r' || *line == '\n'))
126 line++;
127 q = line;
128 while (q - ctx->data < ctx->datalen && *q != '\n')
129 q++;
130 if (q - ctx->data >= ctx->datalen)
131 return NULL; /* not got request line yet */
70322ae3 132
812e4bf2 133 /*
134 * We've got the first line of the request. Zero-terminate
135 * and parse it into method, URL and optional HTTP
136 * version.
137 */
138 *q = '\0';
139 ctx->headers = q+1;
140 if (q > line && q[-1] == '\r')
141 *--q = '\0';
142 z1 = z2 = q;
143 c1 = c2 = *q;
144 p = line;
145 while (*p && !isspace((unsigned char)*p)) p++;
146 if (*p) {
147 z1 = p++;
148 c1 = *z1;
149 *z1 = '\0';
150 }
151 while (*p && isspace((unsigned char)*p)) p++;
152 q = p;
153 while (*q && !isspace((unsigned char)*q)) q++;
154 z2 = q++;
155 c2 = *z2;
156 *z2 = '\0';
157 while (*q && isspace((unsigned char)*q)) q++;
158
159 /*
160 * Now `line' points at the method name; p points at the
161 * URL, if any; q points at the HTTP version, if any.
162 */
163
164 /*
165 * There should _be_ a URL, on any request type at all.
166 */
167 if (!*p) {
168 char *ret, *text;
169 /* Restore the request to the way we received it. */
170 *z2 = c2;
171 *z1 = c1;
bf53e756 172 text = dupfmt("<code>" PNAME "</code> received the HTTP request"
812e4bf2 173 " \"<code>%h</code>\", which contains no URL.",
174 line);
175 ret = http_error("400", "Bad request", NULL, text);
176 sfree(text);
177 return ret;
178 }
179
180 ctx->method = line;
181 ctx->url = p;
182
183 /*
184 * If there was an HTTP version, we might need to see
185 * headers. Otherwise, the request is done.
186 */
187 if (*q) {
188 ctx->state = READING_HEADERS;
189 } else {
190 ctx->state = DONE;
191 }
70322ae3 192 }
70322ae3 193
812e4bf2 194 if (ctx->state == READING_HEADERS) {
195 /*
196 * While we're receiving the HTTP request headers, all we
197 * do is to keep scanning to see if we find two newlines
198 * next to each other.
199 */
200 q = ctx->data + ctx->datalen;
201 for (p = ctx->headers; p < q; p++) {
202 if (*p == '\n' &&
203 ((p+1 < q && p[1] == '\n') ||
204 (p+2 < q && p[1] == '\r' && p[2] == '\n'))) {
205 p[1] = '\0';
206 ctx->state = DONE;
207 break;
208 }
209 }
70322ae3 210 }
211
812e4bf2 212 if (ctx->state == DONE) {
213 /*
214 * Now we have the entire HTTP request. Decide what to do
215 * with it.
216 */
217 if (auth_string) {
218 /*
219 * Search the request headers for Authorization.
220 */
221 q = ctx->data + ctx->datalen;
222 for (p = ctx->headers; p < q; p++) {
223 const char *hdr = "Authorization:";
224 int i;
225 for (i = 0; hdr[i]; i++) {
226 if (p >= q || tolower((unsigned char)*p) !=
227 tolower((unsigned char)hdr[i]))
228 break;
229 p++;
230 }
231 if (!hdr[i])
232 break; /* found our header */
233 p = memchr(p, '\n', q - p);
234 if (!p)
235 p = q;
236 }
237 if (p < q) {
238 auth_provided = 1;
239 while (p < q && isspace((unsigned char)*p))
240 p++;
241 r = p;
242 while (p < q && !isspace((unsigned char)*p))
243 p++;
244 if (p < q) {
245 *p++ = '\0';
246 if (!strcasecmp(r, "Basic")) {
247 while (p < q && isspace((unsigned char)*p))
248 p++;
249 r = p;
250 while (p < q && !isspace((unsigned char)*p))
251 p++;
252 if (p < q) {
253 *p++ = '\0';
254 if (!strcmp(r, auth_string))
255 auth_correct = 1;
256 }
257 }
258 }
259 }
260 }
261
262 if (!magic_access && !auth_correct) {
5a830bf8 263 if (auth_string) {
812e4bf2 264 ret = http_error("401", "Unauthorized",
bf53e756 265 "WWW-Authenticate: Basic realm=\""PNAME"\"\r",
5a830bf8 266 "\nYou must authenticate to view these pages.");
812e4bf2 267 } else {
268 ret = http_error("403", "Forbidden", NULL,
269 "This is a restricted-access set of pages.");
270 }
70322ae3 271 } else {
812e4bf2 272 p = ctx->url;
273 p += strspn(p, "/?");
274 index = strtoul(p, NULL, 10);
f2e52893 275 document = html_query(ctx->t, index, cfg);
812e4bf2 276 if (document) {
277 ret = http_success("text/html", 1, document);
278 sfree(document);
279 } else {
280 ret = http_error("404", "Not Found", NULL,
281 "Pathname index out of range.");
282 }
70322ae3 283 }
812e4bf2 284 return ret;
285 } else
286 return NULL;
70322ae3 287}
288
289/* --- Platform support for running a web server. --- */
290
291enum { FD_CLIENT, FD_LISTENER, FD_CONNECTION };
292
293struct fd {
294 int fd;
295 int type;
296 int deleted;
297 char *wdata;
298 int wdatalen, wdatapos;
299 int magic_access;
300 struct connctx *cctx;
301};
302
303struct fd *fds = NULL;
304int nfds = 0, fdsize = 0;
305
306struct fd *new_fdstruct(int fd, int type)
307{
308 struct fd *ret;
309
310 if (nfds >= fdsize) {
311 fdsize = nfds * 3 / 2 + 32;
312 fds = sresize(fds, fdsize, struct fd);
313 }
314
315 ret = &fds[nfds++];
316
317 ret->fd = fd;
318 ret->type = type;
319 ret->wdata = NULL;
320 ret->wdatalen = ret->wdatapos = 0;
321 ret->cctx = NULL;
322 ret->deleted = 0;
323 ret->magic_access = 0;
324
325 return ret;
326}
327
812e4bf2 328int check_owning_uid(int fd, int flip)
70322ae3 329{
330 struct sockaddr_in sock, peer;
331 socklen_t addrlen;
332 char linebuf[4096], matchbuf[80];
333 FILE *fp;
334
335 addrlen = sizeof(sock);
812e4bf2 336 if (getsockname(fd, (struct sockaddr *)&sock, &addrlen)) {
70322ae3 337 fprintf(stderr, "getsockname: %s\n", strerror(errno));
338 exit(1);
339 }
340 addrlen = sizeof(peer);
812e4bf2 341 if (getpeername(fd, (struct sockaddr *)&peer, &addrlen)) {
342 if (errno == ENOTCONN) {
343 peer.sin_addr.s_addr = htonl(0);
344 peer.sin_port = htons(0);
345 } else {
346 fprintf(stderr, "getpeername: %s\n", strerror(errno));
347 exit(1);
348 }
349 }
350
351 if (flip) {
352 struct sockaddr_in tmp = sock;
353 sock = peer;
354 peer = tmp;
70322ae3 355 }
356
357 sprintf(matchbuf, "%08X:%04X %08X:%04X",
358 peer.sin_addr.s_addr, ntohs(peer.sin_port),
359 sock.sin_addr.s_addr, ntohs(sock.sin_port));
360 fp = fopen("/proc/net/tcp", "r");
361 if (fp) {
362 while (fgets(linebuf, sizeof(linebuf), fp)) {
363 if (strlen(linebuf) >= 75 &&
364 !strncmp(linebuf+6, matchbuf, strlen(matchbuf))) {
812e4bf2 365 return atoi(linebuf + 75);
70322ae3 366 }
367 }
368 }
812e4bf2 369
370 return -1;
371}
372
373void check_magic_access(struct fd *fd)
374{
375 if (check_owning_uid(fd->fd, 0) == getuid())
376 fd->magic_access = 1;
70322ae3 377}
378
812e4bf2 379static void base64_encode_atom(unsigned char *data, int n, char *out)
380{
381 static const char base64_chars[] =
382 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
383
384 unsigned word;
385
386 word = data[0] << 16;
387 if (n > 1)
388 word |= data[1] << 8;
389 if (n > 2)
390 word |= data[2];
391 out[0] = base64_chars[(word >> 18) & 0x3F];
392 out[1] = base64_chars[(word >> 12) & 0x3F];
393 if (n > 1)
394 out[2] = base64_chars[(word >> 6) & 0x3F];
395 else
396 out[2] = '=';
397 if (n > 2)
398 out[3] = base64_chars[word & 0x3F];
399 else
400 out[3] = '=';
401}
402
1e8d78b9 403void run_httpd(const void *t, int authmask, const struct httpd_config *dcfg,
404 const struct html_config *incfg)
70322ae3 405{
406 int fd;
812e4bf2 407 int authtype;
1e8d78b9 408 char *authstring = NULL;
70322ae3 409 unsigned long ipaddr;
410 struct fd *f;
411 struct sockaddr_in addr;
412 socklen_t addrlen;
f2e52893 413 struct html_config cfg = *incfg;
414
cfe942fb 415 cfg.format = "%.0lu";
70322ae3 416
417 /*
418 * Establish the listening socket and retrieve its port
419 * number.
420 */
421 fd = socket(PF_INET, SOCK_STREAM, 0);
422 if (fd < 0) {
423 fprintf(stderr, "socket(PF_INET): %s\n", strerror(errno));
424 exit(1);
425 }
426 addr.sin_family = AF_INET;
1e8d78b9 427 if (!dcfg->address) {
428 srand(0L);
429 ipaddr = 0x7f000000;
430 ipaddr += (1 + rand() % 255) << 16;
431 ipaddr += (1 + rand() % 255) << 8;
432 ipaddr += (1 + rand() % 255);
433 addr.sin_addr.s_addr = htonl(ipaddr);
434 addr.sin_port = htons(0);
435 } else {
436 addr.sin_addr.s_addr = inet_addr(dcfg->address);
437 addr.sin_port = dcfg->port ? htons(dcfg->port) : 80;
438 }
70322ae3 439 addrlen = sizeof(addr);
440 if (bind(fd, (struct sockaddr *)&addr, addrlen) < 0) {
441 fprintf(stderr, "bind: %s\n", strerror(errno));
442 exit(1);
443 }
444 if (listen(fd, 5) < 0) {
445 fprintf(stderr, "listen: %s\n", strerror(errno));
446 exit(1);
447 }
448 addrlen = sizeof(addr);
449 if (getsockname(fd, (struct sockaddr *)&addr, &addrlen)) {
450 fprintf(stderr, "getsockname: %s\n", strerror(errno));
451 exit(1);
452 }
812e4bf2 453 if ((authmask & HTTPD_AUTH_MAGIC) &&
454 (check_owning_uid(fd, 1) == getuid())) {
455 authtype = HTTPD_AUTH_MAGIC;
1e8d78b9 456 if (authmask != HTTPD_AUTH_MAGIC)
457 printf("Using Linux /proc/net magic authentication\n");
812e4bf2 458 } else if ((authmask & HTTPD_AUTH_BASIC)) {
1e8d78b9 459 char username[128], password[128], userpassbuf[259];
460 const char *userpass;
812e4bf2 461 const char *rname;
462 unsigned char passbuf[10];
463 int i, j, k, fd;
464
465 authtype = HTTPD_AUTH_BASIC;
466
1e8d78b9 467 if (authmask != HTTPD_AUTH_BASIC)
468 printf("Using HTTP Basic authentication\n");
469
470 if (dcfg->basicauthdata) {
471 userpass = dcfg->basicauthdata;
472 } else {
bf53e756 473 strcpy(username, PNAME);
1e8d78b9 474 rname = "/dev/urandom";
812e4bf2 475 fd = open(rname, O_RDONLY);
476 if (fd < 0) {
1e8d78b9 477 int err = errno;
478 rname = "/dev/random";
479 fd = open(rname, O_RDONLY);
480 if (fd < 0) {
481 int err2 = errno;
482 fprintf(stderr, "/dev/urandom: open: %s\n", strerror(err));
483 fprintf(stderr, "/dev/random: open: %s\n", strerror(err2));
484 exit(1);
485 }
812e4bf2 486 }
1e8d78b9 487 for (i = 0; i < 10 ;) {
488 j = read(fd, passbuf + i, 10 - i);
489 if (j <= 0) {
490 fprintf(stderr, "%s: read: %s\n", rname,
491 j < 0 ? strerror(errno) : "unexpected EOF");
492 exit(1);
493 }
494 i += j;
812e4bf2 495 }
1e8d78b9 496 close(fd);
497 for (i = 0; i < 16; i++) {
498 /*
499 * 32 characters out of the 36 alphanumerics gives
500 * me the latitude to discard i,l,o for being too
501 * numeric-looking, and w because it has two too
502 * many syllables and one too many presidential
503 * associations.
504 */
505 static const char chars[32] =
506 "0123456789abcdefghjkmnpqrstuvxyz";
507 int v = 0;
508
509 k = i / 8 * 5;
510 for (j = 0; j < 5; j++)
511 v |= ((passbuf[k+j] >> (i%8)) & 1) << j;
512
513 password[i] = chars[v];
514 }
515 password[i] = '\0';
516
517 sprintf(userpassbuf, "%s:%s", username, password);
518 userpass = userpassbuf;
812e4bf2 519
1e8d78b9 520 printf("Username: %s\nPassword: %s\n", username, password);
521 }
812e4bf2 522
1e8d78b9 523 k = strlen(userpass);
524 authstring = snewn(k * 4 / 3 + 16, char);
812e4bf2 525 for (i = j = 0; i < k ;) {
526 int s = k-i < 3 ? k-i : 3;
1e8d78b9 527 base64_encode_atom((unsigned char *)(userpass+i), s, authstring+j);
812e4bf2 528 i += s;
529 j += 4;
530 }
1e8d78b9 531 authstring[j] = '\0';
532 } else if ((authmask & HTTPD_AUTH_NONE)) {
812e4bf2 533 authtype = HTTPD_AUTH_NONE;
1e8d78b9 534 if (authmask != HTTPD_AUTH_NONE)
535 printf("Web server is unauthenticated\n");
536 } else {
bf53e756 537 fprintf(stderr, PNAME ": authentication method not supported\n");
1e8d78b9 538 exit(1);
539 }
540 if (!dcfg->address) {
541 if (ntohs(addr.sin_port) == 80) {
542 printf("URL: http://%s/\n", inet_ntoa(addr.sin_addr));
543 } else {
544 printf("URL: http://%s:%d/\n",
545 inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
546 }
812e4bf2 547 }
70322ae3 548
549 /*
550 * Now construct an fd structure to hold it.
551 */
552 f = new_fdstruct(fd, FD_LISTENER);
553
554 /*
555 * Read from standard input, and treat EOF as a notification
556 * to exit.
557 */
558 new_fdstruct(0, FD_CLIENT);
559
560 /*
561 * Now we're ready to run our main loop. Keep looping round on
562 * select.
563 */
564 while (1) {
565 fd_set rfds, wfds;
50e82fdc 566 int i, j;
567 SELECT_TYPE_ARG1 maxfd;
568 int ret;
70322ae3 569
570#define FD_SET_MAX(fd, set, max) \
571 do { FD_SET((fd),(set)); (max) = ((max)<=(fd)?(fd)+1:(max)); } while(0)
572
573 /*
574 * Loop round the fd list putting fds into our select
575 * sets. Also in this loop we remove any that were marked
576 * as deleted in the previous loop.
577 */
578 FD_ZERO(&rfds);
579 FD_ZERO(&wfds);
580 maxfd = 0;
581 for (i = j = 0; j < nfds; j++) {
582
583 if (fds[j].deleted) {
584 sfree(fds[j].wdata);
585 free_connection(fds[j].cctx);
586 continue;
587 }
588 fds[i] = fds[j];
589
590 switch (fds[i].type) {
591 case FD_CLIENT:
592 case FD_LISTENER:
593 FD_SET_MAX(fds[i].fd, &rfds, maxfd);
594 break;
595 case FD_CONNECTION:
596 /*
597 * Always read from a connection socket. Even
598 * after we've started writing, the peer might
599 * still be sending (e.g. because we shamefully
600 * jumped the gun before waiting for the end of
601 * the HTTP request) and so we should be prepared
602 * to read data and throw it away.
603 */
604 FD_SET_MAX(fds[i].fd, &rfds, maxfd);
605 /*
606 * Also attempt to write, if we have data to write.
607 */
608 if (fds[i].wdatapos < fds[i].wdatalen)
609 FD_SET_MAX(fds[i].fd, &wfds, maxfd);
610 break;
611 }
612
613 i++;
614 }
615 nfds = i;
616
50e82fdc 617 ret = select(maxfd, SELECT_TYPE_ARG234 &rfds,
618 SELECT_TYPE_ARG234 &wfds, SELECT_TYPE_ARG234 NULL,
619 SELECT_TYPE_ARG5 NULL);
70322ae3 620 if (ret <= 0) {
621 if (ret < 0 && (errno != EINTR)) {
622 fprintf(stderr, "select: %s", strerror(errno));
623 exit(1);
624 }
625 continue;
626 }
627
628 for (i = 0; i < nfds; i++) {
629 switch (fds[i].type) {
630 case FD_CLIENT:
631 if (FD_ISSET(fds[i].fd, &rfds)) {
632 char buf[4096];
633 int ret = read(fds[i].fd, buf, sizeof(buf));
634 if (ret <= 0) {
635 if (ret < 0) {
636 fprintf(stderr, "standard input: read: %s\n",
637 strerror(errno));
638 exit(1);
639 }
640 return;
641 }
642 }
643 break;
644 case FD_LISTENER:
645 if (FD_ISSET(fds[i].fd, &rfds)) {
646 /*
647 * New connection has come in. Accept it.
648 */
649 struct fd *f;
650 struct sockaddr_in addr;
651 socklen_t addrlen = sizeof(addr);
652 int newfd = accept(fds[i].fd, (struct sockaddr *)&addr,
653 &addrlen);
654 if (newfd < 0)
655 break; /* not sure what happened there */
656
657 f = new_fdstruct(newfd, FD_CONNECTION);
658 f->cctx = new_connection(t);
812e4bf2 659 if (authtype == HTTPD_AUTH_MAGIC)
660 check_magic_access(f);
70322ae3 661 }
662 break;
663 case FD_CONNECTION:
664 if (FD_ISSET(fds[i].fd, &rfds)) {
665 /*
666 * There's data to be read.
667 */
668 char readbuf[4096];
669 int ret;
670
671 ret = read(fds[i].fd, readbuf, sizeof(readbuf));
672 if (ret <= 0) {
673 /*
674 * This shouldn't happen in a sensible
675 * HTTP connection, so we abandon the
676 * connection if it does.
677 */
678 close(fds[i].fd);
679 fds[i].deleted = 1;
680 break;
681 } else {
682 if (!fds[i].wdata) {
683 /*
684 * If we haven't got an HTTP response
685 * yet, keep processing data in the
686 * hope of acquiring one.
687 */
812e4bf2 688 fds[i].wdata = got_data
689 (fds[i].cctx, readbuf, ret,
690 (authtype == HTTPD_AUTH_NONE ||
f2e52893 691 fds[i].magic_access), authstring, &cfg);
70322ae3 692 if (fds[i].wdata) {
693 fds[i].wdatalen = strlen(fds[i].wdata);
694 fds[i].wdatapos = 0;
695 }
696 } else {
697 /*
698 * Otherwise, just drop our read data
699 * on the floor.
700 */
701 }
702 }
703 }
704 if (FD_ISSET(fds[i].fd, &wfds) &&
705 fds[i].wdatapos < fds[i].wdatalen) {
706 /*
707 * The socket is writable, and we have data to
708 * write. Write it.
709 */
710 int ret = write(fds[i].fd, fds[i].wdata + fds[i].wdatapos,
711 fds[i].wdatalen - fds[i].wdatapos);
712 if (ret <= 0) {
713 /*
714 * Shouldn't happen; abandon the connection.
715 */
716 close(fds[i].fd);
717 fds[i].deleted = 1;
718 break;
719 } else {
720 fds[i].wdatapos += ret;
721 if (fds[i].wdatapos == fds[i].wdatalen) {
722 shutdown(fds[i].fd, SHUT_WR);
723 }
724 }
725 }
726 break;
727 }
728 }
729
730 }
731}